mirror of
https://github.com/xalgord/My-Methodologies.git
synced 2024-11-10 06:04:20 +00:00
GITBOOK-21: change request with no subject merged in GitBook
This commit is contained in:
parent
e9de7a1a90
commit
e75b8579f7
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 |
|
@ -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?
|
||||
|
||||
|
|
|
@ -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: 
|
||||
|
||||
```
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue