-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fix: Suspicious Sysmon as Execution Parent - Typo and restructure update: Antivirus PrinterNightmare CVE-2021-34527 Exploit Detection update: Antivirus Relevant File Paths Alerts update: Dump Ntds.dit To Suspicious Location update: MSI Installation From Suspicious Locations update: PowerShell Profile Modification - Reduce rule level to medium update: Obfuscated IP Download Activity --------- Co-authored-by: frack113 <[email protected]>
- Loading branch information
Showing
7 changed files
with
58 additions
and
47 deletions.
There are no files selected for viewing
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
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
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
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
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
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
38 changes: 26 additions & 12 deletions
38
rules/windows/process_creation/proc_creation_win_susp_obfuscated_ip_download.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,49 @@ | ||
title: Obfuscated IP Download | ||
title: Obfuscated IP Download Activity | ||
id: cb5a2333-56cf-4562-8fcb-22ba1bca728d | ||
status: test | ||
description: Detects use of an encoded/obfuscated version of an IP address (hex, octal...) in an URL combined with a download command | ||
references: | ||
- https://h.43z.one/ipconverter/ | ||
- https://twitter.com/Yasser_Elsnbary/status/1553804135354564608 | ||
author: Florian Roth (Nextron Systems) | ||
- https://twitter.com/fr0s7_/status/1712780207105404948 | ||
author: Florian Roth (Nextron Systems), X__Junior (Nextron Systems) | ||
date: 2022/08/03 | ||
modified: 2023/10/24 | ||
tags: | ||
- attack.discovery | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection_img: | ||
selection_command: | ||
CommandLine|contains: | ||
- 'Invoke-WebRequest' | ||
- 'iwr ' | ||
- 'wget ' | ||
- 'curl ' | ||
- 'DownloadFile' | ||
- 'DownloadString' | ||
selection_ip: | ||
- CommandLine|contains: | ||
- '//0x' | ||
- '.0x' | ||
- '.00x' | ||
- CommandLine|contains|all: | ||
- 'http://%' | ||
- '%2e' | ||
condition: all of selection* | ||
selection_ip_1: | ||
CommandLine|contains: | ||
- '//0x' | ||
- '.0x' | ||
- '.00x' | ||
selection_ip_2: | ||
CommandLine|contains|all: | ||
- 'http://%' | ||
- '%2e' | ||
selection_ip_3: | ||
# http://81.4.31754 | ||
- CommandLine|re: 'https?:\/\/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,5}(?!.)' | ||
# http://81.293898 | ||
- CommandLine|re: 'https?:\/\/[0-9]{1,3}\.[0-9]{1,8}(?!.)' | ||
# http://1359248394 | ||
- CommandLine|re: 'https?:\/\/[0-9]{1,10}(?!.)' | ||
# http://0121.04.0174.012 | ||
- CommandLine|re: 'https?:\/\/(0[0-9]{1,11}\.){3}0[0-9]{1,11}' | ||
# http://012101076012 | ||
- CommandLine|re: 'https?:\/\/0[0-9]{1,11}(?!.)' | ||
condition: selection_command and 1 of selection_ip_* | ||
falsepositives: | ||
- Unknown | ||
level: medium |