-
Notifications
You must be signed in to change notification settings - Fork 130
/
CyberScan.py
540 lines (450 loc) · 13.7 KB
/
CyberScan.py
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
#!/usr/bin/python
# -*- coding utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor Boston,
# MA 02110-1301, USA.
#
# Author: Mohamed BEN ALI
import os
import sys
import platform
import argparse
import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
import time
import socket
import pygeoip
from scapy import *
from scapy.all import *
from libs.colorama import *
from libs import FileUtils
if platform.system() == 'Windows':
from libs.colorama.win32 import *
__version__ = '1.1.1'
__description__ = '''\
___________________________________________
CyberScan | v.''' + __version__ + '''
Author: BEN ALI Mohamed
___________________________________________
'''
def header():
MAYOR_VERSION = 1
MINOR_VERSION = 1
REVISION = 1
VERSION = {
"MAYOR_VERSION": MAYOR_VERSION,
"MINOR_VERSION": MINOR_VERSION,
"REVISION": REVISION
}
PROGRAM_BANNER = open(FileUtils.buildPath('banner.txt')).read().format(**VERSION)
message = Style.BRIGHT + Fore.RED + PROGRAM_BANNER + Style.RESET_ALL
write(message)
def usage():
print (''' \033[92m CyberScan v.1.1.1 http://github/medbenali/CyberScan
It is the end user's responsibility to obey all applicable laws.
It is just for server testing script. Your ip is visible. \n
___________________________________________
CyberScan | v.1.1.1
Author: BEN ALI Mohamed
___________________________________________
\n \033[0m''')
def write(string):
if platform.system() == 'Windows':
sys.stdout.write(string)
sys.stdout.flush()
sys.stdout.write('\n')
sys.stdout.flush()
else:
sys.stdout.write(string + '\n')
sys.stdout.flush()
sys.stdout.flush()
def geo_ip(host):
try:
rawdata = pygeoip.GeoIP('GeoLiteCity.dat')
data = rawdata.record_by_name(host)
country = data['country_name']
city = data['city']
longi = data['longitude']
lat = data['latitude']
time_zone = data['time_zone']
area_code = data['area_code']
country_code = data['country_code']
region_code = data['region_code']
dma_code = data['dma_code']
metro_code = data['metro_code']
country_code3 = data['country_code3']
zip_code = data['postal_code']
continent = data['continent']
print '[*] IP Address: ',host
print '[*] City: ',city
print '[*] Region Code: ',region_code
print '[*] Area Code: ',area_code
print '[*] Time Zone: ',time_zone
print '[*] Dma Code: ',dma_code
print '[*] Metro Code: ',metro_code
print '[*] Latitude: ',lat
print '[*] Longitude: ',longi
print '[*] Zip Code: ',zip_code
print '[*] Country Name: ',country
print '[*] Country Code: ',country_code
print '[*] Country Code3: ',country_code3
print '[*] Continent: ',continent
except :
print "[*] Please verify your ip !"
def arp_ping(host):
print '[*] Starting CyberScan Ping ARP for %s' %(host)
ans, unans = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=host), timeout=2)
ans.summary(lambda (s,r): r.sprintf("%Ether.src% %ARP.psrc%"))
def icmp_ping(host):
print '[*] Starting CyberScan Ping ICMP for %s' %(host)
ans, unans =srp(IP(dst=host)/ICMP())
ans.summary(lambda (s,r): r.sprint("%IP.src% is alive"))
def tcp_ping(host,dport):
ans, unans = sr(IP(dst=host)/TCP(dport,flags="S"))
ans.summary(lambda (s,r): r.sprintf("%IP.src% is alive"))
def udp_ping(host,port=0):
print '[*] Starting CyberScan Ping UDP for %s' %(host)
ans, unans = sr(IP(dst=host)/UDP(dport=port))
ans.summary(lambda(s, r): r.sprintf("%IP.src% is alive"))
def superscan(host,start_port,end_port):
print '[*] CyberScan Port Scanner'
open_ports = []
common_ports = {
'21': 'FTP',
'22': 'SSH',
'23': 'TELNET',
'25': 'SMTP',
'53': 'DNS',
'69': 'TFTP',
'80': 'HTTP',
'109': 'POP2',
'110': 'POP3',
'123': 'NTP',
'137': 'NETBIOS-NS',
'138': 'NETBIOS-DGM',
'139': 'NETBIOS-SSN',
'143': 'IMAP',
'156': 'SQL-SERVER',
'389': 'LDAP',
'443': 'HTTPS',
'546': 'DHCP-CLIENT',
'547': 'DHCP-SERVER',
'993': 'IMAP-SSL',
'995': 'POP3-SSL',
'2082': 'CPANEL',
'2083': 'CPANEL',
'2086': 'WHM/CPANEL',
'2087': 'WHM/CPANEL',
'3306' :'MYSQL',
'8443': 'PLESK',
'10000': 'VIRTUALMIN/WEBIN'
}
starting_time=time.time()
if(flag):
print "[*] Scanning For Most Common Ports On %s" % (host)
else:
print "[*] Scanning %s From Port %s To %s: " % (host,start_port,end_port)
print "[*] Starting CyberScan 1.01 at %s" %(time.strftime("%Y-%m-%d %H:%M %Z"))
def check_port(host,port,result= 1):
try:
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
sock.settimeout(0.5)
r = sock.connect_ex((host,port))
if r ==0:
result = r
sock.close()
except Exception, e:
pass
return result
def get_service(port):
port = str(port)
if port in common_ports:
return common_ports[port]
else:
return 0
try:
print "[*] Scan In Progress ..."
print "[*] Connecting To Port : ",
if flag:
for p in sorted(common_ports):
sys.stdout.flush()
p = int(p)
print p,
response = check_port(host,p)
if response ==0:
open_ports.append(p)
sys.stdout.write('\b' * len(str(p)))
else:
for p in range(start_port,end_port+1):
sys.stdout.flush()
print p,
response = check_port(host,p)
if response ==0:
open_ports.append(p)
if not p == end_port:
sys.stdout.write('\b' * len(str(p)))
print "\n[*] Scanning Completed at %s" %(time.strftime("%Y-%m-%d %H:%M %Z"))
ending_time = time.time()
total_time = ending_time - starting_time
if total_time <=60:
print "[*] CyberScan done: 1IP address (1host up) scanned in %.2f seconds" %(total_time)
else:
total_time = total_time / 60
print "[*] CyberScan done: 1IP address (1host up) scanned in %.2f Minutes" %(total_time)
if open_ports:
print "[*] Open Ports: "
for i in sorted(open_ports):
service = get_service(i)
if not service:
service= "Unknown service"
print "\t%s %s: Open" % (i,service)
else:
print "[*] Sorry, No Open Ports Found.!!"
except KeyboardInterrupt:
print "\n[*] You Pressed Ctrl+C. Exiting"
sys.exit(1)
def pcap_analyser_eth(file):
pkts = rdpcap(file)
i=0
for pkt in pkts:
i += 1
print "-" * 40
print "[*] Packet : " + str(i)
print "[+] ### [ Ethernet ] ###"
print "[*] Mac Destination : " + pkt.dst
print "[*] Mac Source : " + pkt.src
print "[*] Ethernet Type : " + str(pkt.type)
def pcap_analyser_ip(file):
pkts = rdpcap(file)
i=0
for pkt in pkts:
if pkt.haslayer(IP):
i += 1
print "-" * 40
print "[*] Packet : " + str(i)
print "[+] ###[ IP ] ###"
IPpkt = pkt[IP]
srcIP = IPpkt.fields['src']
dstIP = IPpkt.fields['dst']
print "[*] IP Source : " + srcIP
print "[*] IP Destination : " + dstIP
verIP = IPpkt.version
print "[*] IP Version : " ,verIP
ihlIP = IPpkt.ihl
print "[*] IP Ihl : " ,ihlIP
tosIP = IPpkt.tos
print "[*] IP Tos : " ,tosIP
lenIP = IPpkt.len
print "[*] IP Len : " ,lenIP
idIP = IPpkt.id
print "[*] IP Id : " ,idIP
flagsIP = IPpkt.flags
print "[*] IP Flags : " ,flagsIP
fragIP = IPpkt.frag
print "[*] IP Frag : " ,fragIP
ttlIP = IPpkt.ttl
print "[*] IP Ttl : " ,ttlIP
protoIP = IPpkt.proto
print "[*] IP Protocol : " ,protoIP
chksumIP = IPpkt.chksum
print "[*] IP Chksum : " ,chksumIP
optionsIP = IPpkt.options
print "[*] IP Options : " ,optionsIP
print "[*] IP Dump : "
print hexdump(IPpkt)
def pcap_analyser_tcp(file):
pkts = rdpcap(file)
i=0
SYN = 0x02
FIN = 0X01
RST = 0x04
PSH = 0X08
ACK = 0X10
URG = 0x20
for pkt in pkts:
if pkt.haslayer(TCP):
i += 1
print "-" * 40
print "[*] Packet : " + str(i)
print "[+] ###[ TCP ] ###"
TCPpkt = pkt[TCP]
sportTCP = TCPpkt.sport
print "[*] TCP Source Port : " ,sportTCP
dportTCP = TCPpkt.dport
print "[*] TCP Destination Port : " ,dportTCP
seqTCP = TCPpkt.seq
print "[*] TCP Seq : " ,seqTCP
ackTCP = TCPpkt.ack
print "[*] TCP Ack : " ,ackTCP
dataofsTCP = TCPpkt.dataofs
print "[*] TCP Dataofs : " ,dataofsTCP
reservedTCP = TCPpkt.reserved
print "[*] TCP Reserved : " ,reservedTCP
flagsTCP = TCPpkt.flags
print "[*] TCP Flags : " ,flagsTCP
windowTCP = TCPpkt.window
print "[*] TCP Window : " ,windowTCP
chksumTCP = TCPpkt.chksum
print "[*] TCP Chksum : " ,chksumTCP
urgptrTCP = TCPpkt.urgptr
print "[*] TCP Urgptr : " ,urgptrTCP
optionsTCP = TCPpkt.options
print "[*] TCP Options : " ,optionsTCP
nbrsyn=0
nbrrst=0
nbrack=0
nbrfin=0
nbrurg=0
nbrpsh=0
FlagsTCP=pkt[TCP].flags
if FlagsTCP==SYN:
nbrsun=1
print "[*] TCP SYN FLAGS : " ,nbrsyn
elif FlagsTCP==RST:
nbrrst=1
print "[*] TCP RST FLAGS : " ,nbrrst
elif FlagsTCP==ACK:
nbrack=1
print "[*] TCP ACK FLAGS : " ,nbrack
elif FlagsTCP==FIN:
nbrfin=1
print "[*] TCP FIN FLAGS : " ,nbrfin
elif FlagsTCP==URG:
nbrurg=1
print "[*] TCP URG FLAGS : " ,nbrurg
elif FlagsTCP==PSH:
nbrpsh=1
print "[*] TCP PSH FLAGS : " ,nbrpsh
print "[*] TCP Dump : "
print hexdump(TCPpkt)
def pcap_analyser_udp(file):
pkts = rdpcap(file)
i=0
for pkt in pkts:
if pkt.haslayer(UDP):
i += 1
print "-" * 40
print "[*] Packet : " + str(i)
print "[+] ###[ UDP ] ###"
UDPpkt = pkt[UDP]
sportUDP = UDPpkt.sport
print "[*] UDP Source Port : " ,sportUDP
dportUDP = UDPpkt.dport
print "[*] UDP Destination Port : " ,dportUDP
lenUDP = UDPpkt.len
print "[*] UDP Len : " ,lenUDP
chksumUDP = UDPpkt.chksum
print "[*] UDP Chksum : " ,chksumUDP
print "[*] UDP Dump : "
print hexdump(UDPpkt)
def pcap_analyser_icmp(file):
pkts = rdpcap(file)
i=0
for pkt in pkts:
if pkt.haslayer(ICMP):
i += 1
print "-" * 40
print "[*] Packet : " + str(i)
print "[+] ###[ ICMP ] ###"
ICMPpkt = pkt[ICMP]
typeICMP = ICMPpkt.type
print "[*] ICMP Type : " ,typeICMP
codeICMP = ICMPpkt.code
print "[*] ICMP Code : " ,codeICMP
chksumICMP = ICMPpkt.chksum
print "[*] ICMP Chksum : " ,chksumICMP
idICMP = ICMPpkt.id
print "[*] ICMP Id : " ,idICMP
seqICMP = ICMPpkt.seq
print "[*] ICMP Seq : " ,seqICMP
print "[*] ICMP Dump : "
print hexdump(ICMPpkt)
def main():
global serveur
global level
global sport
global eport
global file
global flag
flag=0
try:
parser = argparse.ArgumentParser(version=__version__,description=__description__,formatter_class=argparse.RawTextHelpFormatter,epilog='''\
levels with ip adress:
scan : scan ports
arp : ping arp
icmp : ping arp
tcp : ping tcp
udp : ping udp
geoip : geolocalisation
levels with pcap file:
eth : extract ethernet headers
ip : extract ip headers
tcp : extract tcp headers
udp : extract udp headers
icmp : extract icmp headers
''')
parser.add_argument("-s","--serveur", dest="serveur",help="attack to serveur ip")
parser.add_argument("-p","--level",dest="level",help="stack to level")
parser.add_argument("-d","--sport",dest="sport",help="start port to scan")
parser.add_argument("-t","--eport",dest="eport",help="end port to scan")
parser.add_argument("-f", "--file", dest="file",
help="read pcap file")
args = parser.parse_args()
serveur = args.serveur
file = args.file
level = args.level
sport = args.sport
eport = args.eport
if file is not None or serveur is not None:
header()
usage()
if file and level == "eth":
pcap_analyser_eth(file)
elif file and level == "ip":
pcap_analyser_ip(file)
elif file and level == "tcp":
pcap_analyser_tcp(file)
elif file and level == "udp":
pcap_analyser_udp(file)
elif file and level == "icmp":
pcap_analyser_icmp(file)
elif serveur is not None and level == "arp":
arp_ping(serveur)
elif serveur is not None and level == "icmp":
icmp_ping(serveur)
elif serveur is not None and level == "tcp" and sport is not None:
port = sport
tcp_ping(serveur,port)
elif serveur is not None and level == "scan" and sport is not None and eport is not None:
start_port = int(sport)
end_port = int(eport)
flag = 0
superscan(serveur,start_port,end_port)
elif serveur is not None and level == "scan" and sport is None and eport is None:
start_port = int(0)
end_port = int(0)
flag=1
superscan(serveur,start_port,end_port)
elif serveur is not None and level == "udp":
udp_ping(serveur,port=0)
elif serveur is not None and level == "geoip":
geo_ip(serveur)
else:
print '''usage: CyberScan.py [-h] [-s SERVEUR] [-p LEVEL] [-d SPORT] [-t EPORT]
[-f FILE]
use cyberscan -h to help '''
except KeyboardInterrupt:
print "\n[*] You Pressed Ctrl+C. Exiting"
sys.exit(1)
if __name__ == '__main__':
main()