Skip to content

Commit

Permalink
Merge pull request #140 from Korving-F/NixKerberos
Browse files Browse the repository at this point in the history
Adds Kerberos related Filerules
  • Loading branch information
l0ss committed Mar 11, 2024
2 parents 19f0cbd + 087d64b commit 23e96df
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[ClassifierRules]]
EnumerationScope = "FileEnumeration"
RuleName = "KeepKerberosCredentialsByExtension"
MatchAction = "Snaffle"
Description = "Files with these extensions are interesting."
MatchLocation = "FileExtension"
WordListType = "Exact"
MatchLength = 0
WordList = [
"\\.keytab",
"\\.CCACHE"]
Triage = "Yellow"
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[[ClassifierRules]]
EnumerationScope = "FileEnumeration"
RuleName = "KeepKerberosCredentialsByName"
MatchAction = "Snaffle"
Description = "Files with these names are interesting."
MatchLocation = "FileName"
WordListType = "Regex"
MatchLength = 0
WordList = [
"krb5cc_.*"]
Triage = "Yellow"

0 comments on commit 23e96df

Please sign in to comment.