GITBOOK-19: change request with no subject merged in GitBook

This commit is contained in:
Xalgord 2023-06-20 07:47:12 +00:00 committed by gitbook-bot
parent 0727bb5e70
commit 3c3257399a
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -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:&#x20;
```
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.