Jun 22, 2021Scapy — Made EasyScapy is a packet manipulation tool for computer networks, originally written in Python by Philippe Biondi. It can forge or decode packets, send them on the wire, capture them, and match requests and replies. …Python 32 min read
Mar 7, 2021Passage-HackTheBoxThis is a write up for the machine “Passage” on HackTheBox. It is medium difficulty level machine. I’d first start by enumerating the target with ‘nmap’ using the following commands nmap -p- --min-rate 10000 -oA nmap_all_tcp 10.10.10.206 nmap -p 22,80 -sC -sV 10.10.10.206Hackthebox5 min read
Mar 2, 2021Academy-HackTheBoxHey, this is a write up for ‘the machine Academy’ on HackTheBox. Initially I would start with enumerating the target using nmap. I used the following commands nmap -p- --min-rate 10000 -oA nmap_all_tcp 10.10.10.215 nmap -p 22,80,33060 -sC -sV 10.10.10.215Academy5 min read
Feb 20, 2021Grandpa — HackTheBoxHello guys, this is a walkthrough for ‘Grandpa’ from ‘hackthebox’. Whenever I get a machine, I always start with enumerating the target machine using the following ‘nmap’ command: nmap -sV -O -F — version-light 10.10.10.1 4Hackthebox3 min read