Menu

Post image 1
Post image 2
1 / 2
0

Server-Side Request Forgery (SSRF)

DEV Community·Yuriy Safronnynov·29 days ago
#FaLVkbRF
#how#security#testing#python#payload#ssrf
Reading 0:00
15s threshold

Your application fetches a URL. The user supplied it. Your server makes the request, follows the redirect, and returns the content. The URL pointed to http://169.254.169.254/latest/metadata/iam/security-credentials/production-role . Your application just handed the attacker your cloud credentials. TL;DR SSRF lets an attacker trick your server into making requests on their behalf — to internal services, cloud metadata endpoints, or infrastructure never meant to be reachable from the outside. CVE-2024-29415 in the npm ip package allowed attackers to bypass SSRF protections using non-standard IP representations that isPublic() incorrectly classified as safe. CVSS 8.1 High. Your suite almost certainly validates that your URL-fetchin feature works. It does not validate that it refuses to fetch http://169.254.169.254/latest/meta-data/ or http://127.1/admin . Fix requires an allowlist of permitted destinations, not a blocklist. Blocklists fail because IP representations are infinite.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More