-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from s3cpat/master
Implement Slack Webhook Analyzer
- Loading branch information
Showing
3 changed files
with
82 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
from .regexanalyzer import RegexAnalyzer | ||
|
||
|
||
class SlackWebhookAnalyzer(RegexAnalyzer): | ||
"""Analyzer to match (likely) Slack Webhook URLs""" | ||
|
||
def __init__(self, action): | ||
""" | ||
Analyzer to match (likely) Slack Webhook URLs | ||
:param action: Single action or list of actions to be executed when a paste matches | ||
""" | ||
|
||
regex = r'https://hooks.slack.com/services/T[a-zA-Z0-9_]{8}/B[a-zA-Z0-9_]{8}/[a-zA-Z0-9_]{24}' | ||
|
||
super().__init__(action, regex) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# -*- coding: utf-8 -*- | ||
import unittest | ||
from unittest import mock | ||
|
||
from pastepwn.analyzers.slackwebhookanalyzer import SlackWebhookAnalyzer | ||
|
||
|
||
class TestSlackWebhookAnalyzer(unittest.TestCase): | ||
def setUp(self): | ||
self.analyzer = SlackWebhookAnalyzer(None) | ||
self.paste = mock.Mock() | ||
|
||
def test_match_positive(self): | ||
"""Test if positives are recognized""" | ||
# slack webhook url (sample) | ||
self.paste.body = "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX" | ||
self.assertTrue(self.analyzer.match(self.paste)) | ||
|
||
# slack webhook url (manually generated) | ||
self.paste.body = "https://hooks.slack.com/services/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" | ||
self.assertTrue(self.analyzer.match(self.paste)) | ||
|
||
# slack webhook url (randomly generated) | ||
self.paste.body = "https://hooks.slack.com/services/TwLj3Aeic/B2RnzBQQp/7JkqKP9XxuqN3WFDn3tUA8NJ" | ||
self.assertTrue(self.analyzer.match(self.paste)) | ||
|
||
# slack webhook url (randomly generated) | ||
self.paste.body = "https://hooks.slack.com/services/TafdGEj9a/B9BdR2SLM/yJAk3gcguM8YzFEpaPnSvZ4Q" | ||
self.assertTrue(self.analyzer.match(self.paste)) | ||
|
||
# part of a sentence | ||
self.paste.body = "here is the webhook url: The slack webhook key is " \ | ||
"https://hooks.slack.com/services/T00000000/B00000000"\ | ||
"/XXXXXXXXXXXXXXXXXXXXXXXX! how about that!" | ||
self.assertTrue(self.analyzer.match(self.paste)) | ||
|
||
def test_match_negative(self): | ||
"""Test if negatives are not recognized""" | ||
self.paste.body = "" | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
self.paste.body = None | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
# Other Slack URL (api docs) | ||
self.paste.body = "https://api.slack.com/incoming-webhooks" | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
# Invalid Character | ||
self.paste.body = "https://hooks.slack.com/services/T00!00000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX" | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
# Invalid Length | ||
self.paste.body = "https://hooks.slack.com/services/T00000000/B0000000/XXXXXXXXXXXXXXXXXXXXXXXX" | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
# Invalid Format (/services/Z... vs /services/T...) | ||
self.paste.body = "https://hooks.slack.com/services/Z00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX" | ||
self.assertFalse(self.analyzer.match(self.paste)) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |