Sign up ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.

There is a great tool:

https://github.com/robertdavidgraham/masscan

that we can use if a bigger network need to be scanned for various aspects.

But, can the masscan use the Nmap Scripting Engine?

For example, the "File ssl-heartbleed"?

http://nmap.org/nsedoc/scripts/ssl-heartbleed.html

share|improve this question

1 Answer 1

up vote 1 down vote accepted

Masscan cannot use NSE, since it is a different program entirely. However, it does have some advanced features like Heartbleed detection. See the author's blog for more details, but here's the basic command-line:

masscan 10.0.0.0/8 -p443 -S 10.1.2.53 --rate 100000 --heartbleed
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.