Guía de hardening Ajustes por defecto Contraseña/SSID De forma opcional podríamos modificar el SSID de nuestro punto de acceso, aparte debemos poner el SSID oculto para evitar de una forma gen...
[THM] Lian_Yu
Enumeration NMAP Identificamos puertos abiertos y servicios expuestos en la red. Esta vez con –top-ports para ver los más usados y aligerar el proceso. # Nmap 7.93 scan initiated Tue Jan 17 12...
[THM] Bounty Hacker
Enumeration NMAP Como siempre iniciamos la máquina identificando puertos abiertos y servicios expuestos en la red. Nmap scan report for 10.10.207.103 Host is up (0.28s latency). Not shown: 967...
[THM] Easy Peasy
Enumeration NMAP Para empezar veremos los puertos que tenemos accesibles, para esto usamos nmap a todos los puertos. $ nmap -sV -sC -p- -oN ports 10.10.93.173 Nmap scan report for 10.10.93.173...
[Notes] Ffuf Cheatsheet
Command Description ffuf -h ffuf help ffuf -w wordlist.txt:FUZZ -u http://SERVER_IP:PORT/FUZZ Directory Fuzzing ...
[HTB] Meta
Enumeration Rustmap To use others tools, I found Rustscan which optimizes the scan, by first looking at open ports and then scanning those ports specifically. ❯ rustscan -a 10.10.11.140 .----....
[HTB] Late
Enumeration NMAP ❯ nmap -sV --open 10.10.11.156 Starting Nmap 7.92 ( https://nmap.org ) at 2022-06-04 11:19 CEST Nmap scan report for 10.10.11.156 Host is up (0.084s latency). Not shown: 961 cl...
[HTB] Pandora
Enumeration NMAP ❯ nmap -sV -Pn 10.10.11.136 Starting Nmap 7.92 ( https://nmap.org ) at 2022-05-17 13:20 EDT Nmap scan report for Panda.HTB (10.10.11.136) Host is up (0.15s latency). Not shown:...
[HTB] Paper
Enumeration NMAP ┌──(kali㉿kali)-[~] └─$ nmap -sV 10.10.11.143 Starting Nmap 7.92 ( https://nmap.org ) at 2022-05-14 05:07 EDT Nmap scan report for 10.10.11.143 Host is up (0.045s latency). Not ...
[Notes] Linux Enumeration Guide
Initial Information Gathering Basic Information You can start extracting some basic information: date #Date and time uname -a #OS info ifconfig -a || ip a #Network interfaces ps -ef #Running pr...