CTF – Hacking Mr. Robot

Another learning experience to improve my penetration testing skills by hacking Mr. Robot virtual machine as my target machine. My

Read more

CTF – Hacking Necromancer

Capture The Flag – Necromancer. Practicing my penetration testing skills to hack a target machine.  Here’s my test environment in my

Read more

HOWTO use NMAP for SNMP Enumeration

Here’s an example of using NMAP scanning UDP open port of 161 for SNMP protocol. root@kali:~# nmap -sU –open -p

Read more

HOWTO use NMAP for Network Sweeping

A simple NMAP network sweeping command is nmap -sn 10.11.1.200-254, this is to check hosts between 192.168.1.100 to 192.168.1.200 You

Read more

HOWTO use NMAP for OS Discovery and SMB Enumeration

If you run this command. root@kali:~# nmap -A 10.11.1.220 The -A Option use several features, including OS Detection, Version Detection,

Read more

HOWTO use NMAP to SMTP Enumeration

Run the command nc -nv 10.11.1.215 25 to check the mail server. VRFY bob send us a SMTP success code

Read more