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?

【TryHackMe】Enumeration & Brute Force:Walkthrough

Posted at

概要

TryHackMe「Enumeration & Brute Force」のWalkthroughです。

Task2

Q1.What type of error messages can unintentionally provide attackers with confirmation of valid usernames?

Hint.These occur during login attempts or other interactive processes that can reveal too much information.

A.Verbose errors

Task3

Q1.What is the valid email address from the list?

http://enum.thm/labs/verbose_login/にアクセスします。

task3.jpg

ブルートフォースのソースコードを実行します。
emailのリストは下記リポジトリを使用します。

有効なメールアドレスが見つかりました。

$ python script.py gmail_list
[VALID] canderson@gmail.com

A.canderson@￰gmail.com

Task4

Q1.What is the flag?

Hint.Do not forget to make the password reset request BEFORE brute forcing the token.

http://enum.thm/labs/predictable_tokens/にアクセスします。

BurpのIntruderでトークンの値を100~200でブルートフォースすると、パスワードをリセットできました。

task4 reset pass.jpg

Email: admin@admin.com,Password: ioXzWnTVでログインに成功しました。

task4 flag.jpg

A.THM{50_pr3d1ct4BL333!!}

Task5

Q1.What is the flag?

http://enum.thm/labs/basic_auth/にアクセスし、リクエストを取得します。
TryHackMeの解説通りにBurpの設定をし、Intruderを実行します。

task5 .jpg

Username: admin,Password: yellowでログインに成功しました。

task5 flag.jpg

A.THM{b4$$1C_AuTTHHH}

Q2.Try using Hydra instead of Burp to brute force the password.

Hydraでのブルートフォース攻撃でも成功しました。

$ hydra -f -l admin -P /usr/share/seclists/Passwords/Common-Credentials/500-worst-passwords.txt enum.thm http-get /labs/basic_auth/
[80][http-get] host: enum.thm   login: admin   password: yellow
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?