Skip to content

Commit 5f393a8

Browse files
Update README.md
1 parent c22f671 commit 5f393a8

File tree

1 file changed

+34
-45
lines changed

1 file changed

+34
-45
lines changed

README.md

Lines changed: 34 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -10,54 +10,43 @@ scanner.py is tool to read website status code response from the lists. This too
1010
- Filter status code from target list.
1111
- Save to file option.
1212

13-
## How to use
14-
Help menu.
15-
```
16-
┌──(shubham㉿Rooter)-[~/
17-
website-status-code ]
18-
└─$ python3 scanner.py --help
19-
20-
21-
░██████╗██╗░░██╗██╗░░░██╗██████╗░██╗░░██╗░█████╗░███╗░░░███╗  ██████╗░░█████╗░░█████╗░████████╗███████╗██████╗░
22-
██╔════╝██║░░██║██║░░░██║██╔══██╗██║░░██║██╔══██╗████╗░████║  ██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝██╔════╝██╔══██╗
23-
╚█████╗░███████║██║░░░██║██████╦╝███████║███████║██╔████╔██║  ██████╔╝██║░░██║██║░░██║░░░██║░░░█████╗░░██████╔╝
24-
░╚═══██╗██╔══██║██║░░░██║██╔══██╗██╔══██║██╔══██║██║╚██╔╝██║  ██╔══██╗██║░░██║██║░░██║░░░██║░░░██╔══╝░░██╔══██╗
25-
██████╔╝██║░░██║╚██████╔╝██████╦╝██║░░██║██║░░██║██║░╚═╝░██║  ██║░░██║╚█████╔╝╚█████╔╝░░░██║░░░███████╗██║░░██║
26-
╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝  ╚═╝░░╚═╝░╚════╝░░╚════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝
27-
scanner - HTTP Status Code Scanner
28-
29-
usage: scanner.py [-h] [-T list.txt] [-w [15]] [-t google.com] [-f 200] [-s] [-o result.txt]
30-
31-
options:
32-
-h, --help show this help message and exit
33-
-T list.txt File contain lists of domain
34-
-w [15], --workers [15]
35-
Thread value. Default value is 4
36-
-t google.com, --target google.com
37-
Single domain check
38-
-f 200, --filter 200 Status code filter
39-
-s, --silent Silent mode option. Don't print status code output
40-
-o result.txt, --output result.txt
41-
Save the results to file
42-
```
43-
Scan domain lists.
44-
```
45-
python3 scanner.py -T lists.txt --workers 20
46-
```
47-
Scan single domain.
48-
```
49-
python3 scanner.py -t https://blog.linuxsec.org
50-
```
51-
Scan domain list with status code filtering.
52-
**Example**: filter only '200' response.
13+
## Help menu
14+
5315
```
54-
python3 scanner.py -T lists.txt -w 20 -f 200
16+
17+
┌──(root㉿shadow)-[/home/rooter/Desktop/subdomain]
18+
└─# ./Rooterhttpscan.sh -h
19+
░██████╗██╗░░██╗██╗░░░██╗██████╗░██╗░░██╗░█████╗░███╗░░░███╗  ██████╗░░█████╗░░█████╗░████████╗███████╗██████╗░
20+
██╔════╝██║░░██║██║░░░██║██╔══██╗██║░░██║██╔══██╗████╗░████║  ██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝██╔════╝██╔══██╗
21+
╚█████╗░███████║██║░░░██║██████╦╝███████║███████║██╔████╔██║  ██████╔╝██║░░██║██║░░██║░░░██║░░░█████╗░░██████╔╝
22+
░╚═══██╗██╔══██║██║░░░██║██╔══██╗██╔══██║██╔══██║██║╚██╔╝██║  ██╔══██╗██║░░██║██║░░██║░░░██║░░░██╔══╝░░██╔══██╗
23+
██████╔╝██║░░██║╚██████╔╝██████╦╝██║░░██║██║░░██║██║░╚═╝░██║  ██║░░██║╚█████╔╝╚█████╔╝░░░██║░░░███████╗██║░░██║
24+
╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝  ╚═╝░░╚═╝░╚════╝░░╚════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝
25+
26+
[+] by Shubham Rooter
27+
[+] https://github.com/shubham-rooter
28+
[+] Find alive host
29+
[-] Usage: Rooterhttpscan.sh <Subdomainlist.txt>
30+
31+
5532
```
56-
Silent option, just print url with match status code filter.
33+
34+
## Installation
5735
```
58-
python3 scanner.py -T lists.txt -s --filter 200 --workers 20
36+
git clone https://github.com/shubham-rooter/website-status-code/
37+
cd website-status-code
38+
chmod +x Rooterhttpscan.sh
39+
./Rooterhttpscan.sh -h
5940
```
60-
With save to file options.
41+
## How to use
42+
43+
## Scan domains lists.
6144
```
62-
python3 scanner.py -T list.txt --workers 20 --output asuka.txt
45+
Rooterhttpscan.sh subdomain.txt
6346
```
47+
## FILES
48+
your output result are stored crunt direct in live-dead-domains folder
49+
50+
51+
## PREVIEW
52+
![image](https://user-images.githubusercontent.com/94091556/207166203-406d1af4-33fa-4ee7-8d0d-45abf7a7fb36.png)

0 commit comments

Comments
 (0)