Last active
April 28, 2023 12:42
-
-
Save DissectMalware/8008c57a745754eebca8be55ed0420e6 to your computer and use it in GitHub Desktop.
Take a look at recent malware instances on hybrib-analysis
This file contains 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
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice!!