ruby-nmap 0.6.0 → 0.7.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 +7 -0
- data/.gitignore +3 -0
- data/.travis.yml +13 -0
- data/ChangeLog.md +24 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +1 -1
- data/README.md +11 -9
- data/Rakefile +20 -24
- data/gemspec.yml +1 -3
- data/lib/nmap/cpe.rb +2 -0
- data/lib/nmap/cpe/cpe.rb +45 -0
- data/lib/nmap/cpe/url.rb +78 -0
- data/lib/nmap/hop.rb +20 -0
- data/lib/nmap/host.rb +69 -15
- data/lib/nmap/hostname.rb +20 -0
- data/lib/nmap/os.rb +2 -17
- data/lib/nmap/os_class.rb +65 -1
- data/lib/nmap/port.rb +10 -0
- data/lib/nmap/run_stat.rb +20 -0
- data/lib/nmap/scan_task.rb +4 -19
- data/lib/nmap/sequence.rb +6 -18
- data/lib/nmap/service.rb +76 -0
- data/lib/nmap/tcp_sequence.rb +1 -1
- data/lib/nmap/traceroute.rb +67 -0
- data/lib/nmap/uptime.rb +20 -0
- data/lib/nmap/version.rb +1 -1
- data/lib/nmap/xml.rb +134 -17
- data/spec/address_spec.rb +14 -0
- data/spec/cpe/url_spec.rb +99 -0
- data/spec/cpe_examples.rb +11 -0
- data/spec/hop_spec.rb +14 -0
- data/spec/host_spec.rb +138 -55
- data/spec/hostname_spec.rb +15 -0
- data/spec/ip_id_sequence_spec.rb +24 -10
- data/spec/os_class_spec.rb +31 -0
- data/spec/os_match_spec.rb +15 -0
- data/spec/os_spec.rb +23 -20
- data/spec/port_spec.rb +14 -15
- data/spec/run_stat_spec.rb +21 -0
- data/spec/scan.xml +137 -0
- data/spec/scan_spec.rb +28 -0
- data/spec/scan_task_spec.rb +35 -0
- data/spec/scanner_spec.rb +24 -0
- data/spec/scripts_examples.rb +10 -0
- data/spec/sequence_examples.rb +10 -0
- data/spec/service_spec.rb +55 -18
- data/spec/spec_helper.rb +30 -3
- data/spec/status_spec.rb +15 -0
- data/spec/tcp_sequence_spec.rb +32 -19
- data/spec/tcp_ts_sequence_spec.rb +24 -10
- data/spec/traceroute_spec.rb +31 -0
- data/spec/uptime_spec.rb +15 -0
- data/spec/xml_spec.rb +172 -31
- metadata +50 -54
- data/.gemtest +0 -0
- data/spec/helpers/nse.xml +0 -94
- data/spec/helpers/scan.xml +0 -241
- data/spec/helpers/xml.rb +0 -5
metadata
CHANGED
@@ -1,20 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-nmap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.7.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Postmodern
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-05-10 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: nokogiri
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
@@ -22,7 +20,6 @@ dependencies:
|
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
25
|
- !ruby/object:Gem::Version
|
@@ -30,7 +27,6 @@ dependencies:
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rprogram
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - ~>
|
36
32
|
- !ruby/object:Gem::Version
|
@@ -38,59 +34,24 @@ dependencies:
|
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - ~>
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0.3'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
42
|
+
name: bundler
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
45
|
- - ~>
|
52
46
|
- !ruby/object:Gem::Version
|
53
|
-
version: '0
|
47
|
+
version: '1.0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
52
|
- - ~>
|
60
53
|
- !ruby/object:Gem::Version
|
61
|
-
version: '0
|
62
|
-
- !ruby/object:Gem::Dependency
|
63
|
-
name: rspec
|
64
|
-
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
|
-
requirements:
|
67
|
-
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '2.4'
|
70
|
-
type: :development
|
71
|
-
prerelease: false
|
72
|
-
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
|
-
requirements:
|
75
|
-
- - ~>
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '2.4'
|
78
|
-
- !ruby/object:Gem::Dependency
|
79
|
-
name: yard
|
80
|
-
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
|
-
requirements:
|
83
|
-
- - ~>
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
version: '0.7'
|
86
|
-
type: :development
|
87
|
-
prerelease: false
|
88
|
-
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
|
-
requirements:
|
91
|
-
- - ~>
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: '0.7'
|
54
|
+
version: '1.0'
|
94
55
|
description: A Ruby interface to Nmap, the exploration tool and security / port scanner.
|
95
56
|
email: postmodern.mod3@gmail.com
|
96
57
|
executables: []
|
@@ -101,24 +62,31 @@ extra_rdoc_files:
|
|
101
62
|
- README.md
|
102
63
|
files:
|
103
64
|
- .document
|
104
|
-
- .gemtest
|
105
65
|
- .gitignore
|
106
66
|
- .rspec
|
67
|
+
- .travis.yml
|
107
68
|
- .yardopts
|
108
69
|
- ChangeLog.md
|
70
|
+
- Gemfile
|
109
71
|
- LICENSE.txt
|
110
72
|
- README.md
|
111
73
|
- Rakefile
|
112
74
|
- gemspec.yml
|
113
75
|
- lib/nmap.rb
|
114
76
|
- lib/nmap/address.rb
|
77
|
+
- lib/nmap/cpe.rb
|
78
|
+
- lib/nmap/cpe/cpe.rb
|
79
|
+
- lib/nmap/cpe/url.rb
|
80
|
+
- lib/nmap/hop.rb
|
115
81
|
- lib/nmap/host.rb
|
82
|
+
- lib/nmap/hostname.rb
|
116
83
|
- lib/nmap/ip_id_sequence.rb
|
117
84
|
- lib/nmap/os.rb
|
118
85
|
- lib/nmap/os_class.rb
|
119
86
|
- lib/nmap/os_match.rb
|
120
87
|
- lib/nmap/port.rb
|
121
88
|
- lib/nmap/program.rb
|
89
|
+
- lib/nmap/run_stat.rb
|
122
90
|
- lib/nmap/scan.rb
|
123
91
|
- lib/nmap/scan_task.rb
|
124
92
|
- lib/nmap/scanner.rb
|
@@ -128,57 +96,85 @@ files:
|
|
128
96
|
- lib/nmap/task.rb
|
129
97
|
- lib/nmap/tcp_sequence.rb
|
130
98
|
- lib/nmap/tcp_ts_sequence.rb
|
99
|
+
- lib/nmap/traceroute.rb
|
100
|
+
- lib/nmap/uptime.rb
|
131
101
|
- lib/nmap/version.rb
|
132
102
|
- lib/nmap/xml.rb
|
133
103
|
- ruby-nmap.gemspec
|
134
|
-
- spec/
|
135
|
-
- spec/
|
136
|
-
- spec/
|
104
|
+
- spec/address_spec.rb
|
105
|
+
- spec/cpe/url_spec.rb
|
106
|
+
- spec/cpe_examples.rb
|
107
|
+
- spec/hop_spec.rb
|
137
108
|
- spec/host_spec.rb
|
109
|
+
- spec/hostname_spec.rb
|
138
110
|
- spec/ip_id_sequence_spec.rb
|
139
111
|
- spec/nmap_spec.rb
|
112
|
+
- spec/os_class_spec.rb
|
113
|
+
- spec/os_match_spec.rb
|
140
114
|
- spec/os_spec.rb
|
141
115
|
- spec/port_spec.rb
|
116
|
+
- spec/run_stat_spec.rb
|
117
|
+
- spec/scan.xml
|
118
|
+
- spec/scan_spec.rb
|
119
|
+
- spec/scan_task_spec.rb
|
120
|
+
- spec/scanner_spec.rb
|
121
|
+
- spec/scripts_examples.rb
|
122
|
+
- spec/sequence_examples.rb
|
142
123
|
- spec/service_spec.rb
|
143
124
|
- spec/spec_helper.rb
|
125
|
+
- spec/status_spec.rb
|
144
126
|
- spec/task_spec.rb
|
145
127
|
- spec/tcp_sequence_spec.rb
|
146
128
|
- spec/tcp_ts_sequence_spec.rb
|
129
|
+
- spec/traceroute_spec.rb
|
130
|
+
- spec/uptime_spec.rb
|
147
131
|
- spec/xml_spec.rb
|
148
132
|
homepage: https://github.com/sophsec/ruby-nmap#readme
|
149
133
|
licenses:
|
150
134
|
- MIT
|
135
|
+
metadata: {}
|
151
136
|
post_install_message:
|
152
137
|
rdoc_options: []
|
153
138
|
require_paths:
|
154
139
|
- lib
|
155
140
|
required_ruby_version: !ruby/object:Gem::Requirement
|
156
|
-
none: false
|
157
141
|
requirements:
|
158
|
-
- -
|
142
|
+
- - '>='
|
159
143
|
- !ruby/object:Gem::Version
|
160
144
|
version: '0'
|
161
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
-
none: false
|
163
146
|
requirements:
|
164
|
-
- -
|
147
|
+
- - '>='
|
165
148
|
- !ruby/object:Gem::Version
|
166
149
|
version: '0'
|
167
150
|
requirements:
|
168
151
|
- nmap >= 5.00
|
169
152
|
rubyforge_project:
|
170
|
-
rubygems_version:
|
153
|
+
rubygems_version: 2.0.14
|
171
154
|
signing_key:
|
172
|
-
specification_version:
|
155
|
+
specification_version: 4
|
173
156
|
summary: A Ruby interface to Nmap.
|
174
157
|
test_files:
|
158
|
+
- spec/address_spec.rb
|
159
|
+
- spec/cpe/url_spec.rb
|
160
|
+
- spec/hop_spec.rb
|
175
161
|
- spec/host_spec.rb
|
162
|
+
- spec/hostname_spec.rb
|
176
163
|
- spec/ip_id_sequence_spec.rb
|
177
164
|
- spec/nmap_spec.rb
|
165
|
+
- spec/os_class_spec.rb
|
166
|
+
- spec/os_match_spec.rb
|
178
167
|
- spec/os_spec.rb
|
179
168
|
- spec/port_spec.rb
|
169
|
+
- spec/run_stat_spec.rb
|
170
|
+
- spec/scan_spec.rb
|
171
|
+
- spec/scan_task_spec.rb
|
172
|
+
- spec/scanner_spec.rb
|
180
173
|
- spec/service_spec.rb
|
174
|
+
- spec/status_spec.rb
|
181
175
|
- spec/task_spec.rb
|
182
176
|
- spec/tcp_sequence_spec.rb
|
183
177
|
- spec/tcp_ts_sequence_spec.rb
|
178
|
+
- spec/traceroute_spec.rb
|
179
|
+
- spec/uptime_spec.rb
|
184
180
|
- spec/xml_spec.rb
|
data/.gemtest
DELETED
File without changes
|
data/spec/helpers/nse.xml
DELETED
@@ -1,94 +0,0 @@
|
|
1
|
-
<?xml version="1.0" ?>
|
2
|
-
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
3
|
-
<!-- Nmap 5.21 scan initiated Mon Nov 8 18:37:05 2010 as: nmap -sV -sC --script=all -vv -oX nse.xml 173.255.192.6 -->
|
4
|
-
<nmaprun scanner="nmap" args="nmap -sV -sC --script=all -vv -oX nse.xml 173.255.192.6" start="1289270225" startstr="Mon Nov 8 18:37:05 2010" version="5.21" xmloutputversion="1.03">
|
5
|
-
<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,3050,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,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
|
-
<verbose level="2" />
|
7
|
-
<debugging level="0" />
|
8
|
-
<taskbegin task="Ping Scan" time="1289270225" />
|
9
|
-
<taskend task="Ping Scan" time="1289270225" extrainfo="1 total hosts" />
|
10
|
-
<taskbegin task="Parallel DNS resolution of 1 host." time="1289270225" />
|
11
|
-
<taskend task="Parallel DNS resolution of 1 host." time="1289270225" />
|
12
|
-
<taskbegin task="SYN Stealth Scan" time="1289270225" />
|
13
|
-
<taskprogress task="SYN Stealth Scan" time="1289270256" percent="8.15" remaining="350" etc="1289270605" />
|
14
|
-
<taskprogress task="SYN Stealth Scan" time="1289270286" percent="11.75" remaining="459" etc="1289270744" />
|
15
|
-
<taskprogress task="SYN Stealth Scan" time="1289270316" percent="15.45" remaining="498" etc="1289270814" />
|
16
|
-
<taskprogress task="SYN Stealth Scan" time="1289270475" percent="34.80" remaining="469" etc="1289270943" />
|
17
|
-
<taskprogress task="SYN Stealth Scan" time="1289270529" percent="41.35" remaining="432" etc="1289270960" />
|
18
|
-
<taskprogress task="SYN Stealth Scan" time="1289270577" percent="47.20" remaining="394" etc="1289270971" />
|
19
|
-
<taskprogress task="SYN Stealth Scan" time="1289270973" percent="67.55" remaining="360" etc="1289271332" />
|
20
|
-
<taskprogress task="SYN Stealth Scan" time="1289271138" percent="75.05" remaining="304" etc="1289271442" />
|
21
|
-
<taskprogress task="SYN Stealth Scan" time="1289271273" percent="81.20" remaining="243" etc="1289271516" />
|
22
|
-
<taskprogress task="SYN Stealth Scan" time="1289271399" percent="86.90" remaining="177" etc="1289271576" />
|
23
|
-
<taskprogress task="SYN Stealth Scan" time="1289271516" percent="92.25" remaining="109" etc="1289271624" />
|
24
|
-
<taskprogress task="SYN Stealth Scan" time="1289271624" percent="97.15" remaining="42" etc="1289271665" />
|
25
|
-
<taskend task="SYN Stealth Scan" time="1289271692" extrainfo="1000 total ports" />
|
26
|
-
<taskbegin task="Service scan" time="1289271692" />
|
27
|
-
<taskend task="Service scan" time="1289271712" extrainfo="7 services on 1 host" />
|
28
|
-
<taskbegin task="NSE" time="1289271713" />
|
29
|
-
<taskprogress task="NSE" time="1289271744" percent="92.50" remaining="3" etc="1289271747" />
|
30
|
-
<taskprogress task="NSE" time="1289271774" percent="95.00" remaining="4" etc="1289271777" />
|
31
|
-
<taskprogress task="NSE" time="1289271804" percent="95.00" remaining="5" etc="1289271809" />
|
32
|
-
<taskprogress task="NSE" time="1289271834" percent="95.00" remaining="7" etc="1289271840" />
|
33
|
-
<taskprogress task="NSE" time="1289271864" percent="95.00" remaining="8" etc="1289271872" />
|
34
|
-
<taskprogress task="NSE" time="1289271894" percent="97.50" remaining="5" etc="1289271899" />
|
35
|
-
<taskprogress task="NSE" time="1289271924" percent="97.50" remaining="6" etc="1289271929" />
|
36
|
-
<taskprogress task="NSE" time="1289271954" percent="97.50" remaining="7" etc="1289271960" />
|
37
|
-
<taskprogress task="NSE" time="1289271984" percent="97.50" remaining="7" etc="1289271991" />
|
38
|
-
<taskprogress task="NSE" time="1289272014" percent="97.50" remaining="8" etc="1289272022" />
|
39
|
-
<taskprogress task="NSE" time="1289272044" percent="97.50" remaining="9" etc="1289272052" />
|
40
|
-
<taskprogress task="NSE" time="1289272074" percent="97.50" remaining="10" etc="1289272083" />
|
41
|
-
<taskprogress task="NSE" time="1289272104" percent="97.50" remaining="11" etc="1289272114" />
|
42
|
-
<taskprogress task="NSE" time="1289272134" percent="97.50" remaining="11" etc="1289272145" />
|
43
|
-
<taskprogress task="NSE" time="1289272164" percent="97.50" remaining="12" etc="1289272176" />
|
44
|
-
<taskprogress task="NSE" time="1289272194" percent="97.50" remaining="13" etc="1289272206" />
|
45
|
-
<taskprogress task="NSE" time="1289272224" percent="97.50" remaining="14" etc="1289272237" />
|
46
|
-
<taskprogress task="NSE" time="1289272254" percent="97.50" remaining="14" etc="1289272268" />
|
47
|
-
<taskprogress task="NSE" time="1289272284" percent="97.50" remaining="15" etc="1289272299" />
|
48
|
-
<taskprogress task="NSE" time="1289272314" percent="97.50" remaining="16" etc="1289272329" />
|
49
|
-
<taskprogress task="NSE" time="1289272344" percent="97.50" remaining="17" etc="1289272360" />
|
50
|
-
<taskprogress task="NSE" time="1289272374" percent="97.50" remaining="17" etc="1289272391" />
|
51
|
-
<taskprogress task="NSE" time="1289272404" percent="97.50" remaining="18" etc="1289272422" />
|
52
|
-
<taskprogress task="NSE" time="1289272434" percent="97.50" remaining="19" etc="1289272452" />
|
53
|
-
<taskprogress task="NSE" time="1289272464" percent="97.50" remaining="20" etc="1289272483" />
|
54
|
-
<taskprogress task="NSE" time="1289272494" percent="97.50" remaining="21" etc="1289272514" />
|
55
|
-
<taskprogress task="NSE" time="1289272524" percent="97.50" remaining="21" etc="1289272545" />
|
56
|
-
<taskprogress task="NSE" time="1289272554" percent="97.50" remaining="22" etc="1289272576" />
|
57
|
-
<taskprogress task="NSE" time="1289272584" percent="97.50" remaining="23" etc="1289272606" />
|
58
|
-
<taskprogress task="NSE" time="1289272614" percent="97.50" remaining="24" etc="1289272637" />
|
59
|
-
<taskprogress task="NSE" time="1289272644" percent="97.50" remaining="24" etc="1289272668" />
|
60
|
-
<taskprogress task="NSE" time="1289272674" percent="97.50" remaining="25" etc="1289272699" />
|
61
|
-
<taskprogress task="NSE" time="1289272704" percent="97.50" remaining="26" etc="1289272729" />
|
62
|
-
<taskprogress task="NSE" time="1289272734" percent="97.50" remaining="27" etc="1289272760" />
|
63
|
-
<taskprogress task="NSE" time="1289272764" percent="97.50" remaining="27" etc="1289272791" />
|
64
|
-
<taskprogress task="NSE" time="1289272794" percent="97.50" remaining="28" etc="1289272822" />
|
65
|
-
<taskprogress task="NSE" time="1289272824" percent="97.50" remaining="29" etc="1289272852" />
|
66
|
-
<taskprogress task="NSE" time="1289272854" percent="97.50" remaining="30" etc="1289272883" />
|
67
|
-
<taskprogress task="NSE" time="1289272884" percent="97.50" remaining="31" etc="1289272914" />
|
68
|
-
<taskprogress task="NSE" time="1289272914" percent="97.50" remaining="31" etc="1289272945" />
|
69
|
-
<taskprogress task="NSE" time="1289272944" percent="97.50" remaining="32" etc="1289272976" />
|
70
|
-
<taskprogress task="NSE" time="1289272974" percent="97.50" remaining="33" etc="1289273006" />
|
71
|
-
<taskprogress task="NSE" time="1289273004" percent="97.50" remaining="34" etc="1289273037" />
|
72
|
-
<taskend task="NSE" time="1289273023" />
|
73
|
-
<host starttime="1289270225" endtime="1289273023"><status state="up" reason="echo-reply"/>
|
74
|
-
<address addr="173.255.192.6" addrtype="ipv4" />
|
75
|
-
<hostnames>
|
76
|
-
<hostname name="li202-6.members.linode.com" type="PTR"/>
|
77
|
-
</hostnames>
|
78
|
-
<ports><extraports state="filtered" count="992">
|
79
|
-
<extrareasons reason="no-responses" count="992"/>
|
80
|
-
</extraports>
|
81
|
-
<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="ssh" product="OpenSSH" version="5.1p1 Debian 6ubuntu2" extrainfo="protocol 2.0" ostype="Linux" method="probed" conf="10" /><script id="banner" output="SSH-2.0-OpenSSH_5.1p1 Debian-6ubuntu2" /><script id="ssh-hostkey" output="1024 5d:12:dd:c6:8a:05:d7:b7:a5:26:ec:cc:9c:8a:ca:67 (DSA)
ssh-dss AAAAB3NzaC1kc3MAAACBAKZ0ENxOqnH/PxDAj3AcnvX2hSxMsKAyeJT3wG/DluzL6TR0WX5QrYifF5ATRGlnsyF4ZxS1LiPUwcTs8LzFJ8a8KSThjXq6ET3V/TW43fWRTwJL+2X8+TXt3TC1cKdgrDPluhnzdsSg/78lQ5vVo118JxtSuC+pNDDOtmA+L3fJAAAAFQD5UcOqQR9iv89CIZBIC69Hi5/X+QAAAIEAnavKxpHJzOQ7/FGfU3heRQ6Bg/w5UC95YBEVyMc8x8aPOz8B4ZkWmioIQvhhS4ZobxK71imdm32RGD3G62pcCZ7X2FdgQIdb6RbHIMV+YrLdalE/ZoayD354BSJpyUQhzguB15qdmi1L+WZ9Zn51inWL/8UGZqma92JOKoqyec0AAACAS5kkXAZUbVO05GmMqVQre/CJd/wOR1hRn95nWSlJYi/xtEFx9mSxNUYdueSTJqYswI4S12OT61YqndCeFFETf77s3wH2Ry6/qHIpjW5Yxxqyw799Dj6w+RsV0K8h2EnY3Iwf12zi+yq4d3TIOTHRBhfzKt0W6jr5lkqPDzaijW0=
2048 a9:54:43:16:84:18:cd:40:90:8e:e2:d2:8e:19:b0:23 (RSA)
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAto8rh6m6TPykHIsdA3QeoXHt73gR1YkaVpgvj/k73qP5Mf8xOXXew9wCMW1+tPywchabhq3zzA9uS9jPzFDdVlMC/jU+P5SHyfP1gFfHeRSXzJXIctObyBDTo1inTyuyzjLtBGu9aN7+xMH6aFkT4G7qq9rW7m2cNNCZucWJZRrbRH1jwqVFuhwLiUkM3xSBcPt1f5H6b9pVKNAewEOo8mxy5QJ/oX45S7+3ExLGTsHSZ/7xuGeromhJIjWjcU88gMGW2vVMDKPccgZgV503k1BXm74e3mPkJxncplFITypaonFfkc5IZVdAp9kqB1ZiOo5Icv6kQHaqTF0XosCqxw==" /></port>
|
82
|
-
<port protocol="tcp" portid="25"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="smtp" product="Postfix smtpd" hostname=" chiringapress.com" method="probed" conf="10" /><script id="smtp-commands" output="
EHLO chiringapress.com, PIPELINING, SIZE 30720000, VRFY, ETRN, STARTTLS, AUTH PLAIN LOGIN, AUTH=PLAIN LOGIN, ENHANCEDSTATUSCODES, 8BITMIME, DSN" /><script id="banner" output="220 chiringapress.com ESMTP Postfix (Ubuntu)" /><script id="ssl-cert" output="Subject: commonName=Michael Godeck/organizationName=Chiringa Press Inc./stateOrProvinceName=Texas/countryName=US/emailAddress=chiringapress@gmail.com/localityName=Seguin
Issuer: commonName=Michael Godeck/organizationName=Chiringa Press Inc./stateOrProvinceName=Texas/countryName=US/emailAddress=chiringapress@gmail.com/localityName=Seguin
Not valid before: 2010-10-03 14:16:02
Not valid after: 2011-10-03 14:16:02
MD5: 0b3b 9216 c053 3921 8718 2d37 e057 be54
SHA-1: 8f11 19a1 0a4f e599 9993 a8f0 c286 d73d 092e 4f97
-----BEGIN CERTIFICATE-----
MIIElTCCA32gAwIBAgIJAJHFR+QLQZwZMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYD
VQQGEwJVUzEOMAwGA1UECBMFVGV4YXMxDzANBgNVBAcTBlNlZ3VpbjEcMBoGA1UE
ChMTQ2hpcmluZ2EgUHJlc3MgSW5jLjEXMBUGA1UEAxMOTWljaGFlbCBHb2RlY2sx
JjAkBgkqhkiG9w0BCQEWF2NoaXJpbmdhcHJlc3NAZ21haWwuY29tMB4XDTEwMTAw
MzE0MTYwMloXDTExMTAwMzE0MTYwMlowgY0xCzAJBgNVBAYTAlVTMQ4wDAYDVQQI
EwVUZXhhczEPMA0GA1UEBxMGU2VndWluMRwwGgYDVQQKExNDaGlyaW5nYSBQcmVz
cyBJbmMuMRcwFQYDVQQDEw5NaWNoYWVsIEdvZGVjazEmMCQGCSqGSIb3DQEJARYX
Y2hpcmluZ2FwcmVzc0BnbWFpbC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw
ggEKAoIBAQC/DPQNLCvtdwh6T2HD+ZNOy4gnMV87FuvRDSa2fhzPfKPXSQGpy+Hl
8LAp7BRiDHbeo2iJa8/47YOkzgOet9C+gwmkGu3ISBpEMvsCybsN6ihMHDhpKdaL
1CTVFZKZZAUSXkXv7igI2BZFptWP+8hw+ruy9j4lqIkCT8he9HGQghcK3Ejhg0XX
hT7x0EfaVmkK47qDBLYrh4zOkVZaH4zX67R5/D2Bp2PwA2jaS1jqI591niAWJbCA
77IEKLRE2txO4sPf2GV+DDvWDOOVOBrJdzqQAOhaV0HxkepdxkVb4A5TkUklvotO
oB9qKJFmbNihm4DwAuzs+dBJVLCwxPuXAgMBAAGjgfUwgfIwHQYDVR0OBBYEFLOG
m4+ymQ3Q7zzz/EC4KoaNgvVXMIHCBgNVHSMEgbowgbeAFLOGm4+ymQ3Q7zzz/EC4
KoaNgvVXoYGTpIGQMIGNMQswCQYDVQQGEwJVUzEOMAwGA1UECBMFVGV4YXMxDzAN
BgNVBAcTBlNlZ3VpbjEcMBoGA1UEChMTQ2hpcmluZ2EgUHJlc3MgSW5jLjEXMBUG
A1UEAxMOTWljaGFlbCBHb2RlY2sxJjAkBgkqhkiG9w0BCQEWF2NoaXJpbmdhcHJl
c3NAZ21haWwuY29tggkAkcVH5AtBnBkwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0B
AQUFAAOCAQEAmZ0FpngGz5/Y/dVD0Orre07Qz97oe+ZuXG5O0ZzPsapaC2jlEbc6
bYAAsneY+IGmxBoCfq8rJK1Kky8qjq/ToKH0lh338akh9sY30dwrlYbpGB8sVGTi
K/5HpZLnk30jVCP9m7HB/v7adR697D+xkgqT/bP+ExGZkajAB/nQou92A6RDtMJq
HF6h1G+r7mq2paaAioC7IrCI5D8E2lQeZj6Y7QTeZFK1nR7x+pjX44Hk6+Fgq2Uw
Jg0MZemEnN6fORQMsDoYZm6N/ZWQP+vCNdVhBCY5YZ8OizYqu6c5liFnXuR+XqKj
uZpl3JCxTRE1kyce8DGXh50xv1ZmqT7Nlw==
-----END CERTIFICATE-----
" /></port>
|
83
|
-
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="http" product="Apache httpd" version="2.2.12" extrainfo="(Ubuntu)" method="probed" conf="10" /><script id="citrix-brute-xml" output="FAILED: No domain specified (use ntdomain argument)" /><script id="citrix-enum-servers-xml" output="" /><script id="http-date" output="Tue, 09 Nov 2010 02:57:42 GMT; -4m11s from local time." /><script id="citrix-enum-apps-xml" output="" /><script id="http-malware-host" output="Host appears to be clean" /><script id="html-title" output="Chiringa Press | Publishing without community is like flying k..." /><script id="http-favicon" output="Unknown favicon MD5: A5B77B85173FAD1BFD30A7621AB76A07" /><script id="http-headers" output=" 
 Date: Tue, 09 Nov 2010 02:57:45 GMT
 Server: Apache/2.2.12 (Ubuntu)
 X-Powered-By: PHP/5.2.10-2ubuntu6.5
 Set-Cookie: SESS7595338a1622aabb05091c2231c9d7e3=1b66c99fc7b5a04cdaf65ab8107fb4ae; expires=Thu, 02-Dec-2010 06:31:05 GMT; path=/; domain=.li202-6.members.linode.com
 Expires: Sun, 19 Nov 1978 05:00:00 GMT
 Last-Modified: Tue, 09 Nov 2010 02:57:45 GMT
 Cache-Control: store, no-cache, must-revalidate
 Cache-Control: post-check=0, pre-check=0
 Vary: Accept-Encoding
 Connection: close
 Content-Type: text/html; charset=utf-8
 
 (Request type: HEAD)
" /><script id="http-enum" output=" 
 /icons/: Icons and images
 /includes/: Includes directory
 /install/: Install directory
" /><script id="http-iis-webdav-vuln" output="ERROR: This web server is not supported." /></port>
|
84
|
-
<port protocol="tcp" portid="110"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="pop3" product="Dovecot pop3d" method="probed" conf="10" /><script id="pop3-capabilities" output="OK(K) CAPA RESP-CODES UIDL PIPELINING STLS TOP SASL" /><script id="banner" output="+OK Dovecot ready." /></port>
|
85
|
-
<port protocol="tcp" portid="143"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="imap" product="Dovecot imapd" method="probed" conf="10" /><script id="banner" output="* OK Dovecot ready." /><script id="imap-capabilities" output="LOGIN-REFERRALS LOGINDISABLED STARTTLS I18NLEVEL=1 LIST-EXTENDED UNSELECT THREAD=REFERENCES UIDPLUS IMAP4rev1 NAMESPACE SORT CHILDREN LITERAL+ IDLE SASL-IR MULTIAPPEND" /></port>
|
86
|
-
<port protocol="tcp" portid="443"><state state="closed" reason="reset" reason_ttl="50"/><service name="https" method="table" conf="3" /></port>
|
87
|
-
<port protocol="tcp" portid="993"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="imap" product="Dovecot imapd" tunnel="ssl" method="probed" conf="10" /><script id="sslv2" output="server still supports SSLv2
	the server didn't offer any cyphers" /><script id="banner" output="* OK Dovecot ready." /><script id="imap-capabilities" output="LOGIN-REFERRALS AUTH=PLAIN I18NLEVEL=1 LIST-EXTENDED UNSELECT THREAD=REFERENCES UIDPLUS IMAP4rev1 NAMESPACE SORT CHILDREN LITERAL+ IDLE SASL-IR MULTIAPPEND" /><script id="ssl-cert" output="Subject: commonName=chiringapress.com
Issuer: commonName=chiringapress.com
Not valid before: 2010-10-03 14:04:20
Not valid after: 2020-09-30 14:04:20
MD5: cf02 9d1d 3af9 f0a8 614f a434 a543 d136
SHA-1: 1d23 6e70 69f0 4db2 5ffe b60e 377d f93f aff5 fa8c
-----BEGIN CERTIFICATE-----
MIIBrzCCARgCCQD5n7BHROZItTANBgkqhkiG9w0BAQUFADAcMRowGAYDVQQDExFj
aGlyaW5nYXByZXNzLmNvbTAeFw0xMDEwMDMxNDA0MjBaFw0yMDA5MzAxNDA0MjBa
MBwxGjAYBgNVBAMTEWNoaXJpbmdhcHJlc3MuY29tMIGfMA0GCSqGSIb3DQEBAQUA
A4GNADCBiQKBgQDWg3kAL44/vviOZva0TeMLLOb3epJ9qNjfiOp5K71UEb9OmPz5
Cj6gtmBIo0ftwRREq1k7vSw2nD4W8ZsFi3XVyrc6VvdhQeUA94PRnpwox6yFg7aS
FoOxhrwW+23ruNMH12LG2Qlr290U7Mlpr+4uU+Zloy5piGC07iO/uH9F9QIDAQAB
MA0GCSqGSIb3DQEBBQUAA4GBALlWMAjpnJp9b2/BrCKuIn7t8kyf0m5DQ17A1/Kl
k5XhtdBUaazWMeZr600AKxx/Dv0RdDTFY5TkynfPki4n4hDLtPGQxMXrzYRS+gSo
dVtLskRr/jFlrv6DXo2aO+dPEdbm3ZrUi0yPr1YZW4fQN+HYU5uSxKknOH0SqOdZ
Vo+h
-----END CERTIFICATE-----
" /></port>
|
88
|
-
<port protocol="tcp" portid="995"><state state="open" reason="syn-ack" reason_ttl="50"/><service name="pop3" product="Dovecot pop3d" tunnel="ssl" method="probed" conf="10" /><script id="sslv2" output="server still supports SSLv2
	the server didn't offer any cyphers" /><script id="banner" output="+OK Dovecot ready." /><script id="ssl-cert" output="Subject: commonName=chiringapress.com
Issuer: commonName=chiringapress.com
Not valid before: 2010-10-03 14:04:20
Not valid after: 2020-09-30 14:04:20
MD5: cf02 9d1d 3af9 f0a8 614f a434 a543 d136
SHA-1: 1d23 6e70 69f0 4db2 5ffe b60e 377d f93f aff5 fa8c
-----BEGIN CERTIFICATE-----
MIIBrzCCARgCCQD5n7BHROZItTANBgkqhkiG9w0BAQUFADAcMRowGAYDVQQDExFj
aGlyaW5nYXByZXNzLmNvbTAeFw0xMDEwMDMxNDA0MjBaFw0yMDA5MzAxNDA0MjBa
MBwxGjAYBgNVBAMTEWNoaXJpbmdhcHJlc3MuY29tMIGfMA0GCSqGSIb3DQEBAQUA
A4GNADCBiQKBgQDWg3kAL44/vviOZva0TeMLLOb3epJ9qNjfiOp5K71UEb9OmPz5
Cj6gtmBIo0ftwRREq1k7vSw2nD4W8ZsFi3XVyrc6VvdhQeUA94PRnpwox6yFg7aS
FoOxhrwW+23ruNMH12LG2Qlr290U7Mlpr+4uU+Zloy5piGC07iO/uH9F9QIDAQAB
MA0GCSqGSIb3DQEBBQUAA4GBALlWMAjpnJp9b2/BrCKuIn7t8kyf0m5DQ17A1/Kl
k5XhtdBUaazWMeZr600AKxx/Dv0RdDTFY5TkynfPki4n4hDLtPGQxMXrzYRS+gSo
dVtLskRr/jFlrv6DXo2aO+dPEdbm3ZrUi0yPr1YZW4fQN+HYU5uSxKknOH0SqOdZ
Vo+h
-----END CERTIFICATE-----
" /><script id="pop3-capabilities" output="OK(K) CAPA RESP-CODES UIDL PIPELINING USER TOP SASL(PLAIN)" /></port>
|
89
|
-
</ports>
|
90
|
-
<hostscript><script id="asn-query" output=" 
BGP: 173.255.192.0/20 | Country: US
 Origin AS: 21844 - THEPLANET-AS - ThePlanet.com Internet Services, Inc.
 Peer AS: 2914 3356 3549 4565 6461 7922 10310 22822" /><script id="whois" output="Record found at whois.arin.net
netrange: 173.255.192.0 - 173.255.255.255
netname: LINODE-US
orgname: Linode
orgid: LINOD
country: US stateprov: NJ 

orgtechname: Linode Network Operations
orgtechemail: support@linode.com" /></hostscript><times srtt="110549" rttvar="65422" to="372237" />
|
91
|
-
</host>
|
92
|
-
<runstats><finished time="1289273023" timestr="Mon Nov 8 19:23:43 2010" elapsed="2798.66"/><hosts up="1" down="0" total="1" />
|
93
|
-
<!-- Nmap done at Mon Nov 8 19:23:43 2010; 1 IP address (1 host up) scanned in 2798.66 seconds -->
|
94
|
-
</runstats></nmaprun>
|
data/spec/helpers/scan.xml
DELETED
@@ -1,241 +0,0 @@
|
|
1
|
-
<?xml version="1.0" ?>
|
2
|
-
<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
3
|
-
<!-- Nmap 4.68 scan initiated Sat Aug 16 17:50:49 2008 as: nmap -v -oX samples/backspace.xml -O -P0 -sS 192.168.5.* -->
|
4
|
-
<nmaprun scanner="nmap" args="nmap -v -oX samples/backspace.xml -O -P0 -sS 192.168.5.*" start="1218934249" startstr="Sat Aug 16 17:50:49 2008" version="4.68" xmloutputversion="1.02">
|
5
|
-
<scaninfo type="syn" protocol="tcp" numservices="1715" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7634,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
|
6
|
-
<verbose level="1" />
|
7
|
-
<debugging level="0" />
|
8
|
-
<taskbegin task="ARP Ping Scan" time="1218934249" />
|
9
|
-
<taskend task="ARP Ping Scan" time="1218934250" extrainfo="107 total hosts" />
|
10
|
-
<taskbegin task="Parallel DNS resolution of 107 hosts." time="1218934250" />
|
11
|
-
<taskend task="Parallel DNS resolution of 107 hosts." time="1218934253" />
|
12
|
-
<taskbegin task="SYN Stealth Scan" time="1218934253" />
|
13
|
-
<taskend task="SYN Stealth Scan" time="1218934274" extrainfo="8575 total ports" />
|
14
|
-
<host starttime="1218934249" endtime="1218934276"><status state="up" reason="arp-response"/>
|
15
|
-
<address addr="192.168.5.1" addrtype="ipv4" />
|
16
|
-
<address addr="00:1D:7E:EF:2A:E5" addrtype="mac" vendor="Cisco-Linksys" />
|
17
|
-
<hostnames />
|
18
|
-
<ports><extraports state="filtered" count="1712">
|
19
|
-
<extrareasons reason="no-responses" count="1712"/>
|
20
|
-
</extraports>
|
21
|
-
<port protocol="tcp" portid="21"><state state="closed" reason="reset" reason_ttl="64"/><service name="ftp" method="table" conf="3" /></port>
|
22
|
-
<port protocol="tcp" portid="23"><state state="closed" reason="reset" reason_ttl="64"/><service name="telnet" method="table" conf="3" /></port>
|
23
|
-
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="64"/><service name="https" method="table" conf="3" /></port>
|
24
|
-
</ports>
|
25
|
-
<os><portused state="open" proto="tcp" portid="443" />
|
26
|
-
<portused state="closed" proto="tcp" portid="21" />
|
27
|
-
<osclass type="WAP" vendor="Netgear" osfamily="embedded" accuracy="100" />
|
28
|
-
<osmatch name="Netgear WGR614v6 wireless broadband router" accuracy="100" line="18703" />
|
29
|
-
<osmatch name="Netgear WGR614v7 or WPN824v2 wireless broadband router" accuracy="100" line="18721" />
|
30
|
-
<osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=443%CT=21%CU=%PV=Y%DS=1%G=N%M=001D7E%TM=48A77607%P=i686-pc-linux-gnu)
SEQ(SP=19%GCD=FA00%ISR=9E%TI=I%TS=1)
OPS(O1=M5B4NW0NNT11%O2=M5B4NW0NNT11%O3=M5B4NW0NNT11%O4=M5B4NW0NNT11%O5=M5B4NW0NNT11%O6=M5B4NNT11)
WIN(W1=2000%W2=2000%W3=2000%W4=2000%W5=2000%W6=2000)
ECN(R=Y%DF=N%TG=40%W=2000%O=M5B4NW0%CC=N%Q=)
T1(R=Y%DF=N%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=Y%DF=N%TG=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
" />
|
31
|
-
</os>
|
32
|
-
<uptime seconds="3121" lastboot="Sat Aug 16 16:59:18 2008" />
|
33
|
-
<distance value="1" />
|
34
|
-
<tcpsequence index="25" difficulty="Good luck!" values="AF1B39BD,AF1C33BD,AF1F21BD,AF201BBD,AF2115BD,AF220FBD" />
|
35
|
-
<ipidsequence class="Incremental" values="1FB0,1FB2,1FB4,1FB6,1FB8,1FBA" />
|
36
|
-
<tcptssequence class="2HZ" values="1858,1858,1859,1859,1859,1859" />
|
37
|
-
<times srtt="12972" rttvar="9000" to="100000" />
|
38
|
-
</host>
|
39
|
-
<host starttime="1218934249" endtime="1218934278"><status state="up" reason="arp-response"/>
|
40
|
-
<address addr="192.168.5.102" addrtype="ipv4" />
|
41
|
-
<address addr="00:13:02:55:4A:F5" addrtype="mac" vendor="Intel Corporate" />
|
42
|
-
<hostnames />
|
43
|
-
<ports><extraports state="filtered" count="1715">
|
44
|
-
<extrareasons reason="no-responses" count="1715"/>
|
45
|
-
</extraports>
|
46
|
-
</ports>
|
47
|
-
<os><osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=%CT=%CU=%PV=Y%DS=1%G=N%M=001302%TM=48A77607%P=i686-pc-linux-gnu)
U1(R=N)
IE(R=N)
" />
|
48
|
-
</os>
|
49
|
-
<distance value="1" />
|
50
|
-
<times srtt="40386" rttvar="40386" to="201930" />
|
51
|
-
</host>
|
52
|
-
<host starttime="1218934249" endtime="1218934276"><status state="up" reason="arp-response"/>
|
53
|
-
<address addr="192.168.5.104" addrtype="ipv4" />
|
54
|
-
<address addr="00:1E:52:74:1E:F9" addrtype="mac" vendor="Apple" />
|
55
|
-
<hostnames />
|
56
|
-
<ports><extraports state="closed" count="1714">
|
57
|
-
<extrareasons reason="resets" count="1714"/>
|
58
|
-
</extraports>
|
59
|
-
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="64"/><service name="http" method="table" conf="3" /></port>
|
60
|
-
</ports>
|
61
|
-
<os><portused state="open" proto="tcp" portid="80" />
|
62
|
-
<portused state="closed" proto="tcp" portid="1" />
|
63
|
-
<portused state="closed" proto="udp" portid="44491" />
|
64
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.5.X" accuracy="100" />
|
65
|
-
<osmatch name="Apple Mac OS X 10.5 - 10.5.2 (Leopard) (Darwin 9.0.0b5 - 9.2.0)" accuracy="100" line="1589" />
|
66
|
-
<osfingerprint fingerprint="OS:SCAN(V=4.68%D=8/16%OT=80%CT=1%CU=44491%PV=Y%DS=1%G=Y%M=001E52%TM=48A7760
OS:7%P=i686-pc-linux-gnu)SEQ(SP=105%GCD=1%ISR=106%TI=RD%II=RI%TS=3)OPS(O1=M
OS:5B4NW3NNT11SLL%O2=M5B4NW3NNT11SLL%O3=M5B4NW3NNT11%O4=M5B4NW3NNT11SLL%O5=
OS:M5B4NW3NNT11SLL%O6=M5B4NNT11SLL)WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4=FFFF%W5=F
OS:FFF%W6=FFFF)ECN(R=Y%DF=Y%T=40%W=FFFF%O=M5B4NW3SLL%CC=N%Q=)T1(R=Y%DF=Y%T=
OS:40%S=O%A=S+%F=AS%RD=0%Q=)T2(R=N)T3(R=N)T4(R=Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%
OS:O=%RD=0%Q=)T5(R=Y%DF=N%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)T6(R=Y%DF=Y%T=4
OS:0%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)T7(R=Y%DF=N%T=40%W=0%S=Z%A=S%F=AR%O=%RD=0%Q
OS:=)U1(R=Y%DF=N%T=40%TOS=0%IPL=38%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK=0%RUL=G%R
OS:UD=G)IE(R=Y%DFI=S%T=40%TOSI=S%CD=S%SI=S%DLI=S)
" />
|
67
|
-
</os>
|
68
|
-
<uptime seconds="5259159" lastboot="Mon Jun 16 20:58:40 2008" />
|
69
|
-
<distance value="1" />
|
70
|
-
<tcpsequence index="261" difficulty="Good luck!" values="5167B935,1670334E,17968186,CFACE9C,778429A0,473647B3" />
|
71
|
-
<ipidsequence class="Randomized" values="9B17,8200,5228,C13A,435D,BF65" />
|
72
|
-
<tcptssequence class="other" values="3227BBD,3227BBE,3227BBF,3227BC0,3227BC1,3227BC2" />
|
73
|
-
<times srtt="14271" rttvar="10952" to="100000" />
|
74
|
-
</host>
|
75
|
-
<host starttime="1218934249" endtime="1218934276"><status state="up" reason="arp-response"/>
|
76
|
-
<address addr="192.168.5.105" addrtype="ipv4" />
|
77
|
-
<address addr="00:1B:63:C5:CB:CE" addrtype="mac" vendor="Apple" />
|
78
|
-
<hostnames />
|
79
|
-
<ports><extraports state="closed" count="1713">
|
80
|
-
<extrareasons reason="resets" count="1713"/>
|
81
|
-
</extraports>
|
82
|
-
<port protocol="tcp" portid="3689"><state state="open" reason="syn-ack" reason_ttl="64"/><service name="rendezvous" method="table" conf="3" /></port>
|
83
|
-
<port protocol="tcp" portid="5101"><state state="open" reason="syn-ack" reason_ttl="64"/><service name="admdog" method="table" conf="3" /></port>
|
84
|
-
</ports>
|
85
|
-
<os><portused state="open" proto="tcp" portid="3689" />
|
86
|
-
<portused state="closed" proto="tcp" portid="1" />
|
87
|
-
<portused state="closed" proto="udp" portid="36784" />
|
88
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.4.X" accuracy="100" />
|
89
|
-
<osmatch name="Apple Mac OS X 10.4.10 (Tiger) (Darwin 8.10.0 - 8.11.1)" accuracy="100" line="1212" />
|
90
|
-
<osfingerprint fingerprint="OS:SCAN(V=4.68%D=8/16%OT=3689%CT=1%CU=36784%PV=Y%DS=1%G=Y%M=001B63%TM=48A77
OS:607%P=i686-pc-linux-gnu)SEQ(SP=11%GCD=57BA4C61%ISR=FB%TI=I%II=I%SS=S%TS=
OS:1)OPS(O1=M5B4NW0NNT11SLL%O2=M5B4NW0NNT11SLL%O3=M5B4NW0NNT11%O4=M5B4NW0NN
OS:T11SLL%O5=M5B4NW0NNT11SLL%O6=M5B4NNT11SLL)WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4
OS:=FFFF%W5=FFFF%W6=FFFF)ECN(R=Y%DF=Y%T=40%W=FFFF%O=M5B4NW0SLL%CC=N%Q=)T1(R
OS:=Y%DF=Y%T=40%S=O%A=S+%F=AS%RD=0%Q=)T2(R=N)T3(R=N)T4(R=Y%DF=Y%T=40%W=0%S=
OS:A%A=Z%F=R%O=%RD=0%Q=)T5(R=Y%DF=N%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)T6(R=
OS:Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)T7(R=Y%DF=N%T=40%W=0%S=Z%A=S%F=AR
OS:%O=%RD=0%Q=)U1(R=Y%DF=N%T=40%TOS=0%IPL=38%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK
OS:=0%RUL=G%RUD=G)IE(R=Y%DFI=S%T=40%TOSI=S%CD=S%SI=S%DLI=S)
" />
|
91
|
-
</os>
|
92
|
-
<distance value="1" />
|
93
|
-
<tcpsequence index="17" difficulty="Good luck!" values="9848B4F4,9848B4F4,408E6893,408E6893,408E6893,408E6893" />
|
94
|
-
<ipidsequence class="Incremental" values="B6CB,B6CC,B6CD,B6CE,B6CF,B6D0" />
|
95
|
-
<tcptssequence class="2HZ" values="39637A11,39637A11,39637A11,39637A12,39637A12,39637A12" />
|
96
|
-
<times srtt="16409" rttvar="11292" to="100000" />
|
97
|
-
</host>
|
98
|
-
<host starttime="1218934249" endtime="1218934276"><status state="up" reason="arp-response"/>
|
99
|
-
<address addr="192.168.5.106" addrtype="ipv4" />
|
100
|
-
<address addr="00:1D:60:15:4B:45" addrtype="mac" vendor="Asustek Computer" />
|
101
|
-
<hostnames />
|
102
|
-
<ports><extraports state="closed" count="1710">
|
103
|
-
<extrareasons reason="resets" count="1710"/>
|
104
|
-
</extraports>
|
105
|
-
<port protocol="tcp" portid="135"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="msrpc" method="table" conf="3" /></port>
|
106
|
-
<port protocol="tcp" portid="139"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="netbios-ssn" method="table" conf="3" /></port>
|
107
|
-
<port protocol="tcp" portid="445"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="microsoft-ds" method="table" conf="3" /></port>
|
108
|
-
<port protocol="tcp" portid="554"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="rtsp" method="table" conf="3" /></port>
|
109
|
-
<port protocol="tcp" portid="3389"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="ms-term-serv" method="table" conf="3" /></port>
|
110
|
-
</ports>
|
111
|
-
<os><portused state="open" proto="tcp" portid="135" />
|
112
|
-
<portused state="closed" proto="tcp" portid="1" />
|
113
|
-
<portused state="closed" proto="udp" portid="34311" />
|
114
|
-
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="Vista" accuracy="100" />
|
115
|
-
<osmatch name="Microsoft Windows Vista" accuracy="100" line="16393" />
|
116
|
-
<osfingerprint fingerprint="OS:SCAN(V=4.68%D=8/16%OT=135%CT=1%CU=34311%PV=Y%DS=1%G=Y%M=001D60%TM=48A776
OS:07%P=i686-pc-linux-gnu)SEQ(SP=105%GCD=1%ISR=10E%TI=I%II=I%SS=S%TS=7)OPS(
OS:O1=M5B4NW8ST11%O2=M5B4NW8ST11%O3=M5B4NW8NNT11%O4=M5B4NW8ST11%O5=M5B4NW8S
OS:T11%O6=M5B4ST11)WIN(W1=2000%W2=2000%W3=2000%W4=2000%W5=2000%W6=2000)ECN(
OS:R=Y%DF=Y%T=80%W=2000%O=M5B4NW8NNS%CC=N%Q=)T1(R=Y%DF=Y%T=80%S=O%A=S+%F=AS
OS:%RD=0%Q=)T2(R=Y%DF=Y%T=80%W=0%S=Z%A=S%F=AR%O=%RD=0%Q=)T3(R=Y%DF=Y%T=80%W
OS:=0%S=Z%A=O%F=AR%O=%RD=0%Q=)T4(R=Y%DF=Y%T=80%W=0%S=A%A=O%F=R%O=%RD=0%Q=)T
OS:5(R=Y%DF=Y%T=80%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)T6(R=Y%DF=Y%T=80%W=0%S=A%A=
OS:O%F=R%O=%RD=0%Q=)T7(R=Y%DF=Y%T=80%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)U1(R=Y%DF
OS:=N%T=80%TOS=0%IPL=164%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK=G%RUL=G%RUD=G)IE(R=
OS:Y%DFI=N%T=80%TOSI=Z%CD=Z%SI=S%DLI=S)
" />
|
117
|
-
</os>
|
118
|
-
<uptime seconds="1384" lastboot="Sat Aug 16 17:28:15 2008" />
|
119
|
-
<distance value="1" />
|
120
|
-
<tcpsequence index="261" difficulty="Good luck!" values="CD9C6B65,410AED23,9A27457B,84D9FFE4,3270D8D3,AB2AE7C3" />
|
121
|
-
<ipidsequence class="Incremental" values="33FC,33FD,33FE,3400,3403,3404" />
|
122
|
-
<tcptssequence class="100HZ" values="21AF6,21B01,21B0B,21B15,21B20,21B2A" />
|
123
|
-
<times srtt="11462" rttvar="4510" to="100000" />
|
124
|
-
</host>
|
125
|
-
<taskbegin task="Parallel DNS resolution of 1 host." time="1218934279" />
|
126
|
-
<taskend task="Parallel DNS resolution of 1 host." time="1218934279" />
|
127
|
-
<taskbegin task="ARP Ping Scan" time="1218934279" />
|
128
|
-
<taskend task="ARP Ping Scan" time="1218934281" extrainfo="148 total hosts" />
|
129
|
-
<taskbegin task="Parallel DNS resolution of 148 hosts." time="1218934281" />
|
130
|
-
<taskend task="Parallel DNS resolution of 148 hosts." time="1218934283" />
|
131
|
-
<taskbegin task="SYN Stealth Scan" time="1218934283" />
|
132
|
-
<taskend task="SYN Stealth Scan" time="1218934283" extrainfo="1715 total ports" />
|
133
|
-
<host starttime="1218934283" endtime="1218934285"><status state="up" reason="localhost-response"/>
|
134
|
-
<address addr="192.168.5.107" addrtype="ipv4" />
|
135
|
-
<hostnames />
|
136
|
-
<ports><extraports state="closed" count="1715">
|
137
|
-
<extrareasons reason="resets" count="1715"/>
|
138
|
-
</extraports>
|
139
|
-
</ports>
|
140
|
-
<os><portused state="closed" proto="tcp" portid="1" />
|
141
|
-
<portused state="closed" proto="udp" portid="37912" />
|
142
|
-
<osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=%CT=1%CU=37912%PV=Y%DS=0%G=N%TM=48A7760D%P=i686-pc-linux-gnu)
T5(R=Y%DF=Y%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
T6(R=Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
T7(R=Y%DF=Y%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
U1(R=Y%DF=N%T=40%TOS=C0%IPL=164%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK=G%RUL=G%RUD=G)
IE(R=Y%DFI=N%T=40%TOSI=S%CD=S%SI=S%DLI=S)
" />
|
143
|
-
</os>
|
144
|
-
<distance value="0" />
|
145
|
-
<times srtt="28" rttvar="9" to="100000" />
|
146
|
-
</host>
|
147
|
-
<taskbegin task="SYN Stealth Scan" time="1218934285" />
|
148
|
-
<taskend task="SYN Stealth Scan" time="1218934323" extrainfo="6860 total ports" />
|
149
|
-
<host starttime="1218934279" endtime="1218934325"><status state="up" reason="arp-response"/>
|
150
|
-
<address addr="192.168.5.111" addrtype="ipv4" />
|
151
|
-
<address addr="00:11:24:25:FF:D5" addrtype="mac" vendor="Apple Computer" />
|
152
|
-
<hostnames />
|
153
|
-
<ports><extraports state="closed" count="1714">
|
154
|
-
<extrareasons reason="resets" count="1714"/>
|
155
|
-
</extraports>
|
156
|
-
<port protocol="tcp" portid="5000"><state state="open" reason="syn-ack" reason_ttl="64"/><service name="upnp" method="table" conf="3" /></port>
|
157
|
-
</ports>
|
158
|
-
<os><portused state="open" proto="tcp" portid="5000" />
|
159
|
-
<portused state="closed" proto="tcp" portid="1" />
|
160
|
-
<portused state="closed" proto="udp" portid="30609" />
|
161
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.4.X" accuracy="100" />
|
162
|
-
<osmatch name="Apple Mac OS X 10.4.10 (Tiger) (Darwin 8.10.0 - 8.11.1)" accuracy="100" line="1212" />
|
163
|
-
<osfingerprint fingerprint="OS:SCAN(V=4.68%D=8/16%OT=5000%CT=1%CU=30609%PV=Y%DS=1%G=Y%M=001124%TM=48A77
OS:636%P=i686-pc-linux-gnu)SEQ(SP=11%GCD=74852FB0%ISR=FF%TI=I%II=I%SS=S%TS=
OS:1)OPS(O1=M5B4NW0NNT11SLL%O2=M5B4NW0NNT11SLL%O3=M5B4NW0NNT11%O4=M5B4NW0NN
OS:T11SLL%O5=M5B4NW0NNT11SLL%O6=M5B4NNT11SLL)WIN(W1=FFFF%W2=FFFF%W3=FFFF%W4
OS:=FFFF%W5=FFFF%W6=FFFF)ECN(R=Y%DF=Y%T=40%W=FFFF%O=M5B4NW0SLL%CC=N%Q=)T1(R
OS:=Y%DF=Y%T=40%S=O%A=S+%F=AS%RD=0%Q=)T2(R=N)T3(R=N)T4(R=Y%DF=Y%T=40%W=0%S=
OS:A%A=Z%F=R%O=%RD=0%Q=)T5(R=Y%DF=N%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)T6(R=
OS:Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)T7(R=Y%DF=N%T=40%W=0%S=Z%A=S%F=AR
OS:%O=%RD=0%Q=)U1(R=Y%DF=N%T=40%TOS=0%IPL=38%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK
OS:=0%RUL=G%RUD=G)IE(R=Y%DFI=S%T=40%TOSI=S%CD=S%SI=S%DLI=S)
" />
|
164
|
-
</os>
|
165
|
-
<uptime seconds="54768855" lastboot="Tue Nov 21 19:17:51 2006" />
|
166
|
-
<distance value="1" />
|
167
|
-
<tcpsequence index="17" difficulty="Good luck!" values="CA35BC58,55B08CA8,55B08CA8,55B08CA8,55B08CA8,55B08CA8" />
|
168
|
-
<ipidsequence class="Incremental" values="221C,221D,221E,221F,2220,2221" />
|
169
|
-
<tcptssequence class="2HZ" values="68769AB,68769AB,68769AB,68769AB,68769AB,68769AC" />
|
170
|
-
<times srtt="22425" rttvar="32215" to="151285" />
|
171
|
-
</host>
|
172
|
-
<host starttime="1218934279" endtime="1218934325"><status state="up" reason="arp-response"/>
|
173
|
-
<address addr="192.168.5.125" addrtype="ipv4" />
|
174
|
-
<address addr="00:1F:5B:CF:0A:9C" addrtype="mac" vendor="Apple" />
|
175
|
-
<hostnames />
|
176
|
-
<ports><extraports state="closed" count="1715">
|
177
|
-
<extrareasons reason="resets" count="1715"/>
|
178
|
-
</extraports>
|
179
|
-
</ports>
|
180
|
-
<os><portused state="closed" proto="tcp" portid="1" />
|
181
|
-
<portused state="closed" proto="udp" portid="31277" />
|
182
|
-
<osclass type="phone" vendor="Apple" osfamily="embedded" accuracy="100" />
|
183
|
-
<osclass type="media device" vendor="Apple" osfamily="embedded" accuracy="100" />
|
184
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.2.X" accuracy="100" />
|
185
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.3.X" accuracy="100" />
|
186
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.4.X" accuracy="100" />
|
187
|
-
<osclass type="general purpose" vendor="Apple" osfamily="Mac OS X" osgen="10.5.X" accuracy="100" />
|
188
|
-
<osclass type="web proxy" vendor="Blue Coat" osfamily="SGOS" osgen="5.X" accuracy="100" />
|
189
|
-
<osclass type="general purpose" vendor="FreeBSD" osfamily="FreeBSD" osgen="4.X" accuracy="100" />
|
190
|
-
<osclass type="specialized" vendor="VMWare" osfamily="ESX Server" osgen="3.0.X" accuracy="100" />
|
191
|
-
<osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=%CT=1%CU=31277%PV=Y%DS=1%G=N%M=001F5B%TM=48A77636%P=i686-pc-linux-gnu)
T5(R=Y%DF=N%T=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
T6(R=Y%DF=Y%T=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
T7(R=Y%DF=N%T=40%W=0%S=Z%A=S%F=AR%O=%RD=0%Q=)
U1(R=Y%DF=N%T=40%TOS=0%IPL=38%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK=0%RUL=G%RUD=G)
IE(R=Y%DFI=S%T=40%TOSI=S%CD=S%SI=S%DLI=S)
" />
|
192
|
-
</os>
|
193
|
-
<distance value="1" />
|
194
|
-
<times srtt="32472" rttvar="31983" to="160404" />
|
195
|
-
</host>
|
196
|
-
<host starttime="1218934279" endtime="1218934325"><status state="up" reason="arp-response"/>
|
197
|
-
<address addr="192.168.5.148" addrtype="ipv4" />
|
198
|
-
<address addr="00:1A:92:1C:72:64" addrtype="mac" vendor="Asustek Computer" />
|
199
|
-
<hostnames />
|
200
|
-
<ports><extraports state="closed" count="1710">
|
201
|
-
<extrareasons reason="resets" count="1710"/>
|
202
|
-
</extraports>
|
203
|
-
<port protocol="tcp" portid="135"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="msrpc" method="table" conf="3" /></port>
|
204
|
-
<port protocol="tcp" portid="137"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="netbios-ns" method="table" conf="3" /></port>
|
205
|
-
<port protocol="tcp" portid="138"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="netbios-dgm" method="table" conf="3" /></port>
|
206
|
-
<port protocol="tcp" portid="139"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="netbios-ssn" method="table" conf="3" /></port>
|
207
|
-
<port protocol="tcp" portid="445"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="microsoft-ds" method="table" conf="3" /></port>
|
208
|
-
</ports>
|
209
|
-
<os><portused state="closed" proto="tcp" portid="1" />
|
210
|
-
<portused state="closed" proto="udp" portid="33395" />
|
211
|
-
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="2003" accuracy="100" />
|
212
|
-
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="XP" accuracy="100" />
|
213
|
-
<osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=%CT=1%CU=33395%PV=Y%DS=1%G=N%M=001A92%TM=48A77636%P=i686-pc-linux-gnu)
T5(R=Y%DF=N%T=80%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
T6(R=Y%DF=N%T=80%W=0%S=A%A=O%F=R%O=%RD=0%Q=)
T7(R=Y%DF=N%T=80%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
U1(R=Y%DF=N%T=80%TOS=0%IPL=B0%UN=0%RIPL=G%RID=G%RIPCK=G%RUCK=G%RUL=G%RUD=G)
IE(R=Y%DFI=S%T=80%TOSI=Z%CD=Z%SI=S%DLI=S)
" />
|
214
|
-
</os>
|
215
|
-
<distance value="1" />
|
216
|
-
<times srtt="10282" rttvar="6908" to="100000" />
|
217
|
-
</host>
|
218
|
-
<host starttime="1218934279" endtime="1218934325"><status state="up" reason="arp-response"/>
|
219
|
-
<address addr="192.168.5.166" addrtype="ipv4" />
|
220
|
-
<address addr="00:90:4B:6F:12:38" addrtype="mac" vendor="GemTek Technology Co." />
|
221
|
-
<hostnames />
|
222
|
-
<ports><extraports state="filtered" count="1713">
|
223
|
-
<extrareasons reason="no-responses" count="1713"/>
|
224
|
-
</extraports>
|
225
|
-
<port protocol="tcp" portid="139"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="netbios-ssn" method="table" conf="3" /></port>
|
226
|
-
<port protocol="tcp" portid="445"><state state="open" reason="syn-ack" reason_ttl="128"/><service name="microsoft-ds" method="table" conf="3" /></port>
|
227
|
-
</ports>
|
228
|
-
<os><portused state="open" proto="tcp" portid="139" />
|
229
|
-
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="2000" accuracy="100" />
|
230
|
-
<osmatch name="Microsoft Windows 2000 SP4 or Windows XP SP2" accuracy="100" line="15285" />
|
231
|
-
<osfingerprint fingerprint="SCAN(V=4.68%D=8/16%OT=139%CT=%CU=%PV=Y%DS=1%G=N%M=00904B%TM=48A77636%P=i686-pc-linux-gnu)
SEQ(SP=106%GCD=1%ISR=10B%TI=I%II=I%SS=S%TS=0)
OPS(O1=M5B4NW0NNT00NNS%O2=M5B4NW0NNT00NNS%O3=M5B4NW0NNT00%O4=M5B4NW0NNT00NNS%O5=M5B4NW0NNT00NNS%O6=M5B4NNT00NNS)
WIN(W1=4470%W2=41A0%W3=4100%W4=40E8%W5=40E8%W6=402E)
ECN(R=Y%DF=Y%TG=80%W=4470%O=M5B4NW0NNS%CC=N%Q=)
T1(R=Y%DF=Y%TG=80%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=Y%DF=N%TG=80%W=0%S=A%A=O%F=R%O=%RD=0%Q=)
U1(R=N)
IE(R=Y%DFI=S%TG=80%TOSI=Z%CD=Z%SI=S%DLI=S)
" />
|
232
|
-
</os>
|
233
|
-
<distance value="1" />
|
234
|
-
<tcpsequence index="262" difficulty="Good luck!" values="E268F991,62562AB6,20EF132D,5EE515F2,660E2BE6,23E04F2B" />
|
235
|
-
<ipidsequence class="Incremental" values="79D4,79D5,79D6,79D7,79D8,79D9" />
|
236
|
-
<tcptssequence class="zero timestamp" values="0,0,0,0,0,0" />
|
237
|
-
<times srtt="25192" rttvar="36819" to="172468" />
|
238
|
-
</host>
|
239
|
-
<runstats><finished time="1218934326" timestr="Sat Aug 16 17:52:06 2008"/><hosts up="10" down="246" total="256" />
|
240
|
-
<!-- Nmap done at Sat Aug 16 17:52:06 2008; 256 IP addresses (10 hosts up) scanned in 77.148 seconds -->
|
241
|
-
</runstats></nmaprun>
|