Last active
October 10, 2017 01:01
-
-
Save fhightower/34ea7804dd1165e87b878847b59ac8a2 to your computer and use it in GitHub Desktop.
Simple Indicator defanging using https://github.com/ioc-fang/defanging-dataset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import requests | |
url = "https://ioc-fang.github.io/defanging-dataset/defang.json" | |
r = requests.get(url) | |
defangings = json.loads(r.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment