Skip to content

Commit 9566b89

Browse files
authored
Update README.md
1 parent b109728 commit 9566b89

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737

3838
## インストール
3939

40-
pip install -r requirements.txt
40+
`pip install -r requirements.txt`
4141

4242
または個別にインストールする場合:
4343

44-
pip install requests beautifulsoup4 colorama
44+
`pip install requests beautifulsoup4 colorama`
4545

4646
## 使い方 (Usage)
4747

@@ -51,29 +51,29 @@ vulnerability_scanner.py をダウンロードまたはクローンしてくだ
5151

5252
以下のように実行してください。
5353

54-
python vulnerability_scanner.py --url <TARGET_URL> [OPTIONS]
54+
`python vulnerability_scanner.py --url <TARGET_URL> [OPTIONS]`
5555

5656
例:
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`
5858

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`
6161

6262
## オプション (Options)
6363

64-
-u, --url <URL> (必須)
64+
`-u, --url <URL>` (必須)
6565
スキャン対象URLを指定します。
6666

67-
--sql
67+
`--sql`
6868
SQLインジェクションスキャンのみを実行します。
6969

70-
--xss
70+
`--xss`
7171
XSSスキャンのみを実行します。
7272

73-
--output-json <ファイルパス>
73+
`--output-json <ファイルパス>`
7474
結果をJSONファイルに保存します。
7575

76-
-v, --verbose
76+
`-v`, `--verbose`
7777
詳細な進行状況を表示します。
7878

7979
注意事項

0 commit comments

Comments
 (0)