Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
MassZeroLogon — Tool for mass testing ZeroLogon vulnerability CVE-2020-1472 | Kitploit
Tools/GitHubGitHub/likeww/masszerologon
ReconnaissanceVulnerability ScannersExploitationInformation GatheringNetwork SecurityPenetration Testing
GitHublikeww/masszerologon

MassZeroLogon

Tool for mass testing ZeroLogon vulnerability CVE-2020-1472

View Repository
3 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Tool for mass testing ZeroLogon vulnerability CVE-2020-1472

proof

Steps to procedure

For using this tool you need a hosts file with the ip adress and hostname separated by comma

  • Hosts file sample
root@kitploit:~
1.1.1.1    ,      WIN-6641554161U 
1.1.1.1    ,           SERVERDATA 
1.1.1.1    ,           SERVER2012 
1.1.1.1    ,                 DC01 
1.1.1.1    ,               SERVER 

You can get this type of file with valid ip adress following the next steps

  • Scanning with nmap using the next parameters
root@kitploit:~
nmap -p 135,137,139,445 --script smb-os-discovery -oA zerologon_nmap -iL <IPList>
  • Parsing the nmap resoults with the next script and command
root@kitploit:~
./convert-nmap-zerologon.py zerologon_nmap | grep "yes" | awk -F "|" '{print $1"," $4}' > ZeroLogonScan.txt

Download Tool