-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnmap report
executable file
·1472 lines (1271 loc) · 51.4 KB
/
nmap report
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
MAC Address: 52:54:00:80:05:D7 (QEMU Virtual NIC)
Nmap scan report for xunzei02.local (192.168.122.183)
Host is up (0.00082s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:1D:DB:58 (QEMU Virtual NIC)
Nmap scan report for xkubic22.local (192.168.122.184)
Host is up (0.00096s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:07:44:45 (QEMU Virtual NIC)
Nmap scan report for xkubis13.local (192.168.122.188)
Host is up (0.0011s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:AC:4D:66 (QEMU Virtual NIC)
Nmap scan report for xviden04.local (192.168.122.189)
Host is up (0.00058s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:AB:43:09 (QEMU Virtual NIC)
Nmap scan report for xjosef00.local (192.168.122.191)
Host is up (0.00074s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:13:FF:6C (QEMU Virtual NIC)
Nmap scan report for ptest2.local (192.168.122.192)
Host is up (0.00018s latency).
Not shown: 996 closed ports
PORT STATE SERVICE VERSION
21/tcp open ftp vsftpd 2.3.4
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
80/tcp open http Apache httpd 2.2.15 ((CentOS))
3306/tcp open mysql MySQL (unauthorized)
MAC Address: 52:54:00:1B:9D:C1 (QEMU Virtual NIC)
Service Info: OS: Unix
Nmap scan report for xpolan07.local (192.168.122.193)
Host is up (0.00089s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D6:92:4B (QEMU Virtual NIC)
Nmap scan report for xbirge00.local (192.168.122.194)
Host is up (0.00078s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:AC:5B:62 (QEMU Virtual NIC)
Nmap scan report for xpustk00.local (192.168.122.195)
Host is up (0.00073s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:DD:87:46 (QEMU Virtual NIC)
Nmap scan report for xhavle03.local (192.168.122.197)
Host is up (0.00074s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:A9:9A:72 (QEMU Virtual NIC)
Nmap scan report for xholcm04.local (192.168.122.198)
Host is up (0.0012s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:F6:25:FB (QEMU Virtual NIC)
Nmap scan report for 192.168.122.201
Host is up (0.00048s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B0:03:D3 (QEMU Virtual NIC)
Nmap scan report for xcillo00.local (192.168.122.202)
Host is up (0.00098s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:51:F2:26 (QEMU Virtual NIC)
Nmap scan report for xgalda01.local (192.168.122.203)
Host is up (0.00076s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:AC:A9:E6 (QEMU Virtual NIC)
Nmap scan report for xdvora0w.local (192.168.122.204)
Host is up (0.00093s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:6B:3F:CC (QEMU Virtual NIC)
Nmap scan report for xhanus11.local (192.168.122.205)
Host is up (0.00068s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:80:F8:D1 (QEMU Virtual NIC)
Nmap scan report for xricht21.local (192.168.122.206)
Host is up (0.00052s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E4:C0:A8 (QEMU Virtual NIC)
Nmap scan report for xgavry00.local (192.168.122.210)
Host is up (0.0011s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:9D:7D:C7 (QEMU Virtual NIC)
Nmap scan report for xholub31.local (192.168.122.211)
Host is up (0.00068s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:9D:8A:09 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.216
Host is up (0.00071s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:98:86:EB (QEMU Virtual NIC)
Nmap scan report for 192.168.122.220
Host is up (0.00055s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:83:89:AD (QEMU Virtual NIC)
Nmap scan report for xkalus02.local (192.168.122.221)
Host is up (0.00071s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:4C:2A:A4 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.227
Host is up (0.00064s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2D:EE:27 (QEMU Virtual NIC)
Nmap scan report for xjanou14.local (192.168.122.228)
Host is up (0.00076s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:67:6D:98 (QEMU Virtual NIC)
Nmap scan report for xrezna02.local (192.168.122.229)
Host is up (0.00079s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:CD:A1:CC (QEMU Virtual NIC)
Nmap scan report for xhadac02.local (192.168.122.237)
Host is up (0.00050s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:67:AA:09 (QEMU Virtual NIC)
Nmap scan report for xklima22.local (192.168.122.238)
Host is up (0.00077s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:6A:8E:E1 (QEMU Virtual NIC)
Nmap scan report for xjuhan01.local (192.168.122.239)
Host is up (0.00048s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:7E:DD:3C (QEMU Virtual NIC)
Nmap scan report for xkrekr00.local (192.168.122.240)
Host is up (0.00066s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D3:10:37 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.241
Host is up (0.00068s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E2:B1:A0 (QEMU Virtual NIC)
Nmap scan report for xsemml01.local (192.168.122.242)
Host is up (0.00067s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2E:53:31 (QEMU Virtual NIC)
Nmap scan report for xdvora0y.local (192.168.122.243)
Host is up (0.00061s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:34:28:25 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.244
Host is up (0.0010s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:3D:7E:A3 (QEMU Virtual NIC)
Nmap scan report for xberek00.local (192.168.122.245)
Host is up (0.00066s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:73:05:C0 (QEMU Virtual NIC)
Nmap scan report for xtulak00.local (192.168.122.246)
Host is up (0.00067s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5A:1E:1D (QEMU Virtual NIC)
Nmap scan report for xpelan03.local (192.168.122.248)
Host is up (0.00058s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:18:A4:31 (QEMU Virtual NIC)
Nmap scan report for xpicka02.local (192.168.122.249)
Host is up (0.00067s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:71:52:0A (QEMU Virtual NIC)
Nmap scan report for xchalk00.local (192.168.122.251)
Host is up (0.00063s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:88:CD:77 (QEMU Virtual NIC)
Nmap scan report for xpopko00.local (192.168.122.253)
Host is up (0.00067s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:C4:8F:C6 (QEMU Virtual NIC)
Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .
Nmap done: 256 IP addresses (161 hosts up) scanned in 203.21 seconds
[student@xsulak04 ~]$ nmap -sV 192.168.122.2/24
Starting Nmap 5.51 ( http://nmap.org ) at 2016-11-13 05:44 CET
Stats: 0:00:21 elapsed; 35 hosts completed (64 up), 64 undergoing SYN Stealth Scan
SYN Stealth Scan Timing: About 16.05% done; ETC: 05:46 (0:01:29 remaining)
Stats: 0:01:10 elapsed; 35 hosts completed (64 up), 64 undergoing SYN Stealth Scan
SYN Stealth Scan Timing: About 98.98% done; ETC: 05:45 (0:00:01 remaining)
Stats: 0:01:11 elapsed; 35 hosts completed (64 up), 64 undergoing SYN Stealth Scan
SYN Stealth Scan Timing: About 100.00% done; ETC: 05:45 (0:00:00 remaining)
Stats: 0:01:17 elapsed; 35 hosts completed (64 up), 64 undergoing Service Scan
Service scan Timing: About 95.65% done; ETC: 05:46 (0:00:00 remaining)
Nmap scan report for 192.168.122.1
Host is up (0.0051s latency).
Not shown: 996 closed ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 6.6.1 (protocol 2.0)
53/tcp open domain dnsmasq 2.66
111/tcp open rpcbind 2-4 (rpc #100000)
3306/tcp open mysql?
1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at http://www.insecure.org/cgi-bin/servicefp-submit.cgi :
SF-Port3306-TCP:V=5.51%I=7%D=11/13%Time=5827F004%P=i386-redhat-linux-gnu%r
SF:(NULL,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x2
SF:0to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(GenericLines,47,"
SF:C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20con
SF:nect\x20to\x20this\x20MariaDB\x20server")%r(GetRequest,47,"C\0\0\0\xffj
SF:\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20connect\x20to\x
SF:20this\x20MariaDB\x20server")%r(HTTPOptions,47,"C\0\0\0\xffj\x04Host\x2
SF:0'xsulak04'\x20is\x20not\x20allowed\x20to\x20connect\x20to\x20this\x20M
SF:ariaDB\x20server")%r(RTSPRequest,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'
SF:\x20is\x20not\x20allowed\x20to\x20connect\x20to\x20this\x20MariaDB\x20s
SF:erver")%r(RPCCheck,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\
SF:x20allowed\x20to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(DNSV
SF:ersionBindReq,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20al
SF:lowed\x20to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(DNSStatus
SF:Request,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\
SF:x20to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(Help,47,"C\0\0\
SF:0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20connect\x
SF:20to\x20this\x20MariaDB\x20server")%r(SSLSessionReq,47,"C\0\0\0\xffj\x0
SF:4Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20connect\x20to\x20t
SF:his\x20MariaDB\x20server")%r(SMBProgNeg,47,"C\0\0\0\xffj\x04Host\x20'xs
SF:ulak04'\x20is\x20not\x20allowed\x20to\x20connect\x20to\x20this\x20Maria
SF:DB\x20server")%r(X11Probe,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\
SF:x20not\x20allowed\x20to\x20connect\x20to\x20this\x20MariaDB\x20server")
SF:%r(FourOhFourRequest,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20no
SF:t\x20allowed\x20to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(LP
SF:DString,47,"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\
SF:x20to\x20connect\x20to\x20this\x20MariaDB\x20server")%r(LDAPBindReq,47,
SF:"C\0\0\0\xffj\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20co
SF:nnect\x20to\x20this\x20MariaDB\x20server")%r(SIPOptions,47,"C\0\0\0\xff
SF:j\x04Host\x20'xsulak04'\x20is\x20not\x20allowed\x20to\x20connect\x20to\
SF:x20this\x20MariaDB\x20server");
MAC Address: 52:54:00:52:BE:C2 (QEMU Virtual NIC)
Nmap scan report for xsznap02.local (192.168.122.2)
Host is up (0.00041s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2A:AC:88 (QEMU Virtual NIC)
Nmap scan report for xmatya05.local (192.168.122.3)
Host is up (0.00043s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:CD:FC:A6 (QEMU Virtual NIC)
Nmap scan report for xknapi00.local (192.168.122.4)
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5B:3A:58 (QEMU Virtual NIC)
Nmap scan report for xmikus15.local (192.168.122.5)
Host is up (0.00039s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:C0:52:5F (QEMU Virtual NIC)
Nmap scan report for xprost01.local (192.168.122.6)
Host is up (0.00045s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:97:6B:A0 (QEMU Virtual NIC)
Nmap scan report for student.local (192.168.122.7)
Host is up (0.00039s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E9:3B:8C (QEMU Virtual NIC)
Nmap scan report for 192.168.122.8
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:F8:18:80 (QEMU Virtual NIC)
Nmap scan report for xocena04.local (192.168.122.9)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5D:F1:14 (QEMU Virtual NIC)
Nmap scan report for xbordo04.local (192.168.122.11)
Host is up (0.00039s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B6:CE:0D (QEMU Virtual NIC)
Nmap scan report for xbajan01.local (192.168.122.13)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:92:83:72 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.15
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2A:E6:D8 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.16
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:1B:99:37 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.17
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:7F:CD:3B (QEMU Virtual NIC)
Nmap scan report for 192.168.122.18
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:58:46:2B (QEMU Virtual NIC)
Nmap scan report for 192.168.122.19
Host is up (0.00042s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:C4:2D:21 (QEMU Virtual NIC)
Nmap scan report for xrorec00.local (192.168.122.20)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:DC:C1:93 (QEMU Virtual NIC)
Nmap scan report for xvaisr00.local (192.168.122.26)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:10:F2:BF (QEMU Virtual NIC)
Nmap scan report for 192.168.122.27
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:3A:A2:A0 (QEMU Virtual NIC)
Nmap scan report for xletav00.local (192.168.122.28)
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:53:77:76 (QEMU Virtual NIC)
Nmap scan report for xzobal00.local (192.168.122.29)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:54:0D:4D (QEMU Virtual NIC)
Nmap scan report for xzatlo20.local (192.168.122.34)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:65:A0:99 (QEMU Virtual NIC)
Nmap scan report for xnechu01.local (192.168.122.40)
Host is up (0.00041s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:57:FA:10 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.41
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:A7:44:22 (QEMU Virtual NIC)
Nmap scan report for xsvace02.local (192.168.122.42)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D1:28:02 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.43
Host is up (0.00042s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B3:2B:6D (QEMU Virtual NIC)
Nmap scan report for xdusek21.local (192.168.122.44)
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:67:76:46 (QEMU Virtual NIC)
Nmap scan report for xsimek23.local (192.168.122.45)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:16:F2:5D (QEMU Virtual NIC)
Nmap scan report for xtutko00.local (192.168.122.46)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:C2:6A:1F (QEMU Virtual NIC)
Nmap scan report for ptest4.local (192.168.122.48)
Host is up (0.00032s latency).
Not shown: 998 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
80/tcp open http Apache httpd 2.2.15 ((CentOS))
MAC Address: 52:54:00:59:22:D3 (QEMU Virtual NIC)
Nmap scan report for xgongo01.local (192.168.122.50)
Host is up (0.00044s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:98:1B:25 (QEMU Virtual NIC)
Nmap scan report for xmilko01.local (192.168.122.51)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:EA:BB:0D (QEMU Virtual NIC)
Nmap scan report for xdobis00.local (192.168.122.52)
Host is up (0.00043s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:77:7C:AE (QEMU Virtual NIC)
Nmap scan report for xdibda00.local (192.168.122.54)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:14:5B:75 (QEMU Virtual NIC)
Nmap scan report for xpilat05.local (192.168.122.55)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:6B:35:19 (QEMU Virtual NIC)
Nmap scan report for xcerno19.local (192.168.122.57)
Host is up (0.00039s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:81:5A:16 (QEMU Virtual NIC)
Nmap scan report for xhlavo01.local (192.168.122.58)
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:73:27:35 (QEMU Virtual NIC)
Nmap scan report for xhmela00.local (192.168.122.59)
Host is up (0.00045s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:DF:0E:2C (QEMU Virtual NIC)
Nmap scan report for xmatou21.local (192.168.122.60)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D2:5C:53 (QEMU Virtual NIC)
Nmap scan report for xbankt00.local (192.168.122.61)
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:62:C6:F7 (QEMU Virtual NIC)
Nmap scan report for xmelic17.local (192.168.122.62)
Host is up (0.00032s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:66:9D:D1 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.63
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:17:39:14 (QEMU Virtual NIC)
Nmap scan report for xvidom00.local (192.168.122.64)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:03:90:D4 (QEMU Virtual NIC)
Nmap scan report for xdrape02.local (192.168.122.67)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:FF:76:6A (QEMU Virtual NIC)
Nmap scan report for ptest3.local (192.168.122.70)
Host is up (0.00042s latency).
Not shown: 998 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
23/tcp open telnet Linux telnetd
MAC Address: 52:54:00:50:8F:91 (QEMU Virtual NIC)
Service Info: OS: Linux
Nmap scan report for xjerab18.local (192.168.122.71)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5A:86:6B (QEMU Virtual NIC)
Nmap scan report for xlisti00.local (192.168.122.75)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B8:1F:4F (QEMU Virtual NIC)
Nmap scan report for xjasen00.local (192.168.122.78)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B4:28:B1 (QEMU Virtual NIC)
Nmap scan report for xporiz03.local (192.168.122.79)
Host is up (0.00062s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:F3:1F:7B (QEMU Virtual NIC)
Nmap scan report for xrekpe00.local (192.168.122.80)
Host is up (0.00065s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E7:96:10 (QEMU Virtual NIC)
Nmap scan report for xproko26.local (192.168.122.82)
Host is up (0.00044s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:7A:36:C4 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.83
Host is up (0.00042s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2F:17:22 (QEMU Virtual NIC)
Nmap scan report for xlukas09.local (192.168.122.85)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:84:11:08 (QEMU Virtual NIC)
Nmap scan report for xmarti62.local (192.168.122.86)
Host is up (0.00042s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:95:CD:28 (QEMU Virtual NIC)
Nmap scan report for xmazur06.local (192.168.122.87)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:3E:11:B9 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.88
Host is up (0.00049s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D6:A0:D6 (QEMU Virtual NIC)
Nmap scan report for xspetk00.local (192.168.122.89)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:DC:43:37 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.91
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:85:70:E4 (QEMU Virtual NIC)
Nmap scan report for xletyp00.local (192.168.122.92)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:82:E6:16 (QEMU Virtual NIC)
Nmap scan report for xberan33.local (192.168.122.94)
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:60:CC:DA (QEMU Virtual NIC)
Nmap scan report for 192.168.122.95
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:86:CE:0C (QEMU Virtual NIC)
Nmap scan report for xhrbek03.local (192.168.122.96)
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:DB:16:F9 (QEMU Virtual NIC)
Nmap scan report for xhabar03.local (192.168.122.97)
Host is up (0.00041s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:B1:52:E0 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.98
Host is up (0.00032s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:79:DF:CE (QEMU Virtual NIC)
Stats: 0:01:22 elapsed; 125 hosts completed (120 up), 56 undergoing SYN Stealth Scan
SYN Stealth Scan Timing: About 4.10% done; ETC: 05:48 (0:01:57 remaining)
Stats: 0:01:27 elapsed; 125 hosts completed (120 up), 56 undergoing SYN Stealth Scan
SYN Stealth Scan Timing: About 9.01% done; ETC: 05:47 (0:01:41 remaining)
Stats: 0:02:21 elapsed; 125 hosts completed (120 up), 56 undergoing Service Scan
Service scan Timing: About 96.55% done; ETC: 05:47 (0:00:00 remaining)
Nmap scan report for xkonar08.local (192.168.122.102)
Host is up (0.00031s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E8:56:DF (QEMU Virtual NIC)
Nmap scan report for xkubov04.local (192.168.122.103)
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:7A:B2:13 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.104
Host is up (0.00038s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:BA:36:4D (QEMU Virtual NIC)
Nmap scan report for xknote10.local (192.168.122.105)
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:9D:F1:E4 (QEMU Virtual NIC)
Nmap scan report for xbenom01.local (192.168.122.106)
Host is up (0.00045s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:3D:CF:B9 (QEMU Virtual NIC)
Nmap scan report for xpokor62.local (192.168.122.107)
Host is up (0.00042s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:2F:2D:DA (QEMU Virtual NIC)
Nmap scan report for 192.168.122.108
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:3E:67:FA (QEMU Virtual NIC)
Nmap scan report for xorave04.local (192.168.122.110)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D7:45:72 (QEMU Virtual NIC)
Nmap scan report for xherec00.local (192.168.122.111)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:6A:F0:1C (QEMU Virtual NIC)
Nmap scan report for 192.168.122.112
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5C:C0:5D (QEMU Virtual NIC)
Nmap scan report for xkrusi00.local (192.168.122.113)
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:19:52:92 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.114
Host is up (0.00040s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:24:D5:9A (QEMU Virtual NIC)
Nmap scan report for xsujan02.local (192.168.122.115)
Host is up (0.00057s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:65:60:60 (QEMU Virtual NIC)
Nmap scan report for xstude22.local (192.168.122.116)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:9E:07:B6 (QEMU Virtual NIC)
Nmap scan report for xkorgo01.local (192.168.122.118)
Host is up (0.00031s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:1B:93:5A (QEMU Virtual NIC)
Nmap scan report for xvence00.local (192.168.122.120)
Host is up (0.00031s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:C3:E8:51 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.121
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:42:E5:B8 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.122
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:0C:A6:09 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.123
Host is up (0.00032s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:D3:6E:A3 (QEMU Virtual NIC)
Nmap scan report for xpucal01.local (192.168.122.124)
Host is up (0.00030s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:1E:DE:81 (QEMU Virtual NIC)
Nmap scan report for xradak01.local (192.168.122.125)
Host is up (0.00033s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:5C:7B:51 (QEMU Virtual NIC)
Nmap scan report for xlipta02.local (192.168.122.126)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:46:B7:0C (QEMU Virtual NIC)
Nmap scan report for 192.168.122.127
Host is up (0.00033s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:22:DD:D3 (QEMU Virtual NIC)
Nmap scan report for 192.168.122.128
Host is up (0.00035s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:47:E4:52 (QEMU Virtual NIC)
Nmap scan report for xbezde11.local (192.168.122.129)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:4E:72:06 (QEMU Virtual NIC)
Nmap scan report for xbecka02.local (192.168.122.130)
Host is up (0.00037s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:9C:0D:86 (QEMU Virtual NIC)
Nmap scan report for xdebef01.local (192.168.122.131)
Host is up (0.00043s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:E9:AF:90 (QEMU Virtual NIC)
Nmap scan report for xtomec08.local (192.168.122.132)
Host is up (0.00036s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:08:62:9F (QEMU Virtual NIC)
Nmap scan report for xkutla01.local (192.168.122.133)
Host is up (0.00030s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:15:82:C5 (QEMU Virtual NIC)
Nmap scan report for xpavel27.local (192.168.122.136)
Host is up (0.00034s latency).
Not shown: 999 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
MAC Address: 52:54:00:7B:C5:F9 (QEMU Virtual NIC)
Nmap scan report for ptest1.local (192.168.122.138)
Host is up (0.00040s latency).
Not shown: 997 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 5.3 (protocol 2.0)
80/tcp open http Apache httpd 2.2.15 ((CentOS))