Add Web of Trust

pull/4/head
daffainfo 2021-11-19 06:17:04 +07:00
parent 274308f6f1
commit 719a90ff0d
2 changed files with 71 additions and 1 deletions

View File

@ -5,5 +5,9 @@ list of anti-malware API
* [AbuseIPDB](AbuseIPDB.md)
* [AlienVault Open Threat Exchange (OTX)](AlienVault%20Open%20Threat%20Exchange.md)
* [Google Safe Browsing](Google%20Safe%20Browsing.md)
* [MalShare](MalShare.md)
* [MalwareBazaar](MalwareBazaar.md)
* [Scanii](Scanii.md)
* [URLScan.io](URLScan.md)
* [VirusTotal](VirusTotal.md)
* [VirusTotal](VirusTotal.md)
* [Web of Trust](Web%20of%20Trust.md)

View File

@ -0,0 +1,66 @@
# [Web of Trust](https://support.mywot.com/hc/en-us/sections/360004477734-API-)
## __Description__
IP/domain/URL reputation
## __Example Request__
* Curl
```
curl -H "x-user-id: USERID" -H "x-api-key: YOURAPIKEY" -X GET "https://scorecard.api.mywot.com/v3/targets?t=hbo.com&t=google.com"
```
* Raw
```
GET /v3/targets?t=hbo.com&t=google.com HTTP/1.1
Host: scorecard.api.mywot.com
x-user-id: USERID
x-api-key: YOURAPIKEY
```
## __Response__
* Success
```
[
{
"target":"hbo.com",
"safety":{
"status":"SAFE",
"reputations":93,
"confidence":59
},"childSafety":{
"reputations":90,
"confidence":52
},"categories":[
{
"id":501,
"name":"good site",
...
}
]
}
]
```
* Error
```
```
> No output if error
## __Regex__
* User ID
```
[0-9]{7}
```
* API Key
```
[a-z0-9]{40}
```
## __Example key__
* User ID
```
1234567
```
* API Key
```
tue3sv9hzsey1me4l7fwq3t46u5k8wagabcdefgh
```