File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed
Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ This will display help for the tool. Here are all the switches it supports.
4848<summary > 👉 tprox help menu 👈</summary >
4949
5050```
51- Usage of ./ tprox:
51+ Usage of tprox:
5252 -c int
5353 The number of concurrent requests (default 10)
5454 -crawl
@@ -61,9 +61,12 @@ Usage of ./tprox:
6161 This flag will allow you to turn on the progress bar
6262 -regex string
6363 Filter crawl with regex pattern
64- -silent Show Silent output
6564 -scope string
6665 Specify a scope to crawl with in using regexs
66+ -silent
67+ Show Silent output
68+ -test
69+ Enable/Disable test mode only
6770 -traverse
6871 This flag will allow you to turn on traversing
6972 -w string
@@ -74,22 +77,36 @@ Usage of ./tprox:
7477
7578### Examples
7679
80+ #### Traversal with Brute
81+
7782``` sh
7883▶ echo " https://example.com/api/v1" | tprox -w wordlist -traverse
7984```
8085
86+ #### Traversal with Crawling & Brute
87+
8188``` sh
8289▶ echo " https://example.com" | tprox -w wordlist -crawl -traverse
8390```
8491
92+ #### Traversal with Crawling, Regex Match & Brute
93+
8594``` sh
8695▶ echo " https://example.com" | tprox -w wordlist -crawl -traverse -regex " /api/"
8796```
8897
98+ #### Traversal With Crawling InScope & Brute
99+
89100``` sh
90101▶ echo " https://example.com" | tprox -w wordlist -crawl -traverse -regex " /api/" -scope " .*.\.example.com"
91102```
92103
104+ #### Traversal with Test Only
105+
106+ ``` sh
107+ ▶ echo " https://example.com/api" | tprox -test -traverse
108+ ```
109+
93110
94111<h1 align =" center " >
95112 <br >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func printBanner() {
3030 __
3131 / /____ _______ __ __
3232 / __/ _ \/ __/ _ \\ \ /
33- \__/ .__/_/ \___/_\_\ v0.1 -dev
33+ \__/ .__/_/ \___/_\_\ v0.2 -dev
3434 /_/
3535
3636 `
You can’t perform that action at this time.
0 commit comments