0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

subdomain / virtual environment をffufで確認する

Last updated at Posted at 2023-04-10

忘備録:CTF等でsubdomainを確認する方法。Kaliで動かしています。

まず、以下のコマンドを実行

ffuf -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt  -H "Host: FUZZ.stocker.htb" -u http://stocker.htb 

すべてのコンテンツでワードサイズは6だったので、再度以下を実行。

ffuf -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt  -H "Host: FUZZ.stocker.htb" -u http://stocker.htb -fw 6  

ワードサイズによって、-fwの値を変えます。

詳細はこのあたりを参照してください。
https://medium.com/quiknapp/fuzz-faster-with-ffuf-c18c031fc480
The -fw flag is used to filter by the amount of words.

ハッピーハッキング

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?