Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion rules/anti-behavior/blocklist/user.yara
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ rule common_username_block_list: critical {
$not_wireshark = "wireshark.org"
$gpt_tokenizer1 = "GPTTokenizer"
$gpt_tokenizer2 = "GPT-4"
$gpt_tokenizer3 = "const bpe = c0.concat();"
$gpt_tokenizer4 = "const bpe = c0.concat(c1);"
$gpt_tokenizer5 = "export default bpe;"

condition:
8 of them and none of ($not*) and (#gpt_tokenizer1 < 3 and #gpt_tokenizer2 < 65)
8 of them and none of ($not*) and none of ($gpt_tokenizer*)
}
5 changes: 4 additions & 1 deletion rules/exfil/stealer/wallet.yara
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ rule crypto_stealer_names: critical {
$not_geth_site = "https://geth.ethereum.org"
$gpt_tokenizer1 = "GPTTokenizer"
$gpt_tokenizer2 = "GPT-4"
$gpt_tokenizer3 = "const bpe = c0.concat();"
$gpt_tokenizer4 = "const bpe = c0.concat(c1);"
$gpt_tokenizer5 = "export default bpe;"

condition:
filesize < 100MB and $http and 2 of ($w*) and none of ($not*) and (#gpt_tokenizer1 < 3 and #gpt_tokenizer2 < 65)
filesize < 100MB and $http and 2 of ($w*) and none of ($not*) and none of ($gpt_tokenizer*)
}

rule crypto_extension_stealer: critical {
Expand Down
Loading