We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a864fe + d6c0c7f commit 0695abeCopy full SHA for 0695abe
2 files changed
cli/attacks/auth.js
@@ -89,6 +89,9 @@ async function bruteforce(targetURL){
89
data : {
90
"email": "bla@bla.com" ,
91
"password": "notblabla"
92
+ },
93
+ headers: {
94
+ 'X-Forwarded-For': '1.2.3.4'
95
}
96
};
97
spinner.text = 'Attempting login with incorrect password';
cli/attacks/ssrf.js
@@ -82,7 +82,8 @@ async function exploit(targetURL){
82
headers: {
83
'Cookie': "token=" + info.token,
84
'Authorization': 'Bearer '+info.token,
85
- 'Content-Type': 'application/x-www-form-urlencoded'
+ 'Content-Type': 'application/x-www-form-urlencoded',
86
87
},
88
// data : {
// imageUrl: payload
0 commit comments