mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
25 lines
665 B
YAML
25 lines
665 B
YAML
title: Java Running with Remote Debugging
|
|
id: 8f88e3f6-2a49-48f5-a5c4-2f7eedf78710
|
|
description: Detects a JAVA process running with remote debugging allowing more than just localhost to connect
|
|
author: Florian Roth
|
|
date: 2019/01/16
|
|
tags:
|
|
- attack.discovery
|
|
- attack.t1046
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
CommandLine: '*transport=dt_socket,address=*'
|
|
exclusion:
|
|
- CommandLine: '*address=127.0.0.1*'
|
|
- CommandLine: '*address=localhost*'
|
|
condition: selection and not exclusion
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
falsepositives:
|
|
- unknown
|
|
level: medium
|