-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfile_scanner.py
70 lines (37 loc) · 1.59 KB
/
file_scanner.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
import cloudmersive_virus_api_client as virus_scan
from cloudmersive_virus_api_client.rest import ApiException
import cloudmersive_security_api_client as security_scan
from cloudmersive_security_api_client.rest import ApiException
from pprint import pprint
api_key = input("Enter in your API key: ")
def main():
path = input("Enter in your file path: ")
print("Which scan would you like to perform on the file?: ")
print("1. Virus Scan")
print("2. Security Scan")
choice = int(input("Enter in your choice (1 or 2): "))
if choice == 1:
config = virus_scan.Configuration()
config.api_key["Apikey"] = api_key
instance = virus_scan.ScanApi(virus_scan.ApiClient(config))
try:
response = instance.scan_file(path)
pprint(f"Virus Scan Results: {response}")
except ApiException as a:
print(a)
elif choice == 2:
config = virus_scan.Configuration()
config.api_key["Apikey"] = api_key
instance = security_scan.ContentThreatDetectionApi(security_scan.ApiClient(config))
try:
response = instance.content_threat_detection_automatic_threat_detection_string(path)
pprint(f"Security Scan Results: {response}")
except ApiException as a:
print(a)
else:
print("Invalid choice. Please choose again.")
while True:
main()
scan_again = input("Do you want to scan another file (y/n)?: ")
if scan_again == "n" or scan_again == "N":
break