Introduction
A Fast and Reliable service that enables you to extract IOCs and intelligence from different data sources.
Why
Example
curl --location --request POST 'https://api.iocparser.com/url' \
--header 'Content-Type: application/json' \
--data '{
"url": "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt"
}'import requests
url = "https://api.iocparser.com/url"
payload = {
"url": "https://blocklist.cyberthreatcoalition.org/vetted/domain.txt"
}
headers = {
'Content-Type': 'application/json',
}
response = requests.request("POST", url, headers=headers, json = payload)
print(response.text.encode('utf8'))package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.iocparser.com/url"
method := "POST"
payload := strings.NewReader("{\n \"url\": \"https://blocklist.cyberthreatcoalition.org/vetted/domain.txt\"\n}")
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
}IOC Types Supported
IOC Types Planned
Last updated