Dviros / TweetFeed

Collecting IOCs posted on Twitter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TweetFeed

Feeds of IOCs posted on Twitter

Web version at TweetFeed.live

Content

Data collected

Feeds
2021-10-31 10:58:25 (UTC)
Today Last 7 days Last 30 days Last 365 days
πŸ“‹ Today (raw) πŸ“‹ Week (raw) πŸ“‹ Month (raw) πŸ“‹ Year (raw)

Output example

Date (UTC) SourceUser Type Value Tags Tweet
2021-08-14 02:26:32 phishunt_io url https://netflix.us2.cards/ #phishing #scam https://twitter.com/phishunt_io/status/1426369619422502917
2021-08-17 12:15:00 TheDFIRReport ip 185.56.76.94 #Trickbot https://twitter.com/TheDFIRReport/status/1427604874053578756

Some statistics

IOCs

IOC Today Week Month Year
πŸ”— URLs 102 1873 10063 25353
🌐 Domains 1 163 910 2520
🚩 IPs 89 1551 7410 17762
πŸ”’ SHA256 39 1619 6110 15883
πŸ”’ MD5 0 53 208 646

Tags

Tag Today Week Month Year
#phishing 172 2432 12653 32371
#scam 4 247 1177 3441
#malware 29 682 2622 6321
#ransomware 0 20 52 183
#banker 0 2 4 16
#AgentTesla 0 183 971 2308
#Alienbot 0 0 13 83
#BazarLoader 0 5 37 132
#CobaltStrike 3 550 3116 6676
#Dridex 0 27 62 4821
#FluBot 0 0 8 13
#Formbook 8 459 1680 2139
#GootLoader 0 4 24 112
#GuLoader 0 4 138 198
#Hancitor 0 5 43 92
#IceID 0 0 0 0
#Lazarus 0 2 12 17
#Lokibot 0 66 331 592
#ProxyShell 0 6 24 85
#Qakbot 0 11 76 108
#Raccoon 4 141 576 825
#RedLine 12 148 637 1261
#Remcos 0 228 373 548
#SquirrelWaffle 0 4 4 50
#Trickbot 0 16 49 94
#Ursnif 0 11 45 124
#XLoader 0 18 26 28
#ZLoader 0 0 3 6

Top reporters (today)

Number User IOCs
#1 romonlyht 82
#2 secbird1 56
#3 HeliosCert 27
#4 RedBeardIOCs 24
#5 PhishStats 8
#6 ecarlesi 7
#7 KesaGataMe0 7
#8 phishunt_io 4
#9 MalwarePatrol 3
#10 RdpSnitch 3

How it works?

Search tweets that contain certain tags or that are posted by certain infosec people.

Tags being searched

(not case sensitive)
- #phishing
- #scam
- #malware
- #ransomware
- #banker
- #AgentTesla
- #Alienbot
- #BazarLoader
- #CobaltStrike
- #Dridex
- #FluBot
- #Formbook
- #GootLoader
- #GuLoader
- #Hancitor
- #IceID
- #Lazarus
- #Lokibot
- #ProxyShell
- #Qakbot
- #Raccoon
- #RedLine
- #Remcos
- #SquirrelWaffle
- #Trickbot
- #Ursnif
- #XLoader
- #ZLoader

Also search Tweets posted by

(these are trusted folks that sometimes don't use tags)

TweetFeed list

IOCs being collected

- URL
- Domain
- IP address
- SHA256 hash
- MD5 hash

Hunting IOCs via Microsoft Defender

1. Search SHA256 hashes with yearly tweets feed

let MaxAge = ago(30d);
let SHA256_whitelist = pack_array(
'XXX' // Some SHA256 hash you want to whitelist.
);
let TweetFeed = materialize (
    (externaldata(report:string)
    [@"https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/year.csv"]
    with (format = "txt"))
    | extend report = parse_csv(report)
    | extend Type = tostring(report[2])
    | where Type == 'sha256'
    | extend SHA256 = tostring(report[3])
    | where SHA256 !in(SHA256_whitelist)
    | extend Tag = tostring(report[4])
    | extend Tweet = tostring(report[5])
    | project SHA256, Tag, Tweet 
);
union (
    TweetFeed
    | join (
        DeviceProcessEvents
        | where Timestamp > MaxAge
    ) on SHA256
), (
    TweetFeed
    | join (
        DeviceFileEvents
        | where Timestamp > MaxAge
    ) on SHA256
), ( 
    TweetFeed
    | join (
        DeviceImageLoadEvents
        | where Timestamp > MaxAge
    ) on SHA256
) | project Timestamp, DeviceName, FileName, FolderPath, SHA256, Tag, Tweet

2. Search IP addresses with monthly tweets feed

let MaxAge = ago(30d);
let IPaddress_whitelist = pack_array(
'XXX' // Some IP address you want to whitelist.
);
let TweetFeed = materialize (
    (externaldata(report:string)
    [@"https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/month.csv"]
    with (format = "txt"))
    | extend report = parse_csv(report)
    | extend Type = tostring(report[2])
    | where Type == 'ip'
    | extend RemoteIP = tostring(report[3])
    | where RemoteIP !in(IPaddress_whitelist)
    | where not(ipv4_is_private(RemoteIP))
    | extend Tag = tostring(report[4])
    | extend Tweet = tostring(report[5])
    | project RemoteIP, Tag, Tweet 
);
union (
TweetFeed
    | join (
        DeviceNetworkEvents
    | where Timestamp > MaxAge
    ) on RemoteIP
) | project Timestamp, DeviceName, RemoteIP, Tag, Tweet

3. Search urls and domains with weekly tweets feed

let MaxAge = ago(30d);
let domain_whitelist = pack_array(
'XXX' // Some URL/Domain you want to whitelist.
);
let TweetFeed = materialize (
    (externaldata(report:string)
    [@"https://raw.githubusercontent.com/0xDanielLopez/TweetFeed/master/week.csv"]
    with (format = "txt"))
    | extend report = parse_csv(report)
    | extend Type = tostring(report[2])
    | where Type in('url','domain')
    | extend RemoteUrl = tostring(report[3])
    | where RemoteUrl !in(domain_whitelist)
    | extend Tag = tostring(report[4])
    | extend Tweet = tostring(report[5])
    | project RemoteUrl, Tag, Tweet 
);
union (
TweetFeed
    | join (
        DeviceNetworkEvents
    | where Timestamp > MaxAge
    ) on RemoteUrl
) | project Timestamp, DeviceName, RemoteUrl, Tag, Tweet

Author

Disclaimer

Please note that all the data is collected from Twitter and sorted/served here as it is on best effort.

I have tried to tune as much as possible the searches trying to collect only valuable info. However please consider making your own analysis before taking any action related to these IOCs.

Anyway feel free to reach me out regarding any False Positive or to provide any kind of feedback.


By the Community for the Community

About

Collecting IOCs posted on Twitter