3 :80

$ gobuster dir -u http://192.168.154.101 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -x php,html,txt -t 80
===============================================================
/index.php            (Status: 200) [Size: 245]
/admin                (Status: 301) [Size: 318] [--> http://192.168.154.101/admin/]
/potato               (Status: 301) [Size: 319] [--> http://192.168.154.101/potato/]

http://192.168.154.101/admin/
Login Page

# admin:potato does not work; prolly changed
# more enum

$ gobuster dir -u http://192.168.154.101/admin -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -x php,html,txt -t 70      130 ⨯
===============================================================
/index.php            (Status: 200) [Size: 466]
/logs                 (Status: 301) [Size: 323] [--> http://192.168.154.101/admin/logs/]
/dashboard.php        (Status: 302) [Size: 0] [--> index.php]

http://192.168.154.101/admin/logs/
[TXT]	log_01.txt	2020-08-02 22:14 	86 	 
[TXT]	log_02.txt	2020-08-02 22:14 	88 	 
[TXT]	log_03.txt	2020-08-02 22:18 	597 	

http://192.168.154.101/admin/logs/log_01.txt
Operation: password change
Date: January 03, 2020 / 11:25 a.m.
User: admin
Status: OK

http://192.168.154.101/admin/logs/log_02.txt
Operation: reboot the server
Date: January 09, 2020 / 9:55 a.m.
User: admin
Status: OK 

http://192.168.154.101/admin/logs/log_03.txt
Operation: password change                                                                                                                                                                          
Date: August 2, 2020 / 9:25 p.m.                                                                                                                                                                
User: admin                                                                                                                                                                                        
Status: OK

# similar content in all; but log_03 has a huge file size compared to other two.
$ binwalk log_03.txt
DECIMAL       HEXADECIMAL     DESCRIPTION
-------------------------------------------------

# nothing in there.

Last updated