-
Notifications
You must be signed in to change notification settings - Fork 67
gap analysis #339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
paolo9921
wants to merge
15
commits into
main
Choose a base branch
from
paolo/new_rules
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
gap analysis #339
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4c97f0f
credential_access verification, enhancement
paolo9921 88a6bc7
credential_access verification, enhancement
paolo9921 318878b
find suid and sguid
paolo9921 b390d28
persistence verification, ssh_authorized_keys
paolo9921 d2188f0
envvar path hijacking
paolo9921 4d45124
defense_evasion rules addition
paolo9921 7a4067b
gap analysis
paolo9921 32fa37c
files refactor
paolo9921 cac3c1f
new rules and cves
paolo9921 09edd0f
rules review
paolo9921 8b43efe
fix typo
paolo9921 09ca904
fix - review 6/6/25
b16d013
fix review 6/6/25 bis
96032f6
fix review 6/6/25 bis
43525a9
fix review 13/6/25
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # Title: AWS CLI command with custom endpoint URL | ||
|
|
||
| # Creation Date: 2025/05/11 | ||
|
|
||
| # MITRE ATT&CK Tactic: TA0011 - Command and Control - https://attack.mitre.org/tactics/TA0011/ | ||
|
|
||
| # MITRE ATT&CK Technique: T1572 - Protocol Tunneling - https://attack.mitre.org/techniques/T1572/ | ||
|
|
||
| - name: AWS CLI Endpoint URL Used | ||
| type: Exec | ||
| category: command_and_control | ||
| severity: medium | ||
| description: Detects the use of AWS CLI with a specified endpoint URL, which may indicate attempts to communicate with unauthorized AWS endpoints. | ||
| condition: payload.filename ENDS_WITH "/aws" AND payload.argv CONTAINS "--endpoint-url" | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Title: Connection to Known C2 IP Addresses | ||
|
|
||
| # Creation date: 2022/10/21 | ||
|
|
||
| # MITRE ATT&CK Tactic: TA0011 - Command and Control - https://attack.mitre.org/tactics/TA0011/ | ||
|
|
||
| # MITRE ATT&CK Technique: T1071 - Application Layer Protocol - https://attack.mitre.org/techniques/T1071/ | ||
|
|
||
| # Add C2 IPs | ||
| # https://feodotracker.abuse.ch/downloads/ipblocklist_recommended.txt | ||
| - name: Connection to C2 IPs | ||
| type: Connect | ||
| category: execution | ||
| severity: high | ||
| description: Detects connections to known C2 IPs. Adversaries may use these IPs to communicate with their command and control servers. | ||
| condition: payload.destination.ip IN ["1.234.21.73", "103.109.247.10", "103.124.107.109", "103.173.121.17", "103.224.241.74", "103.253.145.28"] |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.