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

This commit is contained in:
Xalgord 2023-06-22 10:47:25 +00:00 committed by gitbook-bot
parent e9de7a1a90
commit e75b8579f7
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF
4 changed files with 4 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View file

@ -1,6 +1,6 @@
# 🔎 Extensive Recon Guide For Bug Hunting
<figure><img src=".gitbook/assets/image.png" alt=""><figcaption></figcaption></figure>
<figure><img src=".gitbook/assets/image (1).png" alt=""><figcaption></figcaption></figure>
### WHAT IS RECONNAISSANCE?

View file

@ -255,7 +255,7 @@ egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6
* **tr** - trim the spaces\
<figure><img src=".gitbook/assets/image (1).png" alt=""><figcaption></figcaption></figure>
<figure><img src=".gitbook/assets/image.png" alt=""><figcaption></figcaption></figure>
* **cut** - give cut the delimeter of single space using -d " " and then it asks for the the filed number by -f 6\
@ -266,15 +266,11 @@ egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6
## Sent the multiple urls to Burp or Zap using Command Line:&#x20;
```
set urls (egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6)
egrep "^200" feroxbuster.txt | tr -s " " | cut -d " " -f 6 > filtered.txt
```
it will set the `urls` variable which have urls stored
```
for u in $urls
curl $u --proxy http://localhost:8080
end
curl $(cat filtered.txt) --proxy http://localhost:8080
```
it will send all the urls requests to the configured proxy via web browser.