mirror of
https://github.com/xalgord/My-Methodologies.git
synced 2024-11-28 14:40:22 +00:00
GITBOOK-19: change request with no subject merged in GitBook
This commit is contained in:
parent
0727bb5e70
commit
3c3257399a
1 changed files with 16 additions and 0 deletions
|
@ -260,3 +260,19 @@ egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6
|
|||
|
||||
|
||||
<figure><img src=".gitbook/assets/image (2).png" alt=""><figcaption></figcaption></figure>
|
||||
|
||||
## Sent the multiple urls to Burp or Zap using Command Line: 
|
||||
|
||||
```
|
||||
set urls (egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6)
|
||||
```
|
||||
|
||||
it will set the `urls` variable which have urls stored
|
||||
|
||||
```
|
||||
for u in $urls
|
||||
curl $u --proxy http://localhost:8080
|
||||
end
|
||||
```
|
||||
|
||||
it will send all the urls requests to the configured proxy via web browser.
|
||||
|
|
Loading…
Reference in a new issue