### Query IOCs by Tag Source: https://github.com/abusech/threatfox/blob/main/README.md Fetches recent IOCs from ThreatFox that are associated with a given tag. Requires an Auth-Key and the tag name. ```python python3 threatfox_query_tag.py AS_DELIS ``` -------------------------------- ### Query Recent IOCs from ThreatFox Source: https://github.com/abusech/threatfox/blob/main/README.md Queries the ThreatFox API for the most recent IOCs added within a specified time frame. Requires an Auth-Key and the number of days to look back. ```python python3 threatfox_query_recent-iocs.py 1 ``` -------------------------------- ### Query IOCs for a Malware Family Source: https://github.com/abusech/threatfox/blob/main/README.md Retrieves recent IOCs associated with a specific malware family from the ThreatFox API. Requires an Auth-Key, the malware family name, and the number of IOCs to retrieve. ```python python3 threatfox_query_malware.py CobaltStrike 50 ``` -------------------------------- ### Search for an IOC in ThreatFox Source: https://github.com/abusech/threatfox/blob/main/README.md Searches the ThreatFox database for a specific Indicator of Compromise (IOC). Requires an Auth-Key and the IOC to search for. ```python python3 threatfox_search_ioc.py ntpjson.monster ``` -------------------------------- ### Submit an IOC to ThreatFox Source: https://github.com/abusech/threatfox/blob/main/README.md Submits a new Indicator of Compromise (IOC) to the ThreatFox platform. Ensure you have read the submission policy before use. ```python python3 threatfox_submit_ioc.py ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.