Skip to content

Instantly share code, notes, and snippets.

@DissectMalware
Last active April 28, 2023 12:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save DissectMalware/8008c57a745754eebca8be55ed0420e6 to your computer and use it in GitHub Desktop.
Save DissectMalware/8008c57a745754eebca8be55ed0420e6 to your computer and use it in GitHub Desktop.
Take a look at recent malware instances on hybrib-analysis
# get the SHA256 hashes of recent malware instances published by Hybrid-Analysis
Invoke-WebRequest 'https://www.hybrid-analysis.com/feed?json' -Headers @{"User-Agent"="Mozilla/5.0 (Android 4.4; Mobile; rv:41.0) Gecko/41.0 Firefox/41.0"} | ConvertFrom-Json | Select-Object -Expand Data | select sha256, threatscore, vt_detect, type | Where-Object{$_.vt_detect -lt 10} | Sort-Object type,threatscore -desc
@mar-i0
Copy link

mar-i0 commented Apr 28, 2023

Nice!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment