Skip to content

Commit

Permalink
Add detection for CVE-2024-12847
Browse files Browse the repository at this point in the history
  • Loading branch information
nmasdoufi-ol committed Jan 13, 2025
1 parent f50ef95 commit 7341789
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions agent/asteroid_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def process(self, message: m.Message) -> None:
executor.submit(_check_target, exploit, target)
for target in targets
for exploit in self.exploits
if type(exploit).__name__
== "NetgearDGNCommandInjectionExploit" # Filter for the specific exploit name
]
for target_vulnz in futures.as_completed(targets_checks):
if len(target_vulnz.result()) == 0:
Expand Down

0 comments on commit 7341789

Please sign in to comment.