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
ssl-heartbleed.nse — Nmap NSE script that discovers/exploits Heartbleed/CVE-2014-0160. | Kitploit
Tools/GitHubGitHub/geeksxtreme/ssl-heartbleed.nse
Vulnerability ScannersExploitationInformation GatheringWeb SecurityNetwork SecurityPenetration Testing
GitHubgeeksxtreme/ssl-heartbleed.nse

ssl-heartbleed.nse

Nmap NSE script that discovers/exploits Heartbleed/CVE-2014-0160.

View Repository
412 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

ssl-heartbleed.nse

Nmap NSE script that discovers/exploits Heartbleed/CVE-2014-0160. This script is now basically the one Patrik Karlsson wrote with some minor changes ported from my own script.

Features

  • Includes support for FTP,SMTP,XMPP (https://github.com/nmap/nmap/blob/master/nselib/sslcert.lua#L231).
  • Supports all versions of TLS (TLSv1.0, TLSv1.1, TLSv1.2).
  • Print leaked memory as hex dump.
  • Dump leaked memory into a file.

Usage

Check if a host is vulnerable

This runs on every SSL, FTP, SMTP and/or XMPP port.

root@kitploit:~
$ nmap --script ./openssl-heartbleed.nse host.tld

Dump leaked memory from a vulnerable host

Dumping leaked memory is enabled by increasing Nmap's debug level via -d flag.

root@kitploit:~
$ nmap -d --script=./openssl-heartbleed.nse host.tld

Dump leaked memory into a file

root@kitploit:~
$ nmap --script ./ssl-heartbleed.nse --script-args 'ssl-heartbleed.dumpfile=/tmp/heartbleed.dump' host.tld

Run ssl-heartbleed.nse against every port

Force the script to run on each port, regardless if the servie was detected or not.

root@kitploit:~
$ nmap --script +./ssl-heartbleed.nse host.tld
Download Tool