-
Notifications
You must be signed in to change notification settings - Fork 0
/
constant.py
executable file
·28 lines (24 loc) · 1.21 KB
/
constant.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
#Add all Anti Virus's Vendors in Virustotal website
ANTIVIRUS =['Bkav','MicroWorld-eScan','CMC','CAT-QuickHeal','McAfee',
'Malwarebytes','Zillya','SUPERAntiSpyware','TheHacker',
'K7GW','K7AntiVirus','Baidu','NANO-Antivirus','F-Prot',
'Symantec','ESET-NOD32','TrendMicro-HouseCall','Avast',
'ClamAV','Kaspersky','BitDefender','Babable','AegisLab',
'Rising','Ad-Aware','Emsisoft','F-Secure','DrWeb','VIPRE',
'TrendMicro','McAfee-GW-Edition','Sophos','Cyren','Jiangmin',
'Avira','Fortinet','Antiy-AVL','Kingsoft','Arcabit','ViRobot',
'AhnLab-V3','ZoneAlarm','Avast-Mobile','Microsoft','TACHYON',
'TotalDefense','VBA32','ALYac','MAX','Zoner','Tencent','Yandex',
'Ikarus','GData','AVG','Panda','Qihoo-360']
Sleep_Time = 15 #We set wait time to 15 seconds because, Public API only can handle 4 request per minute.
AbuseIPDB_Days = 90 # Number of days to check the IP through the abuseipdb.com
class Colors:
REDBG = '\033[41m'
GREENBG = '\033[42m'
ORANGEBG = '\033[43m'
CWHITEBG = '\33[47m'
CWHITE = '\33[37m'
CVIOLETBG2 = '\33[105m'
VIRUSBG = '\33[107m'
CBLACKBG = '\33[7m'
END = '\033[0m'