forked from mirrors/kingfisher
Merge remote-tracking branch 'origin/main' into development
* origin/main: fix(digitalocean): regex is case-sensitive feat(adafruitio): improve pattern matching
This commit is contained in:
commit
f028180871
2 changed files with 7 additions and 5 deletions
|
|
@ -2,11 +2,13 @@ rules:
|
|||
- name: Adafruit IO Key
|
||||
id: kingfisher.adafruitio.1
|
||||
pattern: |
|
||||
(?xi)
|
||||
(?x)
|
||||
\b
|
||||
(
|
||||
aio_
|
||||
[A-Z0-9]{28}
|
||||
[a-zA-Z]{4}
|
||||
[0-9]{2}
|
||||
[a-zA-Z0-9]{22}
|
||||
)
|
||||
\b
|
||||
min_entropy: 3.5
|
||||
|
|
@ -28,4 +30,4 @@ rules:
|
|||
type: StatusMatch
|
||||
- type: WordMatch
|
||||
words:
|
||||
- '"username"'
|
||||
- '"username"'
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ rules:
|
|||
- name: DigitalOcean API Key
|
||||
id: kingfisher.digitalocean.1
|
||||
pattern: |
|
||||
(?xi)
|
||||
(?x)
|
||||
\b
|
||||
(
|
||||
(?:dop|doo)_v1_
|
||||
|
|
@ -32,7 +32,7 @@ rules:
|
|||
- name: DigitalOcean Refresh Token
|
||||
id: kingfisher.digitalocean.2
|
||||
pattern: |
|
||||
(?xi)
|
||||
(?x)
|
||||
\b
|
||||
(
|
||||
dor_v1_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue