about summary refs log tree commit diff stats
path: root/tools/nmap.html
diff options
context:
space:
mode:
authorSilvino Silva <silvino@bk.ru>2016-09-15 00:47:34 +0100
committerSilvino Silva <silvino@bk.ru>2016-09-15 00:47:34 +0100
commit07bedee34d9ded6f86904c7e4b4e02464ff8cb14 (patch)
tree242dcbfdcd97667017bdfcaaa535919b01168fe1 /tools/nmap.html
parentb9762bb44befe4a852688eb19cce1aec3462f2ca (diff)
downloaddoc-07bedee34d9ded6f86904c7e4b4e02464ff8cb14.tar.gz
added tools
Diffstat (limited to 'tools/nmap.html')
-rw-r--r--tools/nmap.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/tools/nmap.html b/tools/nmap.html
new file mode 100644
index 0000000..60f1764
--- /dev/null
+++ b/tools/nmap.html
@@ -0,0 +1,44 @@
+ <!DOCTYPE html>
+<html dir="ltr" lang="en">
+    <head>
+        <meta charset='utf-8'>
+        <title>Nmap</title>
+    </head>
+    <body>
+        <h1>Nmap</h1>
+
+       <h2 id="nmap">Nmap</h2>
+
+        <p>Discover other hosts on local lan, try -sn and -sP,
+        not sure if both only disable port scan.</p>
+
+        <pre>
+        # nmap -sn 192.168.1.0/24
+        </pre>
+
+        <p>Check for vulnerabilities on host;</p>
+
+        <pre>
+        # nmap --script=vuln 127.0.1.1
+
+        Starting Nmap 6.47 ( http://nmap.org ) at 2015-07-20 22:07 UTC
+        Nmap scan report for dev.box (127.0.1.1)
+        Host is up (0.000028s latency).
+        Not shown: 998 closed ports
+        PORT   STATE SERVICE
+        25/tcp open  smtp
+        | smtp-vuln-cve2010-4344:
+        |   Exim version: 4.85
+        |   Exim heap overflow vulnerability (CVE-2010-4344):
+        |     Exim (CVE-2010-4344): NOT VULNERABLE
+        |   Exim privileges escalation vulnerability (CVE-2010-4345):
+        |     Exim (CVE-2010-4345): NOT VULNERABLE
+        |_  To confirm and exploit the vulnerabilities, run with --script-args='smtp-vuln-cve2010-4344.exploit'
+        53/tcp open  domain
+
+        Nmap done: 1 IP address (1 host up) scanned in 2.68 seconds
+        #
+        </pre>
+
+    </body>
+</html>