-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from Jumbo-WJB/jumbo
add Blind SSRF with proxy param or url param
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
metadata: | ||
language: v1-beta | ||
name: "Blind SSRF By Collaborator" | ||
description: "Blind SSRF with proxy param or url param" | ||
author: "[email protected]" | ||
|
||
define: | ||
proxy_ssrf = `http://{generate_collaborator_address()}/proxy` | ||
url_ssrf = `https://{generate_collaborator_address()}/url` | ||
|
||
given request then | ||
send request: | ||
appending queries: | ||
`proxy={proxy_ssrf}`, | ||
`url={url_ssrf}` | ||
if http interactions then | ||
report issue: | ||
severity: high | ||
confidence: firm | ||
detail: "The site request url params or proxy params, There may be ssrf vulnerabilities." | ||
remediation: "Ensure that the site does not directly request URLs from the proxy param or url param." | ||
end if | ||
|