ruby-nmap 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +8 -7
- data/ChangeLog.md +19 -1
- data/README.md +3 -0
- data/Rakefile +1 -1
- data/gemspec.yml +2 -0
- data/lib/nmap/address.rb +17 -1
- data/lib/nmap/cpe.rb +44 -1
- data/lib/nmap/host.rb +24 -10
- data/lib/nmap/host_script.rb +18 -0
- data/lib/nmap/port.rb +3 -20
- data/lib/nmap/postscript.rb +16 -0
- data/lib/nmap/prescript.rb +16 -0
- data/lib/nmap/scripts.rb +71 -0
- data/lib/nmap/service.rb +13 -1
- data/lib/nmap/task.rb +4 -2
- data/lib/nmap/traceroute.rb +8 -4
- data/lib/nmap/version.rb +1 -1
- data/lib/nmap/xml.rb +30 -0
- data/spec/host_script_spec.rb +6 -0
- data/spec/host_spec.rb +14 -9
- data/spec/local_scan.xml +35 -0
- data/spec/os_class_spec.rb +1 -1
- data/spec/os_spec.rb +1 -1
- data/spec/port_spec.rb +3 -0
- data/spec/postscript_spec.rb +6 -0
- data/spec/prescript_spec.rb +6 -0
- data/spec/scan.xml +166 -88
- data/spec/scripts_examples.rb +25 -0
- data/spec/service_spec.rb +16 -6
- data/spec/spec_helper.rb +2 -1
- data/spec/tcp_ts_sequence_spec.rb +1 -1
- data/spec/xml_spec.rb +14 -2
- metadata +29 -19
- data/lib/nmap/cpe/cpe.rb +0 -45
data/lib/nmap/traceroute.rb
CHANGED
@@ -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']
|
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']
|
42
|
+
@protocol ||= if @node['proto']
|
43
|
+
@node['proto'].to_sym
|
44
|
+
end
|
41
45
|
end
|
42
46
|
|
43
47
|
#
|
data/lib/nmap/version.rb
CHANGED
data/lib/nmap/xml.rb
CHANGED
@@ -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
|
#
|
data/spec/host_spec.rb
CHANGED
@@ -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(
|
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(
|
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(
|
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(
|
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(
|
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
|
-
|
207
|
-
|
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('
|
217
|
+
expect(subject.vendor).to eq('LG Electronics')
|
213
218
|
end
|
214
219
|
end
|
215
220
|
end
|
data/spec/local_scan.xml
ADDED
@@ -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 --script ssh2-enum-algos -oX spec/local_scan.xml 10.0.0.2 -->
|
5
|
+
<nmaprun scanner="nmap" args="nmap -v -sS -A -O --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>
|
data/spec/os_class_spec.rb
CHANGED
data/spec/os_spec.rb
CHANGED
data/spec/port_spec.rb
CHANGED
@@ -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
|
data/spec/scan.xml
CHANGED
@@ -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.
|
4
|
-
<nmaprun scanner="nmap" args="nmap -v -sS -sU -A -O -oX spec/scan.xml scanme.nmap.org" start="
|
4
|
+
<!-- Nmap 6.45 scan initiated Fri Apr 17 13:23:10 2015 as: nmap -v -sS -sU -A -O --script ssh2-enum-algos,ssh-hostkey -oX spec/scan.xml scanme.nmap.org -->
|
5
|
+
<nmaprun scanner="nmap" args="nmap -v -sS -sU -A -O --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="
|
10
|
-
<taskend task="Ping Scan" time="
|
11
|
-
<taskbegin task="Parallel DNS resolution of 1 host." time="
|
12
|
-
<taskend task="Parallel DNS resolution of 1 host." time="
|
13
|
-
<taskbegin task="SYN Stealth Scan" time="
|
14
|
-
<taskend task="SYN Stealth Scan" time="
|
15
|
-
<taskbegin task="UDP Scan" time="
|
16
|
-
<taskprogress task="UDP Scan" time="
|
17
|
-
<taskprogress task="UDP Scan" time="
|
18
|
-
<taskprogress task="UDP Scan" time="
|
19
|
-
<taskprogress task="UDP Scan" time="
|
20
|
-
<taskprogress task="UDP Scan" time="
|
21
|
-
<taskprogress task="UDP Scan" time="
|
22
|
-
<taskprogress task="UDP Scan" time="
|
23
|
-
<taskprogress task="UDP Scan" time="
|
24
|
-
<taskprogress task="UDP Scan" time="
|
25
|
-
<taskprogress task="UDP Scan" time="
|
26
|
-
<taskprogress task="UDP Scan" time="
|
27
|
-
<taskprogress task="UDP Scan" time="
|
28
|
-
<taskprogress task="UDP Scan" time="
|
29
|
-
<taskprogress task="UDP Scan" time="
|
30
|
-
<taskprogress task="UDP Scan" time="
|
31
|
-
<taskprogress task="UDP Scan" time="
|
32
|
-
<taskprogress task="UDP Scan" time="
|
33
|
-
<taskprogress task="UDP Scan" time="
|
34
|
-
<taskprogress task="UDP Scan" time="
|
35
|
-
<taskend task="UDP Scan" time="
|
36
|
-
<taskbegin task="Service scan" time="
|
37
|
-
<taskprogress task="Service scan" time="
|
38
|
-
<taskend task="Service scan" time="
|
39
|
-
<taskbegin task="Traceroute" time="
|
40
|
-
<taskend task="Traceroute" time="
|
41
|
-
<taskbegin task="Parallel DNS resolution of
|
42
|
-
<taskend task="Parallel DNS resolution of
|
43
|
-
<taskbegin task="NSE" time="
|
44
|
-
<taskend task="NSE" time="
|
45
|
-
<host starttime="
|
46
|
-
<address addr="
|
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="
|
50
|
+
<hostname name="li982-156.members.linode.com" type="PTR"/>
|
51
51
|
</hostnames>
|
52
|
-
<ports><extraports state="closed" count="
|
52
|
+
<ports><extraports state="closed" count="1909">
|
53
53
|
<extrareasons reason="port-unreaches" count="984"/>
|
54
|
-
<extrareasons reason="resets" count="
|
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="
|
60
|
-
<
|
61
|
-
<
|
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,"SSH-2\.0-OpenSSH_6\.6\.1p1\x20Ubuntu-2ubuntu2\r\n");" method="probed" conf="10"/><script id="ssh-hostkey" output="
 1024 ac:00:a0:1a:82:ff:cc:55:99:dc:67:2b:34:97:6b:75 (DSA)
ssh-dss AAAAB3NzaC1kc3MAAACBAOe8o59vFWZGaBmGPVeJBObEfi1AR8yEUYC/Ufkku3sKhGF7wM2m2ujIeZDK5vqeC0S5EN2xYo6FshCP4FQRYeTxD17nNO4PhwW65qAjDRRU0uHFfSAh5wk+vt4yQztOE++sTd1G9OBLzA8HO99qDmCAxb3zw+GQDEgPjzgyzGZ3AAAAFQCBmE1vROP8IaPkUmhM5xLFta/xHwAAAIEA3EwRfaeOPLL7TKDgGX67Lbkf9UtdlpCdC4doMjGgsznYMwWH6a7Lj3vi4/KmeZZdix6FMdFqq+2vrfT1DRqx0RS0XYdGxnkgS+2g333WYCrUkDCn6RPUWR/1TgGMPHCj7LWCa1ZwJwLWS2KX288Pa2gLOWuhZm2VYKSQx6NEDOIAAACBANxIfprSdBdbo4Ezrh6/X6HSvrhjtZ7MouStWaE714ByO5bS2coM9CyaCwYyrE5qzYiyIfb+1BG3O5nVdDuN95sQ/0bAdBKlkqLFvFqFjVbETF0ri3v97w6MpUawfF75ouDrQ4xdaUOLLEWTso6VFJcM6Jg9bDl0FA0uLZUSDEHL
 2048 20:3d:2d:44:62:2a:b0:5a:9d:b5:b3:05:14:c2:a6:b2 (RSA)
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6afooTZ9mVUGFNEhkMoRR1Btzu64XXwElhCsHw/zVlIx/HXylNbb9+11dm2VgJQ21pxkWDs+L6+EbYyDnvRURTrMTgHL0xseB0EkNqexs9hYZSiqtMx4jtGNtHvsMxZnbxvVUk2dasWvtBkn8J5JagSbzWTQo4hjKMOI1SUlXtiKxAs2F8wiq2EdSuKw/KNk8GfIp1TA+8ccGeAtnsVptTJ4D/8MhAWsROkQzOowQvnBBz2/8ecEvoMScaf+kDfNQowK3gENtSSOqYw9JLOza6YJBPL/aYuQQ0nJ74Rr5vL44aNIlrGI9jJc2x0bV7BeNA5kVuXsmhyfWbbkB8yGd
 256 96:02:bb:5e:57:54:1c:4e:45:2f:56:4c:4a:24:b2:57 (ECDSA)
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="
 kex_algorithms: (8)
 curve25519-sha256@libssh.org
 ecdh-sha2-nistp256
 ecdh-sha2-nistp384
 ecdh-sha2-nistp521
 diffie-hellman-group-exchange-sha256
 diffie-hellman-group-exchange-sha1
 diffie-hellman-group14-sha1
 diffie-hellman-group1-sha1
 server_host_key_algorithms: (4)
 ssh-rsa
 ssh-dss
 ecdsa-sha2-nistp256
 ssh-ed25519
 encryption_algorithms: (16)
 aes128-ctr
 aes192-ctr
 aes256-ctr
 arcfour256
 arcfour128
 aes128-gcm@openssh.com
 aes256-gcm@openssh.com
 chacha20-poly1305@openssh.com
 aes128-cbc
 3des-cbc
 blowfish-cbc
 cast128-cbc
 aes192-cbc
 aes256-cbc
 arcfour
 rijndael-cbc@lysator.liu.se
 mac_algorithms: (19)
 hmac-md5-etm@openssh.com
 hmac-sha1-etm@openssh.com
 umac-64-etm@openssh.com
 umac-128-etm@openssh.com
 hmac-sha2-256-etm@openssh.com
 hmac-sha2-512-etm@openssh.com
 hmac-ripemd160-etm@openssh.com
 hmac-sha1-96-etm@openssh.com
 hmac-md5-96-etm@openssh.com
 hmac-md5
 hmac-sha1
 umac-64@openssh.com
 umac-128@openssh.com
 hmac-sha2-256
 hmac-sha2-512
 hmac-ripemd160
 hmac-ripemd160@openssh.com
 hmac-sha1-96
 hmac-md5-96
 compression_algorithms: (2)
 none
 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="
|
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"
|
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
|
83
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="
|
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.
|
86
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="
|
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
|
89
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="
|
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.
|
92
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="
|
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
|
95
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="
|
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="
|
98
|
-
<osclass type="
|
99
|
-
<osclass type="
|
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="
|
102
|
-
<osclass type="
|
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.
|
105
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="
|
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="
|
108
|
-
<osclass type="
|
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.
|
111
|
-
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="
|
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="
|
193
|
+
<uptime seconds="142510" lastboot="Wed Apr 15 22:08:02 2015"/>
|
115
194
|
<distance value="11"/>
|
116
|
-
<tcpsequence index="
|
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="
|
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="
|
121
|
-
<hop ttl="
|
122
|
-
<hop ttl="
|
123
|
-
<hop ttl="
|
124
|
-
<hop ttl="
|
125
|
-
<hop ttl="
|
126
|
-
<hop ttl="
|
127
|
-
<hop ttl="
|
128
|
-
<hop ttl="
|
129
|
-
<hop ttl="
|
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="
|
210
|
+
<times srtt="38224" rttvar="4208" to="100000"/>
|
133
211
|
</host>
|
134
|
-
<taskbegin task="NSE" time="
|
135
|
-
<taskend task="NSE" time="
|
136
|
-
<runstats><finished time="
|
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>
|