-
Notifications
You must be signed in to change notification settings - Fork 23
/
课时32 操作系统识别.txt
executable file
·1094 lines (944 loc) · 31 KB
/
课时32 操作系统识别.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
课时32 操作系统识别
╋━━━━━━━━━━━━━━━╋
┃操作系统识别 ┃
┃操作系统识别技术 ┃
┃ 总类繁多 ┃
┃ 好产品采用多种技术组合 ┃
┃TTL起始值 ┃
┃ Windows: 128 (65-----128) ┃
┃ Linux/Unix: 60 (1-64) ┃
┃ 某些Unix: 255 ┃
╋━━━━━━━━━━━━━━━╋
╋━━━━━━━━━━━━━━━╋
┃操作系统识别 ┃
┃python ┃
┃ from scapy.all import ┃
┃ win="1.1.1.1" ┃
┃ linu="1.1.1.2" ┃
┃ aw=sr1(IP(dst=win)/ICMP()) ┃
┃ al=sr1(IP(dst=linu)/ICMP()) ┃
┃ if a[IP].ttl<=64 ┃
┃ print "host is Linux" ┃
┃ else ┃
┃ print "host is windows" ┃
┃ ┃
┃./ttl_os.py ┃
╋━━━━━━━━━━━━━━━╋
╭────────────────────────────────────────────╮
[ttl_os.py]
#!/usr/bin/python
from scapy.all import *
import loggging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
import sys
if len(sys.argv)!=2:
print "Usage - ./ttl_os.py [IP Address]"
print "Example - ./ttl_os.py 10.0.0.5"
print "Example will perform ttl analysis to attempt to determine whether the system is windows or Linux"
sys.exit()
ip=sys.argv[1]
ans=sr1(IP(dst=str(ip))/ICMP(),timeout=1,verbose=0)
if ans == None:
print "No response was returned"
elif int(ans[IP].ttl)<=64:
print "Host is Linux/Unix"
else:
print "Host is Windows"
╰────────────────────────────────────────────╯
root@kali:~# chmod u+x ttl_os.py
root@kali:~# ./ttl_os.py 192.168.1.133
WARNING: No route found for IPv6 destination :: (no default route?)
Host is Windows
root@kali:~# ./ttl_os.py 192.168.1.134
WARNING: No route found for IPv6 destination :: (no default route?)
Host is Linux/Unix
root@kali:~# ./ttl_os.py 192.168.1.1
WARNING: No route found for IPv6 destination :: (no default route?)
Host is Linux/Unix
╋━━━━━━━━━━━━━━━╋
┃操作系统识别 ┃
┃nmap使用多种技术识别操作系统 ┃
┃ nmap 1.1.1.1 -O ┃
┃ 系统服务特征 ┃
╋━━━━━━━━━━━━━━━╋
root@kali:~# nmap -O 192.138.1.133
Starting Nmap 6.49BETA5 ( https://nmap.org ) at 2015-10-05 01:24 CST
Nmap scan report for 192.138.1.133
Host is up (0.00073s latency).
PORT STATE SERVICE
135/tcp open msrpc
139/tcp open netbios- ssn
445/tcp open microsoft-ds
3389/tcp open ms-wbt-server
MAC Address: 80:00:27:B0:3A:76(Cadmus Computer Systems)
Device type: general purpose
Running: Microsoft Windows XP
OS CPE: cpe:/o:microsoft:windows_xp::sp2 cpe:/o:microsoft:windows_xp::sp3
OS details: microsoft Windos XP SP2 or SP3
OS detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 7.47 seconds
root@kali:~# nmap -O 192.138.1.134
tarting Nmap 6.49BETA5 ( https://nmap.org ) at 2015-10-05 01:24 CST
Nmap scan report for 192.138.1.133
Host is up (0.00073s latency).
PORT STATE SERVICE
21/tcp open ftp
22/tcp open ssh
23/tcp open telnet
25/tcp open smtb
53/tcp open domain
80/tcp open http
111/tcp open rpcbind
139/tcp open netbios-ssn
445/tcp open microsoft-ds
512/tcp open exec
513/tcp open login
514/tcp open shell
1099/tcp open rmiregistry
1524/tcp open ingreslock
2049/tcp open nfs
2121/tcp open ccproxy-ftp
3306/tcp open mysql
5432/tcp open postgresql
5900/tcp open vnc
6000/tcp open X11
6667/tcp open irc
8009/tcp open ajp13
8180/tcp open unknown
MAC Address: 80:00:27:B0:3A:76(Cadmus Computer Systems)
Device type: general purpose
Running: Linux 2.6.X
OS CPE: cpe:/o: linux: linux_kernel:2.6
OS details: Linux 2.6.9 - 2.6.33
Network Distance: 1 hop
OS detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 7.47 seconds
root@kali:~# nmap -O 192.138.1.1
Starting Nmap 6.49BETA5 ( https://nmap.org ) at 2015-10-03 16:31 CST
Nmap scan report for 192.168.1.1
Host is up (0.00082s latency).
PORT STATE SERVICE
80/tcp open http
1900/tcp open upup
MAC Address: Do:C7:C0:99:ED:3A (Tp-link Technologies Co.)
Warning: OSScan results may be unrelibale because we coule not find at least 1 open and 1 closed port
Aggressive OS guesses: Canon imageRUNNER C5185 printer (98%), VxWorks(94%), Can on imageRUNNER C2380i pinter(93%), Fujitsu Externus DX80 or IBM DCS9900 NAS divie(93%), Avaya 4526GTX switch (92%), HP ProCurve 3500yl,5406zl, or 6200yl switch or UTStarcom F100 VoIP phone(89%), Nortel CS1000M VoIP PBX or Xerox Phaser 8560DT printer(88%)
No exact OS matches for host (test conditions non-ideal).
Network distance: 1 hop
OS detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 7.47 seconds
root@kali:~# xpro
xprobe2 xpro
root@kali:~# xprobe2 192.168.1.133 //专门识别操作系统的一个工具
Xprobe2:主动操作系统指纹工具
XProbe是一款远程主机操作系统探查工具。开发者基于和Nmap相同的一些技术(same techniques),并加入了自己的创新。Xprobe通过ICMP协议来获得指纹。最新版本是Xprobe2.0.3版本,Xprobe2通过模糊矩阵统计分析主动探测数据报对应的ICMP数据报特征,进而探测得到远端操作系统的类型。注:经过本人测试,对比较老的操作系统,识别效果非常高,对新内核系统则识别效果不太准确。
下载链接:html">http://www.2cto.com/Soft/201012/25526.html
安装步骤:
#tar -zxvf xprobe2-0.3.tar.gz
#./configure --prefix=/usr/loca/
# make
#make install
用法:
#/usr/local/xprobe/bin/xprobe2 -h
Options:
-v Be verbose
-r Show route to target(traceroute)
-p Specify portnumber, protocol and state.
Example: tcp:23:open, UDP:53:CLOSED
-c Specify config file to use.
-h Print this help.
-o Use logfile to log everything.
-t Set initial receive timeout or roundtrip time.
-s Set packsending delay (milseconds).
-d Specify debugging level.
-D Disable module number .
-M Enable module number .
-L Display modules.
-m Specify number of matches to print.
-T Enable TCP portscan for specified port(s).
Example: -T21-23,53,110
-U Enable UDP portscan for specified port(s).
-f force fixed round-trip time (-t opt).
-F Generate signature (use -o to save to a file).
-X Generate XML output and save it to logfile specified with -o.
-B Options forces TCP handshake module to try to guess open TCP port
-A Perform analysis of sample packets gathered during portscan in
order to detect suspicious traffic (i.e. transparent proxies,
firewalls/NIDSs resetting connections). Use with -T.
以上个选项,读者可自己去测试。本人给出一个简单的测试,假设当前目录在/usr/local/xprobe/bin/下
#./xprobe2 www.163.com
Xprobe2 v.0.3 Copyright (c) 2002-2005 [email protected], [email protected],
[+] Target is www.163.com
[+] Loading modules.
[+] Following modules are loaded:
[x] [1] ping:icmp_ping - ICMP echo discovery module
[x] [2] ping:tcp_ping - TCP-based ping discovery module
[x] [3] ping:udp_ping - UDP-based ping discovery module
[x] [4] infogather:ttl_calc - TCP and UDP based TTL distance calculation
[x] [5] infogather:portscan - TCP and UDP PortScanner
[x] [6] fingerprint:icmp_echo - ICMP Echo request fingerprinting module
[x] [7] fingerprint:icmp_tstamp - ICMP Timestamp request fingerprinting module
[x] [8] fingerprint:icmp_amask - ICMP Address mask request fingerprinting module
[x] [9] fingerprint:icmp_port_unreach - ICMP port unreachable fingerprinting module
[x] [10] fingerprint:tcp_hshake - TCP Handshake fingerprinting module
[x] [11] fingerprint:tcp_rst - TCP RST fingerprinting module
[x] [12] fingerprint:smb - SMB fingerprinting module
[x] [13] fingerprint:snmp - SNMPv2c fingerprinting module
[+] 13 modules registered
[+] Initializing scan engine
[+] Running scan engine
[-] ping:tcp_ping module: no closed/open TCP ports known on 220.181.28.51.
Module test failed
[-] ping:udp_ping module: no closed/open UDP ports known on 220.181.28.51.
Module test failed
[-] No distance calculation. 220.181.28.51 appears to be dead or no ports known
[+] Host: 220.181.28.51 is up (Guess probability: 50%)
[+] Target: 220.181.28.51 is alive. Round-Trip Time: 0.02320 sec
[+] Selected safe Round-Trip Time value is: 0.04640 sec
[-] fingerprint:tcp_hshake Module execution aborted (no open TCP ports known)
[-] fingerprint:smb need either TCP port 139 or 445 to run
[-] fingerprint:snmp: need UDP port 161 open
[+] Primary guess:
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.6" (Guess probability: 100%)
[+] Other guesses:
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.7" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.8" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.9" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.10" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.11" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.5" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.4" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.0" (Guess probability: 100%)
[+] Host 220.181.28.51 Running OS: "Linux Kernel 2.6.1" (Guess probability: 100%)
[+] Cleaning up scan engine
[+] Modules deinitialized
[+] Execution completed
╋━━━━━━━━━━━━━━━╋
┃操作系统识别 ┃
┃被动操作系统识别 ┃
┃ IDS ┃
┃ 抓包分析 ┃
┃被动扫描 ┃
┃p0f ┃
┃ 结合ARP地址欺骗识别全网OS ┃
╋━━━━━━━━━━━━━━━╋
root@kali:~# p0f
--- p0f 3.07b by Michal Zalewski <[email protected]> ---
[+] Closed 1 file descriptor.
[+] Loaded 320 signatures from 'p0f.fp'.
[+] Intercepting traffic on default interface 'eth0'.
[+] Default packet filtering configured [+VLAN].
[+] Entered main event loop.
.-[ 192.168.1.107/50093 -> 64.233.187.136/443 (syn) ]-
|
| client = 192.168.1.107/50093
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/50093 -> 64.233.187.136/443 (mtu) ]-
|
| client = 192.168.1.107/50093
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (syn) ]-
|
| client = 192.168.1.107/50094
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (mtu) ]-
|
| client = 192.168.1.107/50094
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (uptime) ]-
|
| client = 192.168.1.107/50094
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 250.00 Hz
|
`----
^C[!] WARNING: User-initiated shutdown.
All done. Processed 10 packets.
root@kali:~# p0f
--- p0f 3.07b by Michal Zalewski <[email protected]> ---
[+] Closed 1 file descriptor.
[+] Loaded 320 signatures from 'p0f.fp'.
[+] Intercepting traffic on default interface 'eth0'.
[+] Default packet filtering configured [+VLAN].
[+] Entered main event loop.
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (syn) ]-
|
| client = 192.168.1.107/54895
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (mtu) ]-
|
| client = 192.168.1.107/54895
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (syn+ack) ]-
|
| server = 180.97.33.107/80
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (mtu) ]-
|
| server = 180.97.33.107/80
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (http request) ]-
|
| client = 192.168.1.107/54895
| app = Firefox 10.x or newer
| lang = English
| params = none
| raw_sig = 1:Host,User-Agent,Accept=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8],Accept-Language=[en-US,en;q=0.5],Accept-Encoding=[gzip, deflate],?Cookie,Connection=[keep-alive]:Accept-Charset,Keep-Alive:Mozilla/5.0 (X11; Linux i686; rv:38.0) Gecko/20100101 Firefox/38.0 Iceweasel/38.3.0
|
`----
.-[ 192.168.1.107/54895 -> 180.97.33.107/80 (http response) ]-
|
| server = 180.97.33.107/80
| app = ???
| lang = none
| params = none
| raw_sig = 1:Date,Content-Type,?Content-Length,Connection=[Keep-Alive],?Location,Server,X-UA-Compatible=[IE=Edge,chrome=1],?Set-Cookie:Keep-Alive,Accept-Ranges:BWS/1.1
|
`----
.-[ 192.168.1.107/57542 -> 180.97.33.107/443 (syn) ]-
|
| client = 192.168.1.107/57542
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57542 -> 180.97.33.107/443 (mtu) ]-
|
| client = 192.168.1.107/57542
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/57542 -> 180.97.33.107/443 (uptime) ]-
|
| client = 192.168.1.107/57542
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 258.62 Hz
|
`----
.-[ 192.168.1.107/57542 -> 180.97.33.107/443 (syn+ack) ]-
|
| server = 180.97.33.107/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57542 -> 180.97.33.107/443 (mtu) ]-
|
| server = 180.97.33.107/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/33274 -> 58.215.118.32/443 (syn) ]-
|
| client = 192.168.1.107/33274
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33274 -> 58.215.118.32/443 (mtu) ]-
|
| client = 192.168.1.107/33274
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/33274 -> 58.215.118.32/443 (uptime) ]-
|
| client = 192.168.1.107/33274
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 249.49 Hz
|
`----
.-[ 192.168.1.107/33274 -> 58.215.118.32/443 (syn+ack) ]-
|
| server = 58.215.118.32/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33274 -> 58.215.118.32/443 (mtu) ]-
|
| server = 58.215.118.32/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/57544 -> 180.97.33.107/443 (syn) ]-
|
| client = 192.168.1.107/57544
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57544 -> 180.97.33.107/443 (mtu) ]-
|
| client = 192.168.1.107/57544
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/57544 -> 180.97.33.107/443 (uptime) ]-
|
| client = 192.168.1.107/57544
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 252.34 Hz
|
`----
.-[ 192.168.1.107/57544 -> 180.97.33.107/443 (syn+ack) ]-
|
| server = 180.97.33.107/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57544 -> 180.97.33.107/443 (mtu) ]-
|
| server = 180.97.33.107/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/42700 -> 58.215.118.33/443 (syn) ]-
|
| client = 192.168.1.107/42700
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42700 -> 58.215.118.33/443 (mtu) ]-
|
| client = 192.168.1.107/42700
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/42700 -> 58.215.118.33/443 (uptime) ]-
|
| client = 192.168.1.107/42700
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 233.33 Hz
|
`----
.-[ 192.168.1.107/42701 -> 58.215.118.33/443 (syn) ]-
|
| client = 192.168.1.107/42701
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42701 -> 58.215.118.33/443 (mtu) ]-
|
| client = 192.168.1.107/42701
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/42702 -> 58.215.118.33/443 (syn) ]-
|
| client = 192.168.1.107/42702
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42702 -> 58.215.118.33/443 (mtu) ]-
|
| client = 192.168.1.107/42702
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/42700 -> 58.215.118.33/443 (syn+ack) ]-
|
| server = 58.215.118.33/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42700 -> 58.215.118.33/443 (mtu) ]-
|
| server = 58.215.118.33/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/42702 -> 58.215.118.33/443 (syn+ack) ]-
|
| server = 58.215.118.33/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42702 -> 58.215.118.33/443 (mtu) ]-
|
| server = 58.215.118.33/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/42701 -> 58.215.118.33/443 (syn+ack) ]-
|
| server = 58.215.118.33/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42701 -> 58.215.118.33/443 (mtu) ]-
|
| server = 58.215.118.33/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/42703 -> 58.215.118.33/443 (syn) ]-
|
| client = 192.168.1.107/42703
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42703 -> 58.215.118.33/443 (mtu) ]-
|
| client = 192.168.1.107/42703
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/42703 -> 58.215.118.33/443 (syn+ack) ]-
|
| server = 58.215.118.33/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/42703 -> 58.215.118.33/443 (mtu) ]-
|
| server = 58.215.118.33/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/42703 -> 58.215.118.33/443 (uptime) ]-
|
| client = 192.168.1.107/42703
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 261.90 Hz
|
`----
.-[ 192.168.1.107/33280 -> 58.215.118.32/443 (syn) ]-
|
| client = 192.168.1.107/33280
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33280 -> 58.215.118.32/443 (mtu) ]-
|
| client = 192.168.1.107/33280
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/33280 -> 58.215.118.32/443 (uptime) ]-
|
| client = 192.168.1.107/33280
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 250.87 Hz
|
`----
.-[ 192.168.1.107/33281 -> 58.215.118.32/443 (syn) ]-
|
| client = 192.168.1.107/33281
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33281 -> 58.215.118.32/443 (mtu) ]-
|
| client = 192.168.1.107/33281
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/33280 -> 58.215.118.32/443 (syn+ack) ]-
|
| server = 58.215.118.32/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33280 -> 58.215.118.32/443 (mtu) ]-
|
| server = 58.215.118.32/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/33281 -> 58.215.118.32/443 (syn+ack) ]-
|
| server = 58.215.118.32/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,2:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/33281 -> 58.215.118.32/443 (mtu) ]-
|
| server = 58.215.118.32/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/57551 -> 180.97.33.107/443 (syn) ]-
|
| client = 192.168.1.107/57551
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57551 -> 180.97.33.107/443 (mtu) ]-
|
| client = 192.168.1.107/57551
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/57551 -> 180.97.33.107/443 (uptime) ]-
|
| client = 192.168.1.107/57551
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 248.83 Hz
|
`----
.-[ 192.168.1.107/57551 -> 180.97.33.107/443 (syn+ack) ]-
|
| server = 180.97.33.107/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57551 -> 180.97.33.107/443 (mtu) ]-
|
| server = 180.97.33.107/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/38572 -> 180.97.33.108/443 (syn) ]-
|
| client = 192.168.1.107/38572
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/38572 -> 180.97.33.108/443 (mtu) ]-
|
| client = 192.168.1.107/38572
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/38572 -> 180.97.33.108/443 (uptime) ]-
|
| client = 192.168.1.107/38572
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 247.93 Hz
|
`----
.-[ 192.168.1.107/38572 -> 180.97.33.108/443 (syn+ack) ]-
|
| server = 180.97.33.108/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/38572 -> 180.97.33.108/443 (mtu) ]-
|
| server = 180.97.33.108/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/50093 -> 64.233.187.136/443 (syn) ]-
|
| client = 192.168.1.107/50093
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/50093 -> 64.233.187.136/443 (mtu) ]-
|
| client = 192.168.1.107/50093
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/50093 -> 64.233.187.136/443 (uptime) ]-
|
| client = 192.168.1.107/50093
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 253.38 Hz
|
`----
.-[ 192.168.1.107/38573 -> 180.97.33.108/443 (syn) ]-
|
| client = 192.168.1.107/38573
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/38573 -> 180.97.33.108/443 (mtu) ]-
|
| client = 192.168.1.107/38573
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/38573 -> 180.97.33.108/443 (uptime) ]-
|
| client = 192.168.1.107/38573
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 248.91 Hz
|
`----
.-[ 192.168.1.107/38573 -> 180.97.33.108/443 (syn+ack) ]-
|
| server = 180.97.33.108/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/38573 -> 180.97.33.108/443 (mtu) ]-
|
| server = 180.97.33.108/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (syn) ]-
|
| client = 192.168.1.107/50094
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (mtu) ]-
|
| client = 192.168.1.107/50094
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/50094 -> 64.233.187.136/443 (uptime) ]-
|
| client = 192.168.1.107/50094
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 259.26 Hz
|
`----
.-[ 192.168.1.107/57554 -> 180.97.33.107/443 (syn) ]-
|
| client = 192.168.1.107/57554
| os = Linux 3.11 and newer
| dist = 0
| params = none
| raw_sig = 4:64+0:0:1460:mss*20,10:mss,sok,ts,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57554 -> 180.97.33.107/443 (mtu) ]-
|
| client = 192.168.1.107/57554
| link = Ethernet or modem
| raw_mtu = 1500
|
`----
.-[ 192.168.1.107/57554 -> 180.97.33.107/443 (uptime) ]-
|
| client = 192.168.1.107/57554
| uptime = 0 days 0 hrs 8 min (modulo 198 days)
| raw_freq = 245.76 Hz
|
`----
.-[ 192.168.1.107/57554 -> 180.97.33.107/443 (syn+ack) ]-
|
| server = 180.97.33.107/443
| os = ???
| dist = 9
| params = none
| raw_sig = 4:55+9:0:1440:mss*20,7:mss,sok,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,nop,ws:df,id+:0
|
`----
.-[ 192.168.1.107/57554 -> 180.97.33.107/443 (mtu) ]-
|
| server = 180.97.33.107/443
| link = IPIP or SIT
| raw_mtu = 1480
|
`----
╋━━━━━━━━━━━━━━━━━━━━━━━━╋
┃SNMP ┃
┃snmp ┃
┃ 信息的金矿 ┃
┃ 经常被错误配置 ┃
┃ public / prtvate / manager ┃
┃MIB Tree ┃
┃ SNMP Management Informattion Base (MID) ┃
┃ 树形的网络设备管理功能数据库 ┃
┃ 1.3.6.1.4.1.77.1.2.25 ┃