/images/avatar.jpg

SH∆FIQ∆IM∆N

Nothing much...

TryHackMe - Anonforce Writeup

Link : https://tryhackme.com/room/bsidesgtanonforce Enumeration First, let’s do an enumeration with the IP address of this machine. I’m gonna run Nmap [Netwok Mapper] to scan any open ports. I’m gonna run this command 1 nmap -sC -sV -oN nmap/initial <machine ip> Explaining the nmap flag: -sC := scan using nmap default script -sV := scan for version -oN := output in normal format Nmap scan is done. Let’s take a look at that result.

TryHackMe - Bounty Hacker Writeup

Link : https://tryhackme.com/room/cowboyhacker Enumeration First, let’s do an enumeration with the IP address of this machine. I’m gonna run Nmap [Netwok Mapper] to scan any open ports. I’m gonna run this command 1 nmap -sC -sV -oN nmap/initial <machine ip> Explaining the nmap scan: -sC := scan using nmap default script -sV := scan for version -oN := output in normal format Now, the Nmap scan it’s done. We have 3 open ports FTP, ssh, and HTTP.

TryHackMe - Brooklyn99 Writeup

Link : https://tryhackme.com/room/brooklynninenine [The First Method] Enumeration First, let’s do an enumeration with the IP address of this machine. I’m gonna run Nmap [Netwok Mapper] to scan any open ports. I’m gonna run this command 1 nmap -sC -sV -oN nmap/initial <machine ip> Explaining the nmap scan: -sC := scan using nmap default script -sV := scan for version -oN := output in normal format Nmap scan shows us there is 3 port open.

TryHackMe - Brute It Writeup

Link : https://tryhackme.com/room/bruteit Enumeration First we need to connect to try hack me networks through openvpn and deploy the machine. Now, the box is up. First, we need to do a reconnaissance using nmap. Nmap is a network mapper tool for scanning the ports or enumerate the machine through ports. I will run this command for my nmap scan. 1 nmap -sC -sV -O -oN nmap/initial <machine ip> Explaining the nmap flag: -sC := scan using nmap default script -sV := scan for version -O := scan for OS [operating system] -oN := output in normal format Now our nmap scan is done.

TryHackMe - DAV Writeup

Link : https://tryhackme.com/room/bsidesgtdav Enumeration First we need to connect to try hack me networks through openvpn and deploy the machine. Now, the box is up. So, first we need to do a reconnaissance using nmap. Nmap is a network mapper tools for scanning the ports or enumerate the machine through ports. I will run this command for my nmap scan. 1 nmap -sC -sV -oN nmap/initial <machine ip> Explaining the nmap flag: -sC := scan using nmap default script -sV := scan for version -oN := output in normal format The result of our nmap scan

TryHackMe - Gaming Server Writeup

Link : https://tryhackme.com/room/gamingserver Enumeration First, let’s do an enumeration with the IP address of this machine. I’m gonna run Nmap [Netwok Mapper] to scan any open ports. I’m gonna run this command 1 nmap -sC -sV -oN nmap/initial <machine ip> Explaining the nmap scan: -sC := scan using nmap default script -sV := scan for version -oN := output in normal format Nmap scan shows us. There are 2 ports open ssh and HTTP.