File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 37
37
38
38
## インストール
39
39
40
- pip install -r requirements.txt
40
+ ` pip install -r requirements.txt `
41
41
42
42
または個別にインストールする場合:
43
43
44
- pip install requests beautifulsoup4 colorama
44
+ ` pip install requests beautifulsoup4 colorama `
45
45
46
46
## 使い方 (Usage)
47
47
@@ -51,29 +51,29 @@ vulnerability_scanner.py をダウンロードまたはクローンしてくだ
51
51
52
52
以下のように実行してください。
53
53
54
- python vulnerability_scanner.py --url <TARGET_URL> [ OPTIONS]
54
+ ` python vulnerability_scanner.py --url <TARGET_URL> [OPTIONS] `
55
55
56
56
例:
57
- 基本スキャン(SQLとXSS両方): python vulnerability_scanner.py --url http://testphp.vulnweb.com/search.php?test=query
57
+ 基本スキャン(SQLとXSS両方):` python vulnerability_scanner.py --url http://testphp.vulnweb.com/search.php?test=query `
58
58
59
- SQLスキャンのみ、詳細出力付き: python vulnerability_scanner.py --url http://testphp.vulnweb.com/listproducts.php?cat=1 --sql --verbose
60
- XSSスキャンのみ、結果をJSONファイルに保存: python vulnerability_scanner.py --url http://testphp.vulnweb.com/search.php?test=query --xss --output-json results.json
59
+ SQLスキャンのみ、詳細出力付き:` python vulnerability_scanner.py --url http://testphp.vulnweb.com/listproducts.php?cat=1 --sql --verbose `
60
+ XSSスキャンのみ、結果をJSONファイルに保存:` python vulnerability_scanner.py --url http://testphp.vulnweb.com/search.php?test=query --xss --output-json results.json `
61
61
62
62
## オプション (Options)
63
63
64
- -u, --url <URL > (必須)
64
+ ` -u, --url <URL> ` (必須)
65
65
スキャン対象URLを指定します。
66
66
67
- --sql
67
+ ` --sql `
68
68
SQLインジェクションスキャンのみを実行します。
69
69
70
- --xss
70
+ ` --xss `
71
71
XSSスキャンのみを実行します。
72
72
73
- --output-json <ファイルパス>
73
+ ` --output-json <ファイルパス> `
74
74
結果をJSONファイルに保存します。
75
75
76
- -v, --verbose
76
+ ` -v ` , ` --verbose `
77
77
詳細な進行状況を表示します。
78
78
79
79
注意事項
You can’t perform that action at this time.
0 commit comments