Posts

Showing posts with the label EAR

Previse - HackTheBox

Image
  This was a Easy Linux machine on HackTheBox. Let's Dive into it. Name: Previse IP: 10.10.11.104 First step first, let's search for open portsusing rustscan rustscan -a 10.10.11.104 -u 5000 . Only 2 ports open 80 & 22. Nmap scan: nmap -A -p22,80 -T4 10.10.11.104 PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 7.6p1 Ubuntu 4ubuntu0.3 (Ubuntu Linux; protocol 2.0) | ssh-hostkey: | 2048 53:ed:44:40:11:6e:8b:da:69:85:79:c0:81:f2:3a:12 (RSA) | 256 bc:54:20:ac:17:23:bb:50:20:f4:e1:6e:62:0f:01:b5 (ECDSA) |_ 256 33:c1:89:ea:59:73:b1:78:84:38:a4:21:10:0c:91:d8 (ED25519) 80/tcp open http Apache httpd 2.4.29 ((Ubuntu)) | http-cookie-flags: | /: | PHPSESSID: |_ httponly flag not set |_http-server-header: Apache/2.4.29 (Ubuntu) | http-title: Previse Login |_Requested resource was login.php Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel SSH is running on port 22 and Apache webserver on port 80 with PHP. Nothing seems much interesti...