Nmap automation script useful for beginner in recon process of HTB Boxes
by 4ung - Saturday February 3, 2024 at 10:09 AM
#1
I had successfully created the nmap automation script by python language to recon the box which will be useful in pentesting practice.

You may can check.
nmap_automation.py

Work Flow:
1) Nmap port scan on the target host
2) Filter opened ports
3) service, os, scripts scan on the open ports
4) Print the results in the terminal and saved in the files.

Preview Video of Usage
Reply
#2
that's really cool, does it scan UDP ports as well?
Reply
#3
(02-03-2024, 10:18 AM)alph4byt33 Wrote: that's really cool, does it scan UDP ports as well?

Thanks for asking.
For sure, we can edit to scan including udp ports by adding -u flag.

I'll edit it for better.
Reply
#4
alright that's awesome, thanks a lot
Reply
#5
Thisis so cool, I will try to make one but that automated the whole recon

Thanks for posting, I downloading now
Ban reason: Leeching. (Permanent)
Reply
#6
thanks for sharing
Reply
#7
Okay, that's great, many thanks.
poly track
Reply
#8
great bro! thanks, keep improving, your thread is very useful
nice script
Ban reason: Scraping | Contact us via https://raidforums.as/contact if you feel this is incorrect. (Permanent)
Reply
#9
hello,

i suggest you to add the "-n" option to avoid DNS resolution

Here is the bash function that i use.
The first arg is the @IP of the target (target.htb by default is the common name i use) and the second arg is the name of the log file (it will be "nmap-all" by default)

Nmap () { TARGET="${1:-target.htb}"; LOG="${2:-all}"; TMPFILE=$(mktemp /dev/shm/XXXXXX); \sudo nmap -p- -n --min-rate=1000 -T4 "${TARGET}" -v | \tee -a "${TMPFILE}"; ports=$(\cat "${TMPFILE}" | grep ^[0-9] | cut -d '/' -f 1 | tr '\n' ',' | sed s/,$//); \sudo nmap -n -sC -sV -v -p "${ports}" "${TARGET}" -oN "./nmap-${LOG}"; }
Reply
#10
thanks alot for the autonmap script , can it be allowed for OSCP??
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [FREE] 300+ Writeups PDF HackTheBox/HTB premium retired Tamarisk 361 98,814 07-28-2026, 01:37 AM
Last Post: memerman123
  [FREE] HTB-ProLabs APTLABS Just Flags kewlsunny 24 9,628 07-12-2026, 04:10 AM
Last Post: cookky1
  [MEGALEAK] HackTheBox ProLabs, Fortress, Endgame - Alchemy, 250 Flags, leak htb-bot htb-bot 87 15,177 03-27-2026, 07:22 PM
Last Post: stn
  HTB Eloquia User and Root Flags - Insane Box 69646B 13 7,456 03-27-2026, 06:14 PM
Last Post: vlxw
  HTB - ALL Challenges you Stuck in osamy7593 2 7,679 03-27-2026, 04:24 PM
Last Post: catsweet



 Users browsing this thread: 1 Guest(s)