Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions yara/thor-hacktools.yar
Original file line number Diff line number Diff line change
Expand Up @@ -3038,20 +3038,21 @@ rule CN_Toolset_sig_1433_135_sqlr {
all of them
}

rule DarkComet_Keylogger_File {
meta:
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
description = "Looks like a keylogger file created by DarkComet Malware"
date = "25.07.14"
score = 50
id = "65058450-3ae3-5b85-bcc5-8bc1fab14614"
strings:
$entry = /\n:: [A-Z]/
$timestamp = /\([0-9]?[0-9]:[0-9][0-9]:[0-9][0-9] [AP]M\)/
condition:
uint16(0) == 0x3A3A and #entry > 10 and #timestamp > 10
}
// Too many CPU cycles for the detection value
// rule DarkComet_Keylogger_File {
// meta:
// license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
// author = "Florian Roth (Nextron Systems)"
// description = "Looks like a keylogger file created by DarkComet Malware"
// date = "25.07.14"
// score = 50
// id = "65058450-3ae3-5b85-bcc5-8bc1fab14614"
// strings:
// $entry = /\n:: [A-Z]/
// $timestamp = /\([0-9]?[0-9]:[0-9][0-9]:[0-9][0-9] [AP]M\)/
// condition:
// uint16(0) == 0x3A3A and #entry > 10 and #timestamp > 10
// }

rule VSSown_VBS {
meta:
Expand Down
Loading