Suspicious File Download From File Sharing Domain Via Wget.EXE

Detects potentially suspicious file downloads from file sharing domains using wget.exe

Sigma rule (View on GitHub)

 1title: Suspicious File Download From File Sharing Domain Via Wget.EXE
 2id: a0d7e4d2-bede-4141-8896-bc6e237e977c
 3status: experimental
 4description: Detects potentially suspicious file downloads from file sharing domains using wget.exe
 5references:
 6    - https://labs.withsecure.com/publications/fin7-target-veeam-servers
 7    - https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv
 8    - https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/
 9author: Nasreddine Bencherchali (Nextron Systems)
10date: 2023-05-05
11modified: 2024-10-21
12tags:
13    - attack.execution
14logsource:
15    category: process_creation
16    product: windows
17detection:
18    selection_img:
19        - Image|endswith: '\wget.exe'
20        - OriginalFileName: 'wget.exe'
21    selection_websites:
22        CommandLine|contains:
23            - '.githubusercontent.com'       # Includes both gists and github repositories / Michael Haag (idea)
24            - 'anonfiles.com'
25            - 'cdn.discordapp.com'
26            - 'ddns.net'
27            - 'dl.dropboxusercontent.com'
28            - 'ghostbin.co'
29            - 'glitch.me'
30            - 'gofile.io'
31            - 'hastebin.com'
32            - 'mediafire.com'
33            - 'mega.nz'
34            - 'onrender.com'
35            - 'pages.dev'
36            - 'paste.ee'
37            - 'pastebin.com'
38            - 'pastebin.pl'
39            - 'pastetext.net'
40            - 'pixeldrain.com'
41            - 'privatlab.com'
42            - 'privatlab.net'
43            - 'send.exploit.in'
44            - 'sendspace.com'
45            - 'storage.googleapis.com'
46            - 'storjshare.io'
47            - 'supabase.co'
48            - 'temp.sh'
49            - 'transfer.sh'
50            - 'trycloudflare.com'
51            - 'ufile.io'
52            - 'w3spaces.com'
53            - 'workers.dev'
54    selection_http:
55        CommandLine|contains: 'http'
56    selection_flag:
57        - CommandLine|re: '\s-O\s'
58        - CommandLine|contains: '--output-document'
59    selection_ext:
60        CommandLine|endswith:
61            - '.ps1'
62            - ".ps1'"
63            - '.ps1"'
64            - '.dat'
65            - ".dat'"
66            - '.dat"'
67            - '.msi'
68            - ".msi'"
69            - '.msi"'
70            - '.bat'
71            - ".bat'"
72            - '.bat"'
73            - '.exe'
74            - ".exe'"
75            - '.exe"'
76            - '.vbs'
77            - ".vbs'"
78            - '.vbs"'
79            - '.vbe'
80            - ".vbe'"
81            - '.vbe"'
82            - '.hta'
83            - ".hta'"
84            - '.hta"'
85            - '.dll'
86            - ".dll'"
87            - '.dll"'
88            - '.psm1'
89            - ".psm1'"
90            - '.psm1"'
91    condition: all of selection_*
92falsepositives:
93    - Unknown
94level: high

References

Related rules

to-top