A python 3 library which helps in using nmap port scanner. This is done by converting each nmap command into a callable python3 method or function. System administrators can now automatic nmap scans using python
I'm trying to run a SSL* related scripts to a host except for ssl-dh-params and ssl-enum-ciphers scripts. I tried with the command below but not working.
nmap = nmap3.NmapScanTechniques()
result_ssl = nmap.nmap_syn_scan(
"10.0.0.1",
args="--script ssl* and not ssl-dh-params,ssl-enum-ciphers --top-ports 1000 -T5",
)
nmap --script "(default or safe or intrusive) and not http-*"
> Loads scripts in the default, safe, or intrusive categories, except for those whose names start with http-.
I'm trying to run a SSL* related scripts to a host except for ssl-dh-params and ssl-enum-ciphers scripts. I tried with the command below but not working.
According to Nmap documentation, use not operator to exclude script(s)