(miniProject) Python을 이용한 VirusTotal 검사 여부 확인 프로그램
2021. 7. 16. 17:08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import requests
url = 'https://www.virustotal.com/vtapi/v2/file/report'
apikey = 'virustotal 본인 apikey'
resource_value = '검사하고자 하는 value'
params = {'apikey': apikey, 'resource' : resource_value}
response = requests.get(url, params=params)
result = response.json()
ct = 0
for x in result["scans"]:
if result["scans"][x]["detected"]:
ct = ct + 1
print("{0:22} : {1}".format(x, result['scans'][x]['result']))
print("detected :{0}".format(ct))
|
cs |
'Project' 카테고리의 다른 글
(miniProject) Java를 이용한 WordGameProgram (0) | 2021.09.03 |
---|---|
(miniProject) Java를 이용한 BankingSystem (0) | 2021.08.23 |
(soloProject) 과일 가격 알아보기(2021-06-30 完) (0) | 2021.07.16 |