ruby-nmap 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,21 +23,25 @@ module Nmap
23
23
  #
24
24
  # The port used for the traceroute.
25
25
  #
26
- # @return [Integer]
26
+ # @return [Integer, nil]
27
27
  # The `port` XML attribute.
28
28
  #
29
29
  def port
30
- @port ||= @node['port'].to_i
30
+ @port ||= if @node['port']
31
+ @node['port'].to_i
32
+ end
31
33
  end
32
34
 
33
35
  #
34
36
  # The protocol used for the traceroute.
35
37
  #
36
- # @return [Symbol]
38
+ # @return [Symbol, nil]
37
39
  # The `proto` XML element.
38
40
  #
39
41
  def protocol
40
- @protocol ||= @node['proto'].to_sym
42
+ @protocol ||= if @node['proto']
43
+ @node['proto'].to_sym
44
+ end
41
45
  end
42
46
 
43
47
  #
@@ -1,4 +1,4 @@
1
1
  module Nmap
2
2
  # ruby-nmap version
3
- VERSION = '0.8.0'
3
+ VERSION = '0.9.0'
4
4
  end
@@ -3,6 +3,8 @@ require 'nmap/scan_task'
3
3
  require 'nmap/scan'
4
4
  require 'nmap/host'
5
5
  require 'nmap/run_stat'
6
+ require 'nmap/prescript'
7
+ require 'nmap/postscript'
6
8
 
7
9
  require 'nokogiri'
8
10
 
@@ -239,6 +241,34 @@ module Nmap
239
241
  each_task.to_a
240
242
  end
241
243
 
244
+ #
245
+ # The NSE scripts ran before the scan.
246
+ #
247
+ # @return [Prescript]
248
+ # Contains the script output and data.
249
+ #
250
+ # @since 0.9.0
251
+ #
252
+ def prescript
253
+ @prescript ||= if (prescript = @doc.at('prescript'))
254
+ Prescript.new(prescript)
255
+ end
256
+ end
257
+
258
+ #
259
+ # The NSE scripts ran after the scan.
260
+ #
261
+ # @return [Postscript]
262
+ # Contains the script output and data.
263
+ #
264
+ # @since 0.9.0
265
+ #
266
+ def postscript
267
+ @postscript ||= if (postscript = @doc.at('postscript'))
268
+ Postscript.new(postscript)
269
+ end
270
+ end
271
+
242
272
  #
243
273
  # Parses the hosts in the scan.
244
274
  #
@@ -0,0 +1,6 @@
1
+ require 'spec_helper'
2
+ require 'nmap/host_script'
3
+
4
+ describe HostScript do
5
+ pending "need to generate nmap XML output containing hostscript elements"
6
+ end
@@ -69,6 +69,8 @@ describe Host do
69
69
  end
70
70
  end
71
71
 
72
+ let(:ipv4) { '45.33.32.156' }
73
+
72
74
  describe "#addresses" do
73
75
  subject { super().addresses.first }
74
76
 
@@ -77,9 +79,8 @@ describe Host do
77
79
  end
78
80
 
79
81
  it "should parser the addr" do
80
- expect(subject.addr).to eq('74.207.244.221')
82
+ expect(subject.addr).to eq(ipv4)
81
83
  end
82
-
83
84
  end
84
85
 
85
86
  describe "#mac" do
@@ -96,19 +97,19 @@ describe Host do
96
97
 
97
98
  describe "#ipv4" do
98
99
  it "should parse the IPv4 address" do
99
- expect(subject.ipv4).to eq('74.207.244.221')
100
+ expect(subject.ipv4).to eq(ipv4)
100
101
  end
101
102
  end
102
103
 
103
104
  describe "#ip" do
104
105
  it "should have an IP" do
105
- expect(subject.ip).to eq('74.207.244.221')
106
+ expect(subject.ip).to eq(ipv4)
106
107
  end
107
108
  end
108
109
 
109
110
  describe "#address" do
110
111
  it "should have an address" do
111
- expect(subject.address).to eq('74.207.244.221')
112
+ expect(subject.address).to eq(ipv4)
112
113
  end
113
114
  end
114
115
 
@@ -192,7 +193,7 @@ describe Host do
192
193
  before { expect(subject).to receive(:hostname).and_return(nil) }
193
194
 
194
195
  it "should return the first address" do
195
- expect(subject.to_s).to eq('74.207.244.221')
196
+ expect(subject.to_s).to eq(ipv4)
196
197
  end
197
198
  end
198
199
  end
@@ -203,13 +204,17 @@ describe Host do
203
204
  end
204
205
  end
205
206
 
206
- skip "scan.xml does not currently include any hostscripts" do
207
- include_examples "#scripts"
207
+ describe "#host_script" do
208
+ subject { super().host_script }
209
+
210
+ pending "scan.xml does not currently include any hostscript elements"
208
211
  end
209
212
 
210
213
  describe "#vendor" do
214
+ subject { @local_xml.host }
215
+
211
216
  it "should parse the vendor name" do
212
- expect(subject.vendor).to eq('Cadmus Computer Systems')
217
+ expect(subject.vendor).to eq('LG Electronics')
213
218
  end
214
219
  end
215
220
  end
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0"?>
2
+ <!DOCTYPE nmaprun PUBLIC "-//IDN nmap.org//DTD Nmap XML 1.04//EN" "https://svn.nmap.org/nmap/docs/nmap.dtd">
3
+ <?xml-stylesheet href="file:///usr/bin/../share/nmap/nmap.xsl" type="text/xsl"?>
4
+ <!-- Nmap 6.45 scan initiated Thu Apr 16 20:12:47 2015 as: nmap -v -sS -A -O -&#45;script ssh2-enum-algos -oX spec/local_scan.xml 10.0.0.2 -->
5
+ <nmaprun scanner="nmap" args="nmap -v -sS -A -O -&#45;script ssh2-enum-algos -oX spec/local_scan.xml 10.0.0.2" start="1429240367" startstr="Thu Apr 16 20:12:47 2015" version="6.45" xmloutputversion="1.04">
6
+ <scaninfo type="syn" protocol="tcp" numservices="1000" services="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,443-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3007,3011,3013,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5987-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
7
+ <verbose level="1"/>
8
+ <debugging level="0"/>
9
+ <taskbegin task="ARP Ping Scan" time="1429240367"/>
10
+ <taskend task="ARP Ping Scan" time="1429240368" extrainfo="1 total hosts"/>
11
+ <taskbegin task="Parallel DNS resolution of 1 host." time="1429240368"/>
12
+ <taskend task="Parallel DNS resolution of 1 host." time="1429240379"/>
13
+ <taskbegin task="SYN Stealth Scan" time="1429240379"/>
14
+ <taskend task="SYN Stealth Scan" time="1429240386" extrainfo="1000 total ports"/>
15
+ <taskbegin task="Service scan" time="1429240386"/>
16
+ <host starttime="1429240367" endtime="1429240388"><status state="up" reason="arp-response" reason_ttl="0"/>
17
+ <address addr="10.0.0.2" addrtype="ipv4"/>
18
+ <address addr="E8:92:A4:D3:F5:30" addrtype="mac" vendor="LG Electronics"/>
19
+ <hostnames>
20
+ </hostnames>
21
+ <ports><extraports state="closed" count="1000">
22
+ <extrareasons reason="resets" count="1000"/>
23
+ </extraports>
24
+ </ports>
25
+ <os><portused state="closed" proto="tcp" portid="1"/>
26
+ </os>
27
+ <distance value="1"/>
28
+ <trace>
29
+ <hop ttl="1" ipaddr="10.0.0.2" rtt="17.38"/>
30
+ </trace>
31
+ <times srtt="17377" rttvar="24881" to="116901"/>
32
+ </host>
33
+ <runstats><finished time="1429240388" timestr="Thu Apr 16 20:13:08 2015" elapsed="21.14" summary="Nmap done at Thu Apr 16 20:13:08 2015; 1 IP address (1 host up) scanned in 21.14 seconds" exit="success"/><hosts up="1" down="0" total="1"/>
34
+ </runstats>
35
+ </nmaprun>
@@ -27,7 +27,7 @@ describe OS do
27
27
 
28
28
  describe "#gen" do
29
29
  it "should parse the gen" do
30
- expect(subject.gen).to eq(:'2.6.X')
30
+ expect(subject.gen).to eq(:'3.X')
31
31
  end
32
32
  end
33
33
 
@@ -20,7 +20,7 @@ describe OS do
20
20
  subject { super().matches.first }
21
21
 
22
22
  it "should parse the name" do
23
- expect(subject.name).to eq('Linux 2.6.39')
23
+ expect(subject.name).to eq('Linux 3.0')
24
24
  end
25
25
 
26
26
  it "should parse the accuracy" do
@@ -1,4 +1,6 @@
1
1
  require 'spec_helper'
2
+ require 'scripts_examples'
3
+
2
4
  require 'nmap/port'
3
5
 
4
6
  describe Port do
@@ -37,6 +39,7 @@ describe Port do
37
39
  end
38
40
 
39
41
  include_examples "#scripts"
42
+ include_examples "#script_data"
40
43
 
41
44
  describe "#inspect" do
42
45
  it "should include the number" do
@@ -0,0 +1,6 @@
1
+ require 'spec_helper'
2
+ require 'nmap/postscript'
3
+
4
+ describe Postscript do
5
+ pending "need to generate nmap XML output containing postscript elements"
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'spec_helper'
2
+ require 'nmap/prescript'
3
+
4
+ describe Prescript do
5
+ pending "need to generate nmap XML output containing prescript elements"
6
+ end
@@ -1,73 +1,151 @@
1
1
  <?xml version="1.0"?>
2
+ <!DOCTYPE nmaprun PUBLIC "-//IDN nmap.org//DTD Nmap XML 1.04//EN" "https://svn.nmap.org/nmap/docs/nmap.dtd">
2
3
  <?xml-stylesheet href="file:///usr/bin/../share/nmap/nmap.xsl" type="text/xsl"?>
3
- <!-- Nmap 6.01 scan initiated Sat Jul 20 23:55:27 2013 as: nmap -v -sS -sU -A -O -oX spec/scan.xml scanme.nmap.org -->
4
- <nmaprun scanner="nmap" args="nmap -v -sS -sU -A -O -oX spec/scan.xml scanme.nmap.org" start="1374389727" startstr="Sat Jul 20 23:55:27 2013" version="6.01" xmloutputversion="1.04">
4
+ <!-- Nmap 6.45 scan initiated Fri Apr 17 13:23:10 2015 as: nmap -v -sS -sU -A -O -&#45;script ssh2-enum-algos,ssh-hostkey -oX spec/scan.xml scanme.nmap.org -->
5
+ <nmaprun scanner="nmap" args="nmap -v -sS -sU -A -O -&#45;script ssh2-enum-algos,ssh-hostkey -oX spec/scan.xml scanme.nmap.org" start="1429302190" startstr="Fri Apr 17 13:23:10 2015" version="6.45" xmloutputversion="1.04">
5
6
  <scaninfo type="syn" protocol="tcp" numservices="1000" services="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,443-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3007,3011,3013,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5987-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
6
7
  <scaninfo type="udp" protocol="udp" numservices="1000" services="2-3,7,9,13,17,19-23,37-38,42,49,53,67-69,80,88,111-113,120,123,135-139,158,161-162,177,192,199,207,217,363,389,402,407,427,434,443,445,464,497,500,502,512-515,517-518,520,539,559,593,623,626,631,639,643,657,664,682-689,764,767,772-776,780-782,786,789,800,814,826,829,838,902-903,944,959,965,983,989-990,996-1001,1007-1008,1012-1014,1019-1051,1053-1060,1064-1070,1072,1080-1081,1087-1088,1090,1100-1101,1105,1124,1200,1214,1234,1346,1419,1433-1434,1455,1457,1484-1485,1524,1645-1646,1701,1718-1719,1761,1782,1804,1812-1813,1885-1886,1900-1901,1993,2000,2002,2048-2049,2051,2148,2160-2161,2222-2223,2343,2345,2362,2967,3052,3130,3283,3296,3343,3389,3401,3456-3457,3659,3664,3702-3703,4000,4008,4045,4444,4500,4666,4672,5000-5003,5010,5050,5060,5093,5351,5353,5355,5500,5555,5632,6000-6002,6004,6050,6346-6347,6970-6971,7000,7938,8000-8001,8010,8181,8193,8900,9000-9001,9020,9103,9199-9200,9370,9876-9877,9950,10000,10080,11487,16086,16402,16420,16430,16433,16449,16498,16503,16545,16548,16573,16674,16680,16697,16700,16708,16711,16739,16766,16779,16786,16816,16829,16832,16838-16839,16862,16896,16912,16918-16919,16938-16939,16947-16948,16970,16972,16974,17006,17018,17077,17091,17101,17146,17184-17185,17205,17207,17219,17236-17237,17282,17302,17321,17331-17332,17338,17359,17417,17423-17424,17455,17459,17468,17487,17490,17494,17505,17533,17549,17573,17580,17585,17592,17605,17615-17616,17629,17638,17663,17673-17674,17683,17726,17754,17762,17787,17814,17823-17824,17836,17845,17888,17939,17946,17989,18004,18081,18113,18134,18156,18228,18234,18250,18255,18258,18319,18331,18360,18373,18449,18485,18543,18582,18605,18617,18666,18669,18676,18683,18807,18818,18821,18830,18832,18835,18869,18883,18888,18958,18980,18985,18987,18991,18994,18996,19017,19022,19039,19047,19075,19096,19120,19130,19140-19141,19154,19161,19165,19181,19193,19197,19222,19227,19273,19283,19294,19315,19322,19332,19374,19415,19482,19489,19500,19503-19504,19541,19600,19605,19616,19624-19625,19632,19639,19647,19650,19660,19662-19663,19682-19683,19687,19695,19707,19717-19719,19722,19728,19789,19792,19933,19935-19936,19956,19995,19998,20003-20004,20019,20031,20082,20117,20120,20126,20129,20146,20154,20164,20206,20217,20249,20262,20279,20288,20309,20313,20326,20359-20360,20366,20380,20389,20409,20411,20423-20425,20445,20449,20464-20465,20518,20522,20525,20540,20560,20665,20678-20679,20710,20717,20742,20752,20762,20791,20817,20842,20848,20851,20865,20872,20876,20884,20919,21000,21016,21060,21083,21104,21111,21131,21167,21186,21206-21207,21212,21247,21261,21282,21298,21303,21318,21320,21333,21344,21354,21358,21360,21364,21366,21383,21405,21454,21468,21476,21514,21524-21525,21556,21566,21568,21576,21609,21621,21625,21644,21649,21655,21663,21674,21698,21702,21710,21742,21780,21784,21800,21803,21834,21842,21847,21868,21898,21902,21923,21948,21967,22029,22043,22045,22053,22055,22105,22109,22123-22124,22341,22692,22695,22739,22799,22846,22914,22986,22996,23040,23176,23354,23531,23557,23608,23679,23781,23965,23980,24007,24279,24511,24594,24606,24644,24854,24910,25003,25157,25240,25280,25337,25375,25462,25541,25546,25709,25931,26407,26415,26720,26872,26966,27015,27195,27444,27473,27482,27707,27892,27899,28122,28369,28465,28493,28543,28547,28641,28840,28973,29078,29243,29256,29810,29823,29977,30263,30303,30365,30544,30656,30697,30704,30718,30975,31059,31073,31109,31189,31195,31335,31337,31365,31625,31681,31731,31891,32345,32385,32528,32768-32780,32798,32815,32818,32931,33030,33249,33281,33354-33355,33459,33717,33744,33866,33872,34038,34079,34125,34358,34422,34433,34555,34570,34577-34580,34758,34796,34855,34861-34862,34892,35438,35702,35777,35794,36108,36206,36384,36458,36489,36669,36778,36893,36945,37144,37212,37393,37444,37602,37761,37783,37813,37843,38037,38063,38293,38412,38498,38615,39213,39217,39632,39683,39714,39723,39888,40019,40116,40441,40539,40622,40708,40711,40724,40732,40805,40847,40866,40915,41058,41081,41308,41370,41446,41524,41638,41702,41774,41896,41967,41971,42056,42172,42313,42431,42434,42508,42557,42577,42627,42639,43094,43195,43370,43514,43686,43824,43967,44101,44160,44179,44185,44190,44253,44334,44508,44923,44946,44968,45247,45380,45441,45685,45722,45818,45928,46093,46532,46836,47624,47765,47772,47808,47915,47981,48078,48189,48255,48455,48489,48761,49152-49163,49165-49182,49184-49202,49204-49205,49207-49216,49220,49222,49226,49259,49262,49306,49350,49360,49393,49396,49503,49640,49968,50099,50164,50497,50612,50708,50919,51255,51456,51554,51586,51690,51717,51905,51972,52144,52225,52503,53006,53037,53571,53589,53838,54094,54114,54281,54321,54711,54807,54925,55043,55544,55587,56141,57172,57409-57410,57813,57843,57958,57977,58002,58075,58178,58419,58631,58640,58797,59193,59207,59765,59846,60172,60381,60423,61024,61142,61319,61322,61370,61412,61481,61550,61685,61961,62154,62287,62575,62677,62699,62958,63420,63555,64080,64481,64513,64590,64727,65024"/>
7
8
  <verbose level="1"/>
8
9
  <debugging level="0"/>
9
- <taskbegin task="Ping Scan" time="1374389727"/>
10
- <taskend task="Ping Scan" time="1374389728" extrainfo="1 total hosts"/>
11
- <taskbegin task="Parallel DNS resolution of 1 host." time="1374389728"/>
12
- <taskend task="Parallel DNS resolution of 1 host." time="1374389728"/>
13
- <taskbegin task="SYN Stealth Scan" time="1374389728"/>
14
- <taskend task="SYN Stealth Scan" time="1374389730" extrainfo="1000 total ports"/>
15
- <taskbegin task="UDP Scan" time="1374389730"/>
16
- <taskprogress task="UDP Scan" time="1374389761" percent="4.56" remaining="649" etc="1374390410"/>
17
- <taskprogress task="UDP Scan" time="1374389791" percent="5.97" remaining="961" etc="1374390752"/>
18
- <taskprogress task="UDP Scan" time="1374389821" percent="9.30" remaining="888" etc="1374390708"/>
19
- <taskprogress task="UDP Scan" time="1374389890" percent="16.06" remaining="837" etc="1374390726"/>
20
- <taskprogress task="UDP Scan" time="1374389974" percent="23.72" remaining="785" etc="1374390759"/>
21
- <taskprogress task="UDP Scan" time="1374390028" percent="29.04" remaining="729" etc="1374390756"/>
22
- <taskprogress task="UDP Scan" time="1374390076" percent="34.01" remaining="672" etc="1374390747"/>
23
- <taskprogress task="UDP Scan" time="1374390124" percent="38.89" remaining="620" etc="1374390743"/>
24
- <taskprogress task="UDP Scan" time="1374390184" percent="44.55" remaining="566" etc="1374390749"/>
25
- <taskprogress task="UDP Scan" time="1374390232" percent="49.43" remaining="514" etc="1374390746"/>
26
- <taskprogress task="UDP Scan" time="1374390280" percent="54.31" remaining="463" etc="1374390743"/>
27
- <taskprogress task="UDP Scan" time="1374390337" percent="59.66" remaining="411" etc="1374390747"/>
28
- <taskprogress task="UDP Scan" time="1374390391" percent="64.80" remaining="360" etc="1374390750"/>
29
- <taskprogress task="UDP Scan" time="1374390445" percent="69.94" remaining="308" etc="1374390752"/>
30
- <taskprogress task="UDP Scan" time="1374390496" percent="75.21" remaining="253" etc="1374390748"/>
31
- <taskprogress task="UDP Scan" time="1374390550" percent="80.36" remaining="201" etc="1374390750"/>
32
- <taskprogress task="UDP Scan" time="1374390616" percent="85.81" remaining="147" etc="1374390763"/>
33
- <taskprogress task="UDP Scan" time="1374390667" percent="91.00" remaining="93" etc="1374390760"/>
34
- <taskprogress task="UDP Scan" time="1374390724" percent="96.10" remaining="41" etc="1374390764"/>
35
- <taskend task="UDP Scan" time="1374390781" extrainfo="1000 total ports"/>
36
- <taskbegin task="Service scan" time="1374390781"/>
37
- <taskprogress task="Service scan" time="1374390863" percent="26.32" remaining="230" etc="1374391093"/>
38
- <taskend task="Service scan" time="1374390863" extrainfo="19 services on 1 host"/>
39
- <taskbegin task="Traceroute" time="1374390867"/>
40
- <taskend task="Traceroute" time="1374390867"/>
41
- <taskbegin task="Parallel DNS resolution of 11 hosts." time="1374390867"/>
42
- <taskend task="Parallel DNS resolution of 11 hosts." time="1374390867"/>
43
- <taskbegin task="NSE" time="1374390867"/>
44
- <taskend task="NSE" time="1374390873"/>
45
- <host starttime="1374389727" endtime="1374390873"><status state="up" reason="reset"/>
46
- <address addr="74.207.244.221" addrtype="ipv4"/>
47
- <address addr="08:00:27:7F:62:DC" addrtype="mac" vendor="Cadmus Computer Systems"/ >
10
+ <taskbegin task="Ping Scan" time="1429302190"/>
11
+ <taskend task="Ping Scan" time="1429302190" extrainfo="1 total hosts"/>
12
+ <taskbegin task="Parallel DNS resolution of 1 host." time="1429302190"/>
13
+ <taskend task="Parallel DNS resolution of 1 host." time="1429302201"/>
14
+ <taskbegin task="SYN Stealth Scan" time="1429302201"/>
15
+ <taskend task="SYN Stealth Scan" time="1429302203" extrainfo="1000 total ports"/>
16
+ <taskbegin task="UDP Scan" time="1429302203"/>
17
+ <taskprogress task="UDP Scan" time="1429302234" percent="4.56" remaining="649" etc="1429302883"/>
18
+ <taskprogress task="UDP Scan" time="1429302264" percent="7.51" remaining="752" etc="1429303015"/>
19
+ <taskprogress task="UDP Scan" time="1429302300" percent="10.81" remaining="801" etc="1429303100"/>
20
+ <taskprogress task="UDP Scan" time="1429302330" percent="12.86" remaining="861" etc="1429303191"/>
21
+ <taskprogress task="UDP Scan" time="1429302369" percent="17.01" remaining="810" etc="1429303179"/>
22
+ <taskprogress task="UDP Scan" time="1429302420" percent="22.20" remaining="761" etc="1429303180"/>
23
+ <taskprogress task="UDP Scan" time="1429302477" percent="27.99" remaining="705" etc="1429303182"/>
24
+ <taskprogress task="UDP Scan" time="1429302558" percent="35.16" remaining="655" etc="1429303213"/>
25
+ <taskprogress task="UDP Scan" time="1429302618" percent="40.82" remaining="602" etc="1429303220"/>
26
+ <taskprogress task="UDP Scan" time="1429302669" percent="45.94" remaining="549" etc="1429303217"/>
27
+ <taskprogress task="UDP Scan" time="1429302720" percent="51.12" remaining="495" etc="1429303214"/>
28
+ <taskprogress task="UDP Scan" time="1429302777" percent="56.47" remaining="443" etc="1429303219"/>
29
+ <taskprogress task="UDP Scan" time="1429302843" percent="62.11" remaining="391" etc="1429303233"/>
30
+ <taskprogress task="UDP Scan" time="1429302903" percent="67.68" remaining="335" etc="1429303237"/>
31
+ <taskprogress task="UDP Scan" time="1429302951" percent="72.84" remaining="279" etc="1429303230"/>
32
+ <taskprogress task="UDP Scan" time="1429303017" percent="78.20" remaining="227" etc="1429303244"/>
33
+ <taskprogress task="UDP Scan" time="1429303068" percent="83.32" remaining="174" etc="1429303241"/>
34
+ <taskprogress task="UDP Scan" time="1429303116" percent="88.29" remaining="122" etc="1429303237"/>
35
+ <taskprogress task="UDP Scan" time="1429303173" percent="93.55" remaining="67" etc="1429303240"/>
36
+ <taskend task="UDP Scan" time="1429303259" extrainfo="1000 total ports"/>
37
+ <taskbegin task="Service scan" time="1429303259"/>
38
+ <taskprogress task="Service scan" time="1429303341" percent="30.00" remaining="192" etc="1429303532"/>
39
+ <taskend task="Service scan" time="1429303341" extrainfo="20 services on 1 host"/>
40
+ <taskbegin task="Traceroute" time="1429303345"/>
41
+ <taskend task="Traceroute" time="1429303348"/>
42
+ <taskbegin task="Parallel DNS resolution of 10 hosts." time="1429303348"/>
43
+ <taskend task="Parallel DNS resolution of 10 hosts." time="1429303362"/>
44
+ <taskbegin task="NSE" time="1429303362"/>
45
+ <taskend task="NSE" time="1429303392"/>
46
+ <host starttime="1429302190" endtime="1429303392"><status state="up" reason="reset" reason_ttl="54"/>
47
+ <address addr="45.33.32.156" addrtype="ipv4"/>
48
48
  <hostnames>
49
49
  <hostname name="scanme.nmap.org" type="user"/>
50
- <hostname name="scanme.nmap.org" type="PTR"/>
50
+ <hostname name="li982-156.members.linode.com" type="PTR"/>
51
51
  </hostnames>
52
- <ports><extraports state="closed" count="1910">
52
+ <ports><extraports state="closed" count="1909">
53
53
  <extrareasons reason="port-unreaches" count="984"/>
54
- <extrareasons reason="resets" count="926"/>
54
+ <extrareasons reason="resets" count="925"/>
55
55
  </extraports>
56
56
  <extraports state="filtered" count="71">
57
57
  <extrareasons reason="no-responses" count="71"/>
58
58
  </extraports>
59
- <port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="52"/><service name="ssh" product="OpenSSH" version="5.3p1 Debian 3ubuntu7" extrainfo="protocol 2.0" ostype="Linux" method="probed" conf="10"><cpe>cpe:/a:openbsd:openssh:5.3p1</cpe><cpe>cpe:/o:linux:kernel</cpe></service><script id="ssh-hostkey" output="1024 8d:60:f1:7c:ca:b7:3d:0a:d6:67:54:9d:69:d9:b9:dd (DSA)&#xa;2048 79:f8:09:ac:d4:e2:32:42:10:49:d3:bd:20:82:85:ec (RSA)"/></port>
60
- <port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="52"/><service name="http" product="Apache httpd" version="2.2.14" extrainfo="(Ubuntu)" method="probed" conf="10"><cpe>cpe:/a:apache:http_server:2.2.14</cpe></service><script id="http-methods" output="GET HEAD POST OPTIONS"/><script id="http-title" output="Go ahead and ScanMe!"/><script id="http-favicon" output="Unknown favicon MD5: 156515DA3C0F7DC6B2493BD5CE43F795"/></port>
61
- <port protocol="tcp" portid="9929"><state state="open" reason="syn-ack" reason_ttl="52"/><service name="nping-echo" product="Nping echo" method="probed" conf="10"/></port>
59
+ <port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="54"/><service name="ssh" extrainfo="protocol 2.0" servicefp="SF-Port22-TCP:V=6.45%I=7%D=4/17%Time=55316FE1%P=x86_64-redhat-linux-gnu%r(NULL,29,&quot;SSH-2\.0-OpenSSH_6\.6\.1p1\x20Ubuntu-2ubuntu2\r\n&quot;);" method="probed" conf="10"/><script id="ssh-hostkey" output="&#xa; 1024 ac:00:a0:1a:82:ff:cc:55:99:dc:67:2b:34:97:6b:75 (DSA)&#xa;ssh-dss AAAAB3NzaC1kc3MAAACBAOe8o59vFWZGaBmGPVeJBObEfi1AR8yEUYC/Ufkku3sKhGF7wM2m2ujIeZDK5vqeC0S5EN2xYo6FshCP4FQRYeTxD17nNO4PhwW65qAjDRRU0uHFfSAh5wk+vt4yQztOE++sTd1G9OBLzA8HO99qDmCAxb3zw+GQDEgPjzgyzGZ3AAAAFQCBmE1vROP8IaPkUmhM5xLFta/xHwAAAIEA3EwRfaeOPLL7TKDgGX67Lbkf9UtdlpCdC4doMjGgsznYMwWH6a7Lj3vi4/KmeZZdix6FMdFqq+2vrfT1DRqx0RS0XYdGxnkgS+2g333WYCrUkDCn6RPUWR/1TgGMPHCj7LWCa1ZwJwLWS2KX288Pa2gLOWuhZm2VYKSQx6NEDOIAAACBANxIfprSdBdbo4Ezrh6/X6HSvrhjtZ7MouStWaE714ByO5bS2coM9CyaCwYyrE5qzYiyIfb+1BG3O5nVdDuN95sQ/0bAdBKlkqLFvFqFjVbETF0ri3v97w6MpUawfF75ouDrQ4xdaUOLLEWTso6VFJcM6Jg9bDl0FA0uLZUSDEHL&#xa; 2048 20:3d:2d:44:62:2a:b0:5a:9d:b5:b3:05:14:c2:a6:b2 (RSA)&#xa;ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6afooTZ9mVUGFNEhkMoRR1Btzu64XXwElhCsHw/zVlIx/HXylNbb9+11dm2VgJQ21pxkWDs+L6+EbYyDnvRURTrMTgHL0xseB0EkNqexs9hYZSiqtMx4jtGNtHvsMxZnbxvVUk2dasWvtBkn8J5JagSbzWTQo4hjKMOI1SUlXtiKxAs2F8wiq2EdSuKw/KNk8GfIp1TA+8ccGeAtnsVptTJ4D/8MhAWsROkQzOowQvnBBz2/8ecEvoMScaf+kDfNQowK3gENtSSOqYw9JLOza6YJBPL/aYuQQ0nJ74Rr5vL44aNIlrGI9jJc2x0bV7BeNA5kVuXsmhyfWbbkB8yGd&#xa; 256 96:02:bb:5e:57:54:1c:4e:45:2f:56:4c:4a:24:b2:57 (ECDSA)&#xa;ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMD46g67x6yWNjjQJnXhiz/TskHrqQ0uPcOspFrIYW382uOGzmWDZCFV8FbFwQyH90u+j0Qr1SGNAxBZMhOQ8pc="><table>
60
+ <elem key="fingerprint">ac00a01a82ffcc5599dc672b34976b75</elem>
61
+ <elem key="key">QUFBQUIzTnphQzFrYzNNQUFBQ0JBT2U4bzU5dkZXWkdhQm1HUFZlSkJPYkVmaTFBUjh5RVVZQy9VZmtrdTNzS2hHRjd3TTJtMnVqSWVaREs1dnFlQzBTNUVOMnhZbzZGc2hDUDRGUVJZZVR4RDE3bk5PNFBod1c2NXFBakRSUlUwdUhGZlNBaDV3ayt2dDR5UXp0T0UrK3NUZDFHOU9CTHpBOEhPOTlxRG1DQXhiM3p3K0dRREVnUGp6Z3l6R1ozQUFBQUZRQ0JtRTF2Uk9QOElhUGtVbWhNNXhMRnRhL3hId0FBQUlFQTNFd1JmYWVPUExMN1RLRGdHWDY3TGJrZjlVdGRscENkQzRkb01qR2dzem5ZTXdXSDZhN0xqM3ZpNC9LbWVaWmRpeDZGTWRGcXErMnZyZlQxRFJxeDBSUzBYWWRHeG5rZ1MrMmczMzNXWUNyVWtEQ242UlBVV1IvMVRnR01QSENqN0xXQ2ExWndKd0xXUzJLWDI4OFBhMmdMT1d1aFptMlZZS1NReDZORURPSUFBQUNCQU54SWZwclNkQmRibzRFenJoNi9YNkhTdnJoanRaN01vdVN0V2FFNzE0QnlPNWJTMmNvTTlDeWFDd1l5ckU1cXpZaXlJZmIrMUJHM081blZkRHVOOTVzUS8wYkFkQktsa3FMRnZGcUZqVmJFVEYwcmkzdjk3dzZNcFVhd2ZGNzVvdURyUTR4ZGFVT0xMRVdUc282VkZKY002Smc5YkRsMEZBMHVMWlVTREVITA==</elem>
62
+ <elem key="type">ssh-dss</elem>
63
+ <elem key="bits">1024</elem>
64
+ </table>
65
+ <table>
66
+ <elem key="fingerprint">203d2d44622ab05a9db5b30514c2a6b2</elem>
67
+ <elem key="key">QUFBQUIzTnphQzF5YzJFQUFBQURBUUFCQUFBQkFRQzZhZm9vVFo5bVZVR0ZORWhrTW9SUjFCdHp1NjRYWHdFbGhDc0h3L3pWbEl4L0hYeWxOYmI5KzExZG0yVmdKUTIxcHhrV0RzK0w2K0ViWXlEbnZSVVJUck1UZ0hMMHhzZUIwRWtOcWV4czloWVpTaXF0TXg0anRHTnRIdnNNeFpuYnh2VlVrMmRhc1d2dEJrbjhKNUphZ1NieldUUW80aGpLTU9JMVNVbFh0aUt4QXMyRjh3aXEyRWRTdUt3L0tOazhHZklwMVRBKzhjY0dlQXRuc1ZwdFRKNEQvOE1oQVdzUk9rUXpPb3dRdm5CQnoyLzhlY0V2b01TY2FmK2tEZk5Rb3dLM2dFTnRTU09xWXc5SkxPemE2WUpCUEwvYVl1UVEwbko3NFJyNXZMNDRhTklsckdJOWpKYzJ4MGJWN0JlTkE1a1Z1WHNtaHlmV2Jia0I4eUdk</elem>
68
+ <elem key="type">ssh-rsa</elem>
69
+ <elem key="bits">2048</elem>
70
+ </table>
71
+ <table>
72
+ <elem key="fingerprint">9602bb5e57541c4e452f564c4a24b257</elem>
73
+ <elem key="key">QUFBQUUyVmpaSE5oTFhOb1lUSXRibWx6ZEhBeU5UWUFBQUFJYm1semRIQXlOVFlBQUFCQkJNRDQ2ZzY3eDZ5V05qalFKblhoaXovVHNrSHJxUTB1UGNPc3BGcklZVzM4MnVPR3ptV0RaQ0ZWOEZiRndReUg5MHUrajBRcjFTR05BeEJaTWhPUThwYz0=</elem>
74
+ <elem key="type">ecdsa-sha2-nistp256</elem>
75
+ <elem key="bits">256</elem>
76
+ </table>
77
+ </script><script id="ssh2-enum-algos" output="&#xa; kex_algorithms: (8)&#xa; curve25519-sha256@libssh.org&#xa; ecdh-sha2-nistp256&#xa; ecdh-sha2-nistp384&#xa; ecdh-sha2-nistp521&#xa; diffie-hellman-group-exchange-sha256&#xa; diffie-hellman-group-exchange-sha1&#xa; diffie-hellman-group14-sha1&#xa; diffie-hellman-group1-sha1&#xa; server_host_key_algorithms: (4)&#xa; ssh-rsa&#xa; ssh-dss&#xa; ecdsa-sha2-nistp256&#xa; ssh-ed25519&#xa; encryption_algorithms: (16)&#xa; aes128-ctr&#xa; aes192-ctr&#xa; aes256-ctr&#xa; arcfour256&#xa; arcfour128&#xa; aes128-gcm@openssh.com&#xa; aes256-gcm@openssh.com&#xa; chacha20-poly1305@openssh.com&#xa; aes128-cbc&#xa; 3des-cbc&#xa; blowfish-cbc&#xa; cast128-cbc&#xa; aes192-cbc&#xa; aes256-cbc&#xa; arcfour&#xa; rijndael-cbc@lysator.liu.se&#xa; mac_algorithms: (19)&#xa; hmac-md5-etm@openssh.com&#xa; hmac-sha1-etm@openssh.com&#xa; umac-64-etm@openssh.com&#xa; umac-128-etm@openssh.com&#xa; hmac-sha2-256-etm@openssh.com&#xa; hmac-sha2-512-etm@openssh.com&#xa; hmac-ripemd160-etm@openssh.com&#xa; hmac-sha1-96-etm@openssh.com&#xa; hmac-md5-96-etm@openssh.com&#xa; hmac-md5&#xa; hmac-sha1&#xa; umac-64@openssh.com&#xa; umac-128@openssh.com&#xa; hmac-sha2-256&#xa; hmac-sha2-512&#xa; hmac-ripemd160&#xa; hmac-ripemd160@openssh.com&#xa; hmac-sha1-96&#xa; hmac-md5-96&#xa; compression_algorithms: (2)&#xa; none&#xa; zlib@openssh.com"><table key="kex_algorithms">
78
+ <elem>curve25519-sha256@libssh.org</elem>
79
+ <elem>ecdh-sha2-nistp256</elem>
80
+ <elem>ecdh-sha2-nistp384</elem>
81
+ <elem>ecdh-sha2-nistp521</elem>
82
+ <elem>diffie-hellman-group-exchange-sha256</elem>
83
+ <elem>diffie-hellman-group-exchange-sha1</elem>
84
+ <elem>diffie-hellman-group14-sha1</elem>
85
+ <elem>diffie-hellman-group1-sha1</elem>
86
+ </table>
87
+ <table key="server_host_key_algorithms">
88
+ <elem>ssh-rsa</elem>
89
+ <elem>ssh-dss</elem>
90
+ <elem>ecdsa-sha2-nistp256</elem>
91
+ <elem>ssh-ed25519</elem>
92
+ </table>
93
+ <table key="encryption_algorithms">
94
+ <elem>aes128-ctr</elem>
95
+ <elem>aes192-ctr</elem>
96
+ <elem>aes256-ctr</elem>
97
+ <elem>arcfour256</elem>
98
+ <elem>arcfour128</elem>
99
+ <elem>aes128-gcm@openssh.com</elem>
100
+ <elem>aes256-gcm@openssh.com</elem>
101
+ <elem>chacha20-poly1305@openssh.com</elem>
102
+ <elem>aes128-cbc</elem>
103
+ <elem>3des-cbc</elem>
104
+ <elem>blowfish-cbc</elem>
105
+ <elem>cast128-cbc</elem>
106
+ <elem>aes192-cbc</elem>
107
+ <elem>aes256-cbc</elem>
108
+ <elem>arcfour</elem>
109
+ <elem>rijndael-cbc@lysator.liu.se</elem>
110
+ </table>
111
+ <table key="mac_algorithms">
112
+ <elem>hmac-md5-etm@openssh.com</elem>
113
+ <elem>hmac-sha1-etm@openssh.com</elem>
114
+ <elem>umac-64-etm@openssh.com</elem>
115
+ <elem>umac-128-etm@openssh.com</elem>
116
+ <elem>hmac-sha2-256-etm@openssh.com</elem>
117
+ <elem>hmac-sha2-512-etm@openssh.com</elem>
118
+ <elem>hmac-ripemd160-etm@openssh.com</elem>
119
+ <elem>hmac-sha1-96-etm@openssh.com</elem>
120
+ <elem>hmac-md5-96-etm@openssh.com</elem>
121
+ <elem>hmac-md5</elem>
122
+ <elem>hmac-sha1</elem>
123
+ <elem>umac-64@openssh.com</elem>
124
+ <elem>umac-128@openssh.com</elem>
125
+ <elem>hmac-sha2-256</elem>
126
+ <elem>hmac-sha2-512</elem>
127
+ <elem>hmac-ripemd160</elem>
128
+ <elem>hmac-ripemd160@openssh.com</elem>
129
+ <elem>hmac-sha1-96</elem>
130
+ <elem>hmac-md5-96</elem>
131
+ </table>
132
+ <table key="compression_algorithms">
133
+ <elem>none</elem>
134
+ <elem>zlib@openssh.com</elem>
135
+ </table>
136
+ </script></port>
137
+ <port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="54"/><service name="http" product="Apache httpd" version="2.4.7" extrainfo="(Ubuntu)" method="probed" conf="10"><cpe>cpe:/a:apache:http_server:2.4.7</cpe></service></port>
138
+ <port protocol="tcp" portid="9929"><state state="open" reason="syn-ack" reason_ttl="54"/><service name="nping-echo" product="Nping echo" method="probed" conf="10"/></port>
139
+ <port protocol="tcp" portid="31337"><state state="open" reason="syn-ack" reason_ttl="54"/><service name="ncat-chat" product="Ncat chat" extrainfo="users: nobody" tunnel="ssl" method="probed" conf="10"/></port>
62
140
  <port protocol="udp" portid="68"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="dhcpc" method="table" conf="3"/></port>
63
141
  <port protocol="udp" portid="113"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="auth" method="table" conf="3"/></port>
64
- <port protocol="udp" portid="123"><state state="open" reason="udp-response" reason_ttl="52"/><service name="ntp" product="NTP" version="v4" method="probed" conf="10"/><script id="ntp-info" output="&#xa; receive time stamp: Sun Jul 21 00:13:03 2013&#xa;"/></port>
142
+ <port protocol="udp" portid="123"><state state="open" reason="udp-response" reason_ttl="54"/><service name="ntp" product="NTP" version="v4" method="probed" conf="10"/></port>
65
143
  <port protocol="udp" portid="135"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="msrpc" method="table" conf="3"/></port>
66
144
  <port protocol="udp" portid="136"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="profile" method="table" conf="3"/></port>
67
145
  <port protocol="udp" portid="137"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="netbios-ns" method="table" conf="3"/></port>
68
146
  <port protocol="udp" portid="138"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="netbios-dgm" method="table" conf="3"/></port>
69
147
  <port protocol="udp" portid="139"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="netbios-ssn" method="table" conf="3"/></port>
70
- <port protocol="udp" portid="161"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="snmp" method="table" conf="3"/><script id="snmp-win32-shares" output="TIMEOUT"/></port>
148
+ <port protocol="udp" portid="161"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="snmp" method="table" conf="3"/></port>
71
149
  <port protocol="udp" portid="445"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="microsoft-ds" method="table" conf="3"/></port>
72
150
  <port protocol="udp" portid="520"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="route" method="table" conf="3"/></port>
73
151
  <port protocol="udp" portid="1214"><state state="open|filtered" reason="no-response" reason_ttl="0"/><service name="fasttrack" method="table" conf="3"/></port>
@@ -79,60 +157,60 @@
79
157
  <os><portused state="open" proto="tcp" portid="22"/>
80
158
  <portused state="closed" proto="tcp" portid="1"/>
81
159
  <portused state="closed" proto="udp" portid="2"/>
82
- <osmatch name="Linux 2.6.39" accuracy="97" line="39326">
83
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="97"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
160
+ <osmatch name="Linux 3.0" accuracy="94" line="48063">
161
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="94"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
84
162
  </osmatch>
85
- <osmatch name="Linux 2.6.32 - 2.6.39" accuracy="96" line="38051">
86
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="96"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
163
+ <osmatch name="Linux 2.6.26 - 2.6.35" accuracy="94" line="41604">
164
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="94"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
87
165
  </osmatch>
88
- <osmatch name="Linux 2.6.22 - 2.6.36" accuracy="96" line="34886">
89
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="96"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
166
+ <osmatch name="Linux 3.0 - 3.9" accuracy="94" line="48215">
167
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="94"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
90
168
  </osmatch>
91
- <osmatch name="Linux 2.6.37" accuracy="96" line="38761">
92
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="96"><cpe>cpe:/o:linux:kernel:2.6.37</cpe></osclass>
169
+ <osmatch name="Linux 2.6.23 - 2.6.38" accuracy="93" line="40653">
170
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
93
171
  </osmatch>
94
- <osmatch name="Linux 3.0 - 3.1" accuracy="95" line="41380">
95
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="95"><cpe>cpe:/o:linux:kernel:3</cpe></osclass>
172
+ <osmatch name="Linux 2.6.32" accuracy="92" line="43239">
173
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
96
174
  </osmatch>
97
- <osmatch name="Linux 2.6.38 - 3.0" accuracy="94" line="39203">
98
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="94"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
99
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="94"><cpe>cpe:/o:linux:kernel:3</cpe></osclass>
175
+ <osmatch name="Netgear DG834G WAP or Western Digital WD TV media player" accuracy="91" line="63653">
176
+ <osclass type="WAP" vendor="Netgear" osfamily="embedded" accuracy="91"><cpe>cpe:/h:netgear:dg834g</cpe></osclass>
177
+ <osclass type="media device" vendor="Western Digital" osfamily="embedded" accuracy="91"><cpe>cpe:/o:westerndigital:wd_tv</cpe></osclass>
100
178
  </osmatch>
101
- <osmatch name="HP P2000 G3 NAS device" accuracy="93" line="22329">
102
- <osclass type="storage-misc" vendor="HP" osfamily="embedded" accuracy="93"/>
179
+ <osmatch name="Linux 2.6.32 - 3.9" accuracy="91" line="44376">
180
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="91"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
181
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="91"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
103
182
  </osmatch>
104
- <osmatch name="Linux 2.6.23 - 2.6.38" accuracy="93" line="35090">
105
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="93"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
183
+ <osmatch name="Linux 2.6.8 - 2.6.27" accuracy="91" line="46074">
184
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="91"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
106
185
  </osmatch>
107
- <osmatch name="Linux 2.6.31 - 2.6.35" accuracy="93" line="37093">
108
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="93"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
186
+ <osmatch name="HP P2000 G3 NAS device" accuracy="91" line="26456">
187
+ <osclass type="storage-misc" vendor="HP" osfamily="embedded" accuracy="91"><cpe>cpe:/h:hp:p2000_g3</cpe></osclass>
109
188
  </osmatch>
110
- <osmatch name="Linux 2.6.9 - 2.6.27" accuracy="93" line="40224">
111
- <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="93"><cpe>cpe:/o:linux:kernel:2.6</cpe></osclass>
189
+ <osmatch name="Linux 2.6.22" accuracy="90" line="39837">
190
+ <osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="90"><cpe>cpe:/o:linux:linux_kernel:2.6.22</cpe></osclass>
112
191
  </osmatch>
113
192
  </os>
114
- <uptime seconds="920430" lastboot="Wed Jul 10 08:34:03 2013"/>
193
+ <uptime seconds="142510" lastboot="Wed Apr 15 22:08:02 2015"/>
115
194
  <distance value="11"/>
116
- <tcpsequence index="205" difficulty="Good luck!" values="411416F9,42069043,4155B0F2,421A04CB,41ACAD47,41D6FD50"/>
195
+ <tcpsequence index="262" difficulty="Good luck!" values="776F67F2,981736FF,E8453434,9D625E42,19C5B0A7,271FC200"/>
117
196
  <ipidsequence class="All zeros" values="0,0,0,0,0,0"/>
118
- <tcptssequence class="1000HZ" values="36DC8B96,36DC8BFB,36DC8C5C,36DC8CC1,36DC8D2A,36DC8D8C"/>
197
+ <tcptssequence class="other" values="283723A,2837256,2837275,2837296,28372B2,28372CE"/>
119
198
  <trace port="80" proto="tcp">
120
- <hop ttl="1" ipaddr="10.0.0.1" rtt="3.38"/>
121
- <hop ttl="2" ipaddr="73.94.140.1" rtt="16.76"/>
122
- <hop ttl="3" ipaddr="68.85.148.17" rtt="17.66" host="te-0-0-0-2-ur03.troutdale.or.bverton.comcast.net"/>
123
- <hop ttl="4" ipaddr="68.87.216.13" rtt="18.16" host="ae-4-0-ar03.beaverton.or.bverton.comcast.net"/>
124
- <hop ttl="5" ipaddr="68.85.243.253" rtt="17.51" host="ae-4-0-ar03.troutdale.or.bverton.comcast.net"/>
125
- <hop ttl="6" ipaddr="68.86.91.197" rtt="24.30" host="pos-2-4-0-0-cr01.seattle.wa.ibone.comcast.net"/>
126
- <hop ttl="7" ipaddr="208.178.58.85" rtt="20.78"/>
127
- <hop ttl="8" ipaddr="64.214.174.246" rtt="39.95" host="Hurrican-Electric-LLC.Port-channel100.ar3.SJC2.gblx.net"/>
128
- <hop ttl="9" ipaddr="184.105.222.13" rtt="38.44" host="10gigabitethernet3-2.core3.fmt2.he.net"/>
129
- <hop ttl="10" ipaddr="65.49.10.218" rtt="40.50" host="linode-llc.10gigabitethernet7-6.core3.fmt2.he.net"/>
130
- <hop ttl="11" ipaddr="74.207.244.221" rtt="37.59" host="scanme.nmap.org"/>
199
+ <hop ttl="1" ipaddr="10.0.0.1" rtt="0.67"/>
200
+ <hop ttl="3" ipaddr="68.87.218.65" rtt="21.22" host="xe-3-1-2-0-sur04.troutdale.or.bverton.comcast.net"/>
201
+ <hop ttl="4" ipaddr="68.87.216.253" rtt="19.93" host="et-5-0-0-0-0-ar03.troutdale.or.bverton.comcast.net"/>
202
+ <hop ttl="5" ipaddr="68.86.93.25" rtt="21.56" host="he-0-4-0-0-11-cr02.seattle.wa.ibone.comcast.net"/>
203
+ <hop ttl="6" ipaddr="68.86.85.62" rtt="18.52" host="he-0-10-0-1-pe04.seattle.wa.ibone.comcast.net"/>
204
+ <hop ttl="7" ipaddr="65.19.191.137" rtt="29.30" host="10ge1-20.core1.sea1.he.net"/>
205
+ <hop ttl="8" ipaddr="72.52.92.157" rtt="33.93" host="10ge13-4.core1.sjc2.he.net"/>
206
+ <hop ttl="9" ipaddr="184.105.222.13" rtt="34.66" host="10ge3-2.core3.fmt2.he.net"/>
207
+ <hop ttl="10" ipaddr="64.71.132.138" rtt="35.65" host="router4-fmt.linode.com"/>
208
+ <hop ttl="11" ipaddr="45.33.32.156" rtt="35.92" host="li982-156.members.linode.com"/>
131
209
  </trace>
132
- <times srtt="34309" rttvar="2434" to="100000"/>
210
+ <times srtt="38224" rttvar="4208" to="100000"/>
133
211
  </host>
134
- <taskbegin task="NSE" time="1374390873"/>
135
- <taskend task="NSE" time="1374390873"/>
136
- <runstats><finished time="1374390873" timestr="Sun Jul 21 00:14:33 2013" elapsed="1145.71" summary="Nmap done at Sun Jul 21 00:14:33 2013; 1 IP address (1 host up) scanned in 1145.71 seconds" exit="success"/><hosts up="1" down="0" total="1"/>
212
+ <taskbegin task="NSE" time="1429303392"/>
213
+ <taskend task="NSE" time="1429303392"/>
214
+ <runstats><finished time="1429303392" timestr="Fri Apr 17 13:43:12 2015" elapsed="1202.42" summary="Nmap done at Fri Apr 17 13:43:12 2015; 1 IP address (1 host up) scanned in 1202.42 seconds" exit="success"/><hosts up="1" down="0" total="1"/>
137
215
  </runstats>
138
216
  </nmaprun>