| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- title = "sample gitleaks config"
- # This is a sample config file for gitleaks. You can configure gitleaks what to search for and what to whitelist.
- # The output you are seeing here is the default gitleaks config. If GITLEAKS_CONFIG environment variable
- # is set, gitleaks will load configurations from that path. If option --config-path is set, gitleaks will load
- # configurations from that path. Gitleaks does not whitelist anything by default.
- [[rules]]
- description = "AWS Key"
- regex = '''AKIA[0-9A-Z]{16}'''
- tags = ["key", "AWS"]
- [[rules]]
- description = "PKCS8"
- regex = '''-----BEGIN PRIVATE KEY-----'''
- tags = ["key", "PKCS8"]
- [[rules]]
- description = "RSA"
- regex = '''-----BEGIN RSA PRIVATE KEY-----'''
- tags = ["key", "RSA"]
- [[rules]]
- description = "SSH"
- regex = '''-----BEGIN OPENSSH PRIVATE KEY-----'''
- tags = ["key", "SSH"]
- [[rules]]
- description = "PGP"
- regex = '''-----BEGIN PGP PRIVATE KEY BLOCK-----'''
- tags = ["key", "PGP"]
- [[rules]]
- description = "Facebook"
- regex = '''(?i)facebook(.{0,4})?['\"][0-9a-f]{32}['\"]'''
- tags = ["key", "Facebook"]
- [[rules]]
- description = "Twitter"
- regex = '''(?i)twitter(.{0,4})?['\"][0-9a-zA-Z]{35,44}['\"]'''
- tags = ["key", "Twitter"]
- [[rules]]
- description = "Github"
- regex = '''(?i)github(.{0,4})?['\"][0-9a-zA-Z]{35,40}['\"]'''
- tags = ["key", "Github"]
- [[rules]]
- description = "Slack"
- regex = '''xox[baprs]-([0-9a-zA-Z]{10,48})?'''
- tags = ["key", "Slack"]
- [whitelist]
- files = [
- "(.*?)(jpg|gif|doc|pdf|bin)$"
- ]
- #commits = [
- # "whitelisted-commit1",
- # "whitelisted-commit2",
- #]
- #repos = [
- # "whitelisted-repo"
- #]
- # Additional Examples
- # [[rules]]
- # description = "Generic Key"
- # regex = '''(?i)key(.{0,6})?(:|=|=>|:=)'''
- # entropies = [
- # "4.1-4.3",
- # "5.5-6.3",
- # ]
- # entropyROI = "line"
- # filetypes = [".go", ".py", ".c"]
- # tags = ["key"]
- # severity = "8"
- #
- #
- # [[rules]]
- # description = "Generic Key"
- # regex = '''(?i)key(.{0,6})?(:|=|=>|:=)'''
- # entropies = ["4.1-4.3"]
- # filetypes = [".gee"]
- # entropyROI = "line"
- # tags = ["key"]
- # severity = "medium"
- # [[rules]]
- # description = "Any pem file"
- # filetypes = [".key"]
- # tags = ["pem"]
- # severity = "high"
|