Skip to content

Commit 7e04892

Browse files
Update README.md
1 parent f364e83 commit 7e04892

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

README.md

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
# website-status-code
2-
# scscanner_py
3-
scscanner_py is tool to read website status code response from the lists. This tool is reworked from bash version of [scscanner](https://github.com/yuyudhn/scscanner).
2+
# scanner.py
3+
scanner.py is tool to read website status code response from the lists. This tool is reworked from bash version of [scanner](https://github.com/shubham-rooter/website-status-code).
4+
45

5-
## Requirements
6-
- requests
7-
- urllib3
8-
- datetime
9-
- argparse
106

11-
Tested on **Debian** with **Python 3.10.8**
127

138
## Features
149
- Multi-threading for fast scanning.
@@ -18,19 +13,20 @@ Tested on **Debian** with **Python 3.10.8**
1813
## How to use
1914
Help menu.
2015
```
21-
┌──(shubham㉿Rooter)-[~/dmarcscan]
22-
└─$ python3 scscanner.py --help
23-
nino@nakano:~$ python3 scscanner.py --help
16+
┌──(shubham㉿Rooter)-[~/
17+
website-status-code ]
18+
└─$ python3 scanner.py --help
19+
2420
2521
░██████╗██╗░░██╗██╗░░░██╗██████╗░██╗░░██╗░█████╗░███╗░░░███╗  ██████╗░░█████╗░░█████╗░████████╗███████╗██████╗░
2622
██╔════╝██║░░██║██║░░░██║██╔══██╗██║░░██║██╔══██╗████╗░████║  ██╔══██╗██╔══██╗██╔══██╗╚══██╔══╝██╔════╝██╔══██╗
2723
╚█████╗░███████║██║░░░██║██████╦╝███████║███████║██╔████╔██║  ██████╔╝██║░░██║██║░░██║░░░██║░░░█████╗░░██████╔╝
2824
░╚═══██╗██╔══██║██║░░░██║██╔══██╗██╔══██║██╔══██║██║╚██╔╝██║  ██╔══██╗██║░░██║██║░░██║░░░██║░░░██╔══╝░░██╔══██╗
2925
██████╔╝██║░░██║╚██████╔╝██████╦╝██║░░██║██║░░██║██║░╚═╝░██║  ██║░░██║╚█████╔╝╚█████╔╝░░░██║░░░███████╗██║░░██║
3026
╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝  ╚═╝░░╚═╝░╚════╝░░╚════╝░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝
31-
scscanner - Massive HTTP Status Code Scanner
27+
scanner - HTTP Status Code Scanner
3228
33-
usage: scscanner.py [-h] [-T list.txt] [-w [15]] [-t google.com] [-f 200] [-s] [-o result.txt]
29+
usage: scanner.py [-h] [-T list.txt] [-w [15]] [-t google.com] [-f 200] [-s] [-o result.txt]
3430
3531
options:
3632
-h, --help show this help message and exit
@@ -46,22 +42,22 @@ options:
4642
```
4743
Scan domain lists.
4844
```
49-
python3 scscanner.py -T lists.txt --workers 20
45+
python3 scanner.py -T lists.txt --workers 20
5046
```
5147
Scan single domain.
5248
```
53-
python3 scscanner.py -t https://blog.linuxsec.org
49+
python3 scanner.py -t https://blog.linuxsec.org
5450
```
5551
Scan domain list with status code filtering.
5652
**Example**: filter only '200' response.
5753
```
58-
python3 scscanner.py -T lists.txt -w 20 -f 200
54+
python3 scanner.py -T lists.txt -w 20 -f 200
5955
```
6056
Silent option, just print url with match status code filter.
6157
```
62-
python3 scscanner.py -T lists.txt -s --filter 200 --workers 20
58+
python3 scanner.py -T lists.txt -s --filter 200 --workers 20
6359
```
6460
With save to file options.
6561
```
66-
python3 scscanner.py -T list.txt --workers 20 --output asuka.txt
62+
python3 scanner.py -T list.txt --workers 20 --output asuka.txt
6763
```

0 commit comments

Comments
 (0)