Hunt

Hunt IOCs in different environments


Hunt

Hunt IOCs in different environments


  1. Get raw IOCs
  2. Hunting with Microsoft Defender for Endpoint (MDE)

1. Get raw IOCs

Example - getting suspicious URLs from today:
curl -s https://api.tweetfeed.live/v1/today | jq -r '.[] | select(.type == "url") | .value' > suspicious_urls.dat 
Output example:
url1
url2
url3
url4
...

Example - getting IPs related to CobaltStrike from this week:
curl -s https://api.tweetfeed.live/v1/week | jq -r '.[] | select(.type == "ip") | select(.tags[] | contains("CobaltStrike")) | .value' > iocs_CS.dat 
Output example:
ip1
ip2
ip3
ip4
...

2. Hunting with Microsoft Defender for Endpoint (MDE) More info