redpatterns 0.2.0

a list of patterns for scanners 📟
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
test {
    match "https://hooks.slack.com/services/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";
    match "https://www.hooks.slack.com/services/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";
}

:(
    "https://"
    "www."?
    "hooks.slack.com/services/"
    "T" [ascii_upper digit]{8,10} "/" # Team ID
    "B" [ascii_upper digit]{8,10} "/"
    [ascii_word]{24}
)