{"id":20,"date":"2022-03-24T19:06:00","date_gmt":"2022-03-24T18:06:00","guid":{"rendered":"https:\/\/blubb.fish\/?p=20"},"modified":"2022-03-23T19:22:41","modified_gmt":"2022-03-23T18:22:41","slug":"nmap","status":"publish","type":"post","link":"https:\/\/blubb.fish\/index.php\/2022\/03\/24\/nmap\/","title":{"rendered":"nmap"},"content":{"rendered":"\n<p>nmap is a usefull tool for network scanning or discovery of open ports and vulnerabilities. can be used for scanning internal and external Networks.<\/p>\n\n\n\n<p>Man page: https:\/\/linux.die.net\/man\/1\/nmap<\/p>\n\n\n\n<p>Project Page: https:\/\/nmap.org\/<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-large-font-size\">Usefull options:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">-A: Enable OS detection, version detection, script scanning, and traceroute\n-sV: Version Detect. Probe open ports to determine service\/version info\n-sC: same as --script=default. executes default script for scan. can be detected as intrusive\n--script=: use a script for scanning\n-T&lt;0-5&gt;: Set timing template (higher is faster). can speedup scans\n-iL &lt;Filename&gt;: input a list file to scan\n-iR: nmap generates random IPs for scanning. usefull for research\n-Pn: no Ping. skips host discovery\n-n: no DNS lookup. can speedup scan\n-sS: TCP Syn Scan. only checks for SYN. not full TCP handshake\n-sT: TCP Scan\n-sU: UDP Scan. scanns for UDP Ports of widely known Services like port 53 dns\n-p-: scans all ports from 1-65535\n-p &lt;port range&gt;: define port range for scanning ex. 1-255<\/pre>\n\n\n\n<p class=\"has-large-font-size\">Examples:<\/p>\n\n\n\n<p class=\"has-medium-font-size\">-sV<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ nmap -sV blubb.fish\nStarting Nmap 7.92 ( https:\/\/nmap.org ) at 2022-03-23 14:28 UTC\nNmap scan report for blubb.fish (149.126.4.100)\nHost is up (0.012s latency).\nOther addresses for blubb.fish (not scanned): 2a01:ab20:0:4::100\nrDNS record for 149.126.4.100: s091.cyon.net\nNot shown: 997 filtered tcp ports (no-response)\nPORT    STATE  SERVICE  VERSION\n25\/tcp  closed smtp\n80\/tcp  open   http     OpenResty web app server\n443\/tcp open   ssl\/http OpenResty web app server\n\nService detection performed. Please report any incorrect results at https:\/\/nmap.org\/submit\/ .\nNmap done: 1 IP address (1 host up) scanned in 17.41 seconds<\/code><\/pre>\n\n\n\n<p>-sC<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ nmap -sC blubb.fish\nStarting Nmap 7.92 ( https:\/\/nmap.org ) at 2022-03-23 14:33 UTC\nNmap scan report for blubb.fish (149.126.4.100)\nHost is up (0.020s latency).\nOther addresses for blubb.fish (not scanned): 2a01:ab20:0:4::100\nrDNS record for 149.126.4.100: s091.cyon.net\nNot shown: 997 filtered tcp ports (no-response)\nPORT    STATE  SERVICE\n25\/tcp  closed smtp\n80\/tcp  open   http\n|_http-title: Site doesn't have a title (application\/octet-stream).\n443\/tcp open   https\n|_http-title: Site doesn't have a title (application\/octet-stream).\n| tls-nextprotoneg: \n|   h2\n|_  http\/1.1\n| tls-alpn: \n|   h2\n|_  http\/1.1\n| ssl-cert: Subject: commonName=blubb.fish\n| Subject Alternative Name: DNS:blubb.fish, DNS:www.blubb.fish\n| Not valid before: 2022-03-23T08:19:37\n|_Not valid after:  2022-06-21T08:19:36\n|_ssl-date: TLS randomness does not represent time\n\nNmap done: 1 IP address (1 host up) scanned in 6.04 seconds<\/code><\/pre>\n\n\n\n<p>-p<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ nmap -p 79-85 blubb.fish\nStarting Nmap 7.92 ( https:\/\/nmap.org ) at 2022-03-23 14:31 UTC\nNmap scan report for blubb.fish (149.126.4.100)\nHost is up (0.012s latency).\nOther addresses for blubb.fish (not scanned): 2a01:ab20:0:4::100\nrDNS record for 149.126.4.100: s091.cyon.net\n\nPORT   STATE    SERVICE\n79\/tcp filtered finger\n80\/tcp open     http\n81\/tcp filtered hosts2-ns\n82\/tcp filtered xfer\n83\/tcp filtered mit-ml-dev\n84\/tcp filtered ctf\n85\/tcp filtered mit-ml-dev\n\nNmap done: 1 IP address (1 host up) scanned in 1.27 seconds\n<\/code><\/pre>\n\n\n\n<p>-A (much much output)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ nmap -A blubb.fish\nStarting Nmap 7.92 ( https:\/\/nmap.org ) at 2022-03-23 14:15 UTC\nNmap scan report for blubb.fish (149.126.4.100)\nHost is up (0.018s latency).\nOther addresses for blubb.fish (not scanned): 2a01:ab20:0:4::100\nrDNS record for 149.126.4.100: s091.cyon.net\nNot shown: 983 filtered tcp ports (no-response)\nPORT      STATE  SERVICE         VERSION\n20\/tcp    closed ftp-data\n21\/tcp    open   ftp             Pure-FTPd\n22\/tcp    open   ssh             OpenSSH 7.4 (protocol 2.0)\n25\/tcp    closed smtp\n53\/tcp    closed domain\n80\/tcp    open   http            openresty\n|_http-server-header: openresty\n| fingerprint-strings: \n|   GetRequest, HTTPOptions: \n|     HTTP\/1.0 200 OK\n|     Connection: close\n|     content-type: text\/html; charset=UTF-8\n|     content-length: 880\n|     date: Wed, 23 Mar 2022 14:15:56 GMT\n|     x-robots-tag: noindex, nofollow\n|     &lt;!DOCTYPE html&gt;\n|     &lt;html style=\"height:100%\"&gt;\n|     &lt;head&gt;&lt;title&gt;Domain nicht eingerichtet\n|     &lt;\/title&gt;\n|     &lt;meta charset=\"utf-8\"&gt;&lt;\/head&gt;\n|     &lt;body style=\"color: #444; margin:0;font: normal 14px\/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;\"&gt;\n|     &lt;div style=\"height:auto; min-height:100%; \"&gt; &lt;div style=\"text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;\"&gt;\n|     style=\"margin-top:20px;font-size: 30px;\"&gt;\n|     Domain nicht eingerichtet&lt;\/h1&gt;\n|     &lt;p&gt;Die gew\n|     nschte Domain ist auf diesem Server nicht konfiguriert und kann deshalb nicht angezeigt werden.&lt;\/p&gt;\n|_    &lt;p&gt;Weitere Informationen finden Sie in unserem Supportcenter:&lt;br&gt;&lt;a href=\"https:\/\/www.cyon.ch\/support\/a\/fehler-beim-aufruf\n|_http-title: Site doesn't have a title (application\/octet-stream).\n110\/tcp   open   pop3            Dovecot pop3d\n|_ssl-cert: ERROR: Script execution failed (use -d to debug)\n|_ssl-date: ERROR: Script execution failed (use -d to debug)\n|_tls-alpn: ERROR: Script execution failed (use -d to debug)\n|_tls-nextprotoneg: ERROR: Script execution failed (use -d to debug)\n|_pop3-capabilities: RESP-CODES PIPELINING STLS SASL(PLAIN LOGIN) CAPA USER AUTH-RESP-CODE TOP UIDL\n|_sslv2: ERROR: Script execution failed (use -d to debug)\n143\/tcp   open   imap            Dovecot imapd\n|_ssl-date: ERROR: Script execution failed (use -d to debug)\n|_ssl-cert: ERROR: Script execution failed (use -d to debug)\n|_tls-nextprotoneg: ERROR: Script execution failed (use -d to debug)\n|_tls-alpn: ERROR: Script execution failed (use -d to debug)\n|_imap-capabilities: XLIST Pre-login IDLE listed LITERAL+ SASL-IR STARTTLS ENABLE +NAMESPACE LOGIN-REFERRALS ID OK AUTH=LOGINA0001 more have post-login AUTH=PLAIN capabilities IMAP4rev1\n|_sslv2: ERROR: Script execution failed (use -d to debug)\n443\/tcp   open   ssl\/https       openresty\n|_ssl-date: TLS randomness does not represent time\n| tls-nextprotoneg: \n|   h2\n|_  http\/1.1\n|_http-server-header: openresty\n| ssl-cert: Subject: commonName=blubb.fish\n| Subject Alternative Name: DNS:blubb.fish, DNS:www.blubb.fish\n| Not valid before: 2022-03-23T08:19:37\n|_Not valid after:  2022-06-21T08:19:36\n| tls-alpn: \n|   h2\n|_  http\/1.1\n| fingerprint-strings: \n|   GetRequest, HTTPOptions: \n|     HTTP\/1.0 200 OK\n|     Connection: close\n|     content-type: text\/html; charset=UTF-8\n|     content-length: 880\n|     date: Wed, 23 Mar 2022 14:16:02 GMT\n|     x-robots-tag: noindex, nofollow\n|     &lt;!DOCTYPE html&gt;\n|     &lt;html style=\"height:100%\"&gt;\n|     &lt;head&gt;&lt;title&gt;Domain nicht eingerichtet\n|     &lt;\/title&gt;\n|     &lt;meta charset=\"utf-8\"&gt;&lt;\/head&gt;\n|     &lt;body style=\"color: #444; margin:0;font: normal 14px\/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;\"&gt;\n|     &lt;div style=\"height:auto; min-height:100%; \"&gt; &lt;div style=\"text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;\"&gt;\n|     style=\"margin-top:20px;font-size: 30px;\"&gt;\n|     Domain nicht eingerichtet&lt;\/h1&gt;\n|     &lt;p&gt;Die gew\n|     nschte Domain ist auf diesem Server nicht konfiguriert und kann deshalb nicht angezeigt werden.&lt;\/p&gt;\n|_    &lt;p&gt;Weitere Informationen finden Sie in unserem Supportcenter:&lt;br&gt;&lt;a href=\"https:\/\/www.cyon.ch\/support\/a\/fehler-beim-aufruf\n|_http-title: Site doesn't have a title (application\/octet-stream).\n465\/tcp   open   ssl\/nagios-nsca Nagios NSCA\n|_smtp-commands: s091.cyon.net Hello blubb.fish &#91;91.92.201.158], SIZE 52428800, 8BITMIME, PIPELINING, PIPE_CONNECT, AUTH PLAIN LOGIN, HELP\n587\/tcp   open   nagios-nsca     Nagios NSCA\n|_smtp-ntlm-info: ERROR: Script execution failed (use -d to debug)\n| smtp-commands: s091.cyon.net Hello blubb.fish &#91;91.92.201.158], SIZE 52428800, 8BITMIME, PIPELINING, PIPE_CONNECT, AUTH PLAIN LOGIN, STARTTLS, HELP\n|_ Commands supported: AUTH STARTTLS HELO EHLO MAIL RCPT DATA BDAT NOOP QUIT RSET HELP\n993\/tcp   open   ssl\/imap        Dovecot imapd\n995\/tcp   open   ssl\/pop3        Dovecot pop3d\n|_pop3-capabilities: RESP-CODES PIPELINING SASL(PLAIN LOGIN) AUTH-RESP-CODE USER CAPA UIDL TOP\n2196\/tcp  closed unknown\n3306\/tcp  open   mysql           MySQL 5.7.26-log-cll-lve\n|_tls-alpn: ERROR: Script execution failed (use -d to debug)\n|_ssl-date: ERROR: Script execution failed (use -d to debug)\n|_tls-nextprotoneg: ERROR: Script execution failed (use -d to debug)\n|_ssl-cert: ERROR: Script execution failed (use -d to debug)\n|_sslv2: ERROR: Script execution failed (use -d to debug)\n| mysql-info: \n|   Protocol: 10\n|   Version: 5.7.26-log-cll-lve\n|   Thread ID: 133486537\n|   Capabilities flags: 63487\n|   Some Capabilities: Support41Auth, FoundRows, LongColumnFlag, Speaks41ProtocolOld, SupportsTransactions, IgnoreSpaceBeforeParenthesis, IgnoreSigpipes, ODBCClient, InteractiveClient, Speaks41ProtocolNew, SupportsCompression, SupportsLoadDataLocal, DontAllowDatabaseTableColumn, LongPassword, ConnectWithDatabase, SupportsMultipleResults, SupportsAuthPlugins, SupportsMultipleStatments\n|   Status: Autocommit\n|   Salt: \\x1C\\x1CVnCYghs(.J\\x1Bx&#91;)#\\x081\\x10\n|_  Auth Plugin Name: mysql_native_password\n8888\/tcp  closed sun-answerbook\n30000\/tcp closed ndmps\n2 services unrecognized despite returning data. If you know the service\/version, please submit the following fingerprints at https:\/\/nmap.org\/cgi-bin\/submit.cgi?new-service :\n==============NEXT SERVICE FINGERPRINT (SUBMIT INDIVIDUALLY)==============\nSF-Port80-TCP:V=7.92%I=7%D=3\/23%Time=623B2B9C%P=x86_64-pc-linux-gnu%r(GetR\nSF:equest,419,\"HTTP\/1\\.0\\x20200\\x20OK\\r\\nConnection:\\x20close\\r\\ncontent-t\nSF:ype:\\x20text\/html;\\x20charset=UTF-8\\r\\ncontent-length:\\x20880\\r\\ndate:\\\nSF:x20Wed,\\x2023\\x20Mar\\x202022\\x2014:15:56\\x20GMT\\r\\nx-robots-tag:\\x20noi\nSF:ndex,\\x20nofollow\\r\\n\\r\\n&lt;!DOCTYPE\\x20html&gt;\\n&lt;html\\x20style=\\\"height:10\nSF:0%\\\"&gt;\\n&lt;head&gt;&lt;title&gt;Domain\\x20nicht\\x20eingerichtet\\n&lt;\/title&gt;\\n&lt;meta\\x2\nSF:0charset=\\\"utf-8\\\"&gt;&lt;\/head&gt;\\n&lt;body\\x20style=\\\"color:\\x20#444;\\x20margin:\nSF:0;font:\\x20normal\\x2014px\/20px\\x20Arial,\\x20Helvetica,\\x20sans-serif;\\x\nSF:20height:100%;\\x20background-color:\\x20#fff;\\\"&gt;\\n&lt;div\\x20style=\\\"height\nSF::auto;\\x20min-height:100%;\\x20\\\"&gt;\\x20\\x20\\x20\\x20\\x20&lt;div\\x20style=\\\"te\nSF:xt-align:\\x20center;\\x20width:800px;\\x20margin-left:\\x20-400px;\\x20posi\nSF:tion:absolute;\\x20top:\\x2030%;\\x20left:50%;\\\"&gt;\\n\\x20\\x20\\x20\\x20\\x20\\x2\nSF:0\\x20\\x20&lt;h1\\x20style=\\\"margin-top:20px;font-size:\\x2030px;\\\"&gt;\\n\\x20\\x2\nSF:0\\x20\\x20\\x20\\x20\\x20\\x20Domain\\x20nicht\\x20eingerichtet&lt;\/h1&gt;\\n&lt;p&gt;Die\\x\nSF:20gew\\xc3\\xbcnschte\\x20Domain\\x20ist\\x20auf\\x20diesem\\x20Server\\x20nich\nSF:t\\x20konfiguriert\\x20und\\x20kann\\x20deshalb\\x20nicht\\x20angezeigt\\x20we\nSF:rden\\.&lt;\/p&gt;\\n&lt;p&gt;Weitere\\x20Informationen\\x20finden\\x20Sie\\x20in\\x20unser\nSF:em\\x20Supportcenter:&lt;br&gt;&lt;a\\x20href=\\\"https:\/\/www\\.cyon\\.ch\/support\/a\/fe\nSF:hler-beim-aufruf\")%r(HTTPOptions,419,\"HTTP\/1\\.0\\x20200\\x20OK\\r\\nConnect\nSF:ion:\\x20close\\r\\ncontent-type:\\x20text\/html;\\x20charset=UTF-8\\r\\nconten\nSF:t-length:\\x20880\\r\\ndate:\\x20Wed,\\x2023\\x20Mar\\x202022\\x2014:15:56\\x20G\nSF:MT\\r\\nx-robots-tag:\\x20noindex,\\x20nofollow\\r\\n\\r\\n&lt;!DOCTYPE\\x20html&gt;\\n\nSF:&lt;html\\x20style=\\\"height:100%\\\"&gt;\\n&lt;head&gt;&lt;title&gt;Domain\\x20nicht\\x20einger\nSF:ichtet\\n&lt;\/title&gt;\\n&lt;meta\\x20charset=\\\"utf-8\\\"&gt;&lt;\/head&gt;\\n&lt;body\\x20style=\\\"\nSF:color:\\x20#444;\\x20margin:0;font:\\x20normal\\x2014px\/20px\\x20Arial,\\x20H\nSF:elvetica,\\x20sans-serif;\\x20height:100%;\\x20background-color:\\x20#fff;\\\nSF:\"&gt;\\n&lt;div\\x20style=\\\"height:auto;\\x20min-height:100%;\\x20\\\"&gt;\\x20\\x20\\x20\nSF:\\x20\\x20&lt;div\\x20style=\\\"text-align:\\x20center;\\x20width:800px;\\x20margi\nSF:n-left:\\x20-400px;\\x20position:absolute;\\x20top:\\x2030%;\\x20left:50%;\\\"\nSF:&gt;\\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20&lt;h1\\x20style=\\\"margin-top:20px;font-\nSF:size:\\x2030px;\\\"&gt;\\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20Domain\\x20nicht\\x20e\nSF:ingerichtet&lt;\/h1&gt;\\n&lt;p&gt;Die\\x20gew\\xc3\\xbcnschte\\x20Domain\\x20ist\\x20auf\\x\nSF:20diesem\\x20Server\\x20nicht\\x20konfiguriert\\x20und\\x20kann\\x20deshalb\\x\nSF:20nicht\\x20angezeigt\\x20werden\\.&lt;\/p&gt;\\n&lt;p&gt;Weitere\\x20Informationen\\x20fi\nSF:nden\\x20Sie\\x20in\\x20unserem\\x20Supportcenter:&lt;br&gt;&lt;a\\x20href=\\\"https:\/\/\nSF:www\\.cyon\\.ch\/support\/a\/fehler-beim-aufruf\");\n==============NEXT SERVICE FINGERPRINT (SUBMIT INDIVIDUALLY)==============\nSF-Port443-TCP:V=7.92%T=SSL%I=7%D=3\/23%Time=623B2BA2%P=x86_64-pc-linux-gnu\nSF:%r(GetRequest,419,\"HTTP\/1\\.0\\x20200\\x20OK\\r\\nConnection:\\x20close\\r\\nco\nSF:ntent-type:\\x20text\/html;\\x20charset=UTF-8\\r\\ncontent-length:\\x20880\\r\\\nSF:ndate:\\x20Wed,\\x2023\\x20Mar\\x202022\\x2014:16:02\\x20GMT\\r\\nx-robots-tag:\nSF:\\x20noindex,\\x20nofollow\\r\\n\\r\\n&lt;!DOCTYPE\\x20html&gt;\\n&lt;html\\x20style=\\\"he\nSF:ight:100%\\\"&gt;\\n&lt;head&gt;&lt;title&gt;Domain\\x20nicht\\x20eingerichtet\\n&lt;\/title&gt;\\n&lt;\nSF:meta\\x20charset=\\\"utf-8\\\"&gt;&lt;\/head&gt;\\n&lt;body\\x20style=\\\"color:\\x20#444;\\x20\nSF:margin:0;font:\\x20normal\\x2014px\/20px\\x20Arial,\\x20Helvetica,\\x20sans-s\nSF:erif;\\x20height:100%;\\x20background-color:\\x20#fff;\\\"&gt;\\n&lt;div\\x20style=\\\nSF:\"height:auto;\\x20min-height:100%;\\x20\\\"&gt;\\x20\\x20\\x20\\x20\\x20&lt;div\\x20sty\nSF:le=\\\"text-align:\\x20center;\\x20width:800px;\\x20margin-left:\\x20-400px;\\\nSF:x20position:absolute;\\x20top:\\x2030%;\\x20left:50%;\\\"&gt;\\n\\x20\\x20\\x20\\x20\nSF:\\x20\\x20\\x20\\x20&lt;h1\\x20style=\\\"margin-top:20px;font-size:\\x2030px;\\\"&gt;\\n\nSF:\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20Domain\\x20nicht\\x20eingerichtet&lt;\/h1&gt;\\n&lt;\nSF:p&gt;Die\\x20gew\\xc3\\xbcnschte\\x20Domain\\x20ist\\x20auf\\x20diesem\\x20Server\\\nSF:x20nicht\\x20konfiguriert\\x20und\\x20kann\\x20deshalb\\x20nicht\\x20angezeig\nSF:t\\x20werden\\.&lt;\/p&gt;\\n&lt;p&gt;Weitere\\x20Informationen\\x20finden\\x20Sie\\x20in\\x\nSF:20unserem\\x20Supportcenter:&lt;br&gt;&lt;a\\x20href=\\\"https:\/\/www\\.cyon\\.ch\/suppo\nSF:rt\/a\/fehler-beim-aufruf\")%r(HTTPOptions,419,\"HTTP\/1\\.0\\x20200\\x20OK\\r\\n\nSF:Connection:\\x20close\\r\\ncontent-type:\\x20text\/html;\\x20charset=UTF-8\\r\\\nSF:ncontent-length:\\x20880\\r\\ndate:\\x20Wed,\\x2023\\x20Mar\\x202022\\x2014:16:\nSF:02\\x20GMT\\r\\nx-robots-tag:\\x20noindex,\\x20nofollow\\r\\n\\r\\n&lt;!DOCTYPE\\x20\nSF:html&gt;\\n&lt;html\\x20style=\\\"height:100%\\\"&gt;\\n&lt;head&gt;&lt;title&gt;Domain\\x20nicht\\x2\nSF:0eingerichtet\\n&lt;\/title&gt;\\n&lt;meta\\x20charset=\\\"utf-8\\\"&gt;&lt;\/head&gt;\\n&lt;body\\x20s\nSF:tyle=\\\"color:\\x20#444;\\x20margin:0;font:\\x20normal\\x2014px\/20px\\x20Aria\nSF:l,\\x20Helvetica,\\x20sans-serif;\\x20height:100%;\\x20background-color:\\x2\nSF:0#fff;\\\"&gt;\\n&lt;div\\x20style=\\\"height:auto;\\x20min-height:100%;\\x20\\\"&gt;\\x20\\\nSF:x20\\x20\\x20\\x20&lt;div\\x20style=\\\"text-align:\\x20center;\\x20width:800px;\\x\nSF:20margin-left:\\x20-400px;\\x20position:absolute;\\x20top:\\x2030%;\\x20left\nSF::50%;\\\"&gt;\\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20&lt;h1\\x20style=\\\"margin-top:20p\nSF:x;font-size:\\x2030px;\\\"&gt;\\n\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20Domain\\x20nic\nSF:ht\\x20eingerichtet&lt;\/h1&gt;\\n&lt;p&gt;Die\\x20gew\\xc3\\xbcnschte\\x20Domain\\x20ist\\x\nSF:20auf\\x20diesem\\x20Server\\x20nicht\\x20konfiguriert\\x20und\\x20kann\\x20de\nSF:shalb\\x20nicht\\x20angezeigt\\x20werden\\.&lt;\/p&gt;\\n&lt;p&gt;Weitere\\x20Informatione\nSF:n\\x20finden\\x20Sie\\x20in\\x20unserem\\x20Supportcenter:&lt;br&gt;&lt;a\\x20href=\\\"h\nSF:ttps:\/\/www\\.cyon\\.ch\/support\/a\/fehler-beim-aufruf\");\n\nService detection performed. Please report any incorrect results at https:\/\/nmap.org\/submit\/ .\nNmap done: 1 IP address (1 host up) scanned in 763.41 seconds\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>nmap is a usefull tool for network scanning or discovery of open ports and vulnerabilities. can be used for scanning internal and external Networks. Man page: https:\/\/linux.die.net\/man\/1\/nmap Project Page: https:\/\/nmap.org\/ Usefull options: -A: Enable OS detection, version detection, script scanning, and traceroute -sV: Version Detect. Probe open ports to determine service\/version info -sC: same as [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,4],"tags":[],"class_list":["post-20","post","type-post","status-publish","format-standard","hentry","category-linux","category-pentesting"],"_links":{"self":[{"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/posts\/20","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/comments?post=20"}],"version-history":[{"count":5,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/posts\/20\/revisions"}],"predecessor-version":[{"id":40,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/posts\/20\/revisions\/40"}],"wp:attachment":[{"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/media?parent=20"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/categories?post=20"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blubb.fish\/index.php\/wp-json\/wp\/v2\/tags?post=20"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}