CCyb3rC4tincyb3rc4t.hashnode.dev·Aug 13, 2023 · 2 min readKeeperEnumeration During enumeration, two available services were discovered: the OpenSSH Server service on port 22 and the Nginx service on port 80. nmap -sCV -p 22,80 -oN $IP Enumeration Web Moving on to web enumeration, it's discovered that this redir...00
CCyb3rC4tincyb3rc4t.hashnode.dev·Jul 16, 2023 · 6 min readAuthorityEnumeration During the enumeration phase, the following services were identified on the HackTheBox machine: DNS Server: A functioning simple DNS server was discovered. Microsoft IIS Web Server: The presence of a Microsoft IIS web server was detected....03PCP
CCyb3rC4tincyb3rc4t.hashnode.dev·Jul 8, 2023 · 3 min readHTB-WRITEUP[Sau]Enumeration During the enumeration phase, we discovered the presence of two services on the target machine: OpenSSH and an HTTP service that redirects us to the "/web" path. nmap -sCV -p 22,55555 10.10.11.224 # Nmap 7.93 scan initiated Sat Jul 8 ...02RZ
CCyb3rC4tincyb3rc4t.hashnode.dev·Jun 24, 2023 · 4 min readPilgrimageEnumeration During the enumeration phase, we encountered two exposed services: SSH and HTTP (Nginx). Upon analyzing the HTTP service, we discovered the existence of a hidden folder called ".git", which likely contains the web project. nmap -sCV -p 22...015R
CCyb3rC4tincyb3rc4t.hashnode.dev·Jun 18, 2023 · 8 min readSandwormEnumeration We start the enumeration process and discover three open services on ports 22, 80, and 443. Upon investigating the service on port 80, we find that we are redirected to a secure website using OpenSSL at https://ssa.htb/. > nmap -sCV -p 22...00