├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── aerosol.py ├── atomizer.py ├── core ├── __init__.py ├── parsers │ ├── __init__.py │ ├── bing.py │ ├── google.py │ └── linkedin.py ├── sprayers │ ├── __init__.py │ ├── imap.py │ ├── lync.py │ └── owa.py ├── utils │ ├── __init__.py │ ├── messages.py │ ├── ntlmdecoder.py │ └── time.py └── webhooks │ ├── __init__.py │ ├── gchat.py │ └── slack.py ├── requirements.txt ├── spindrift.py └── vaporizer.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/README.md -------------------------------------------------------------------------------- /aerosol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/aerosol.py -------------------------------------------------------------------------------- /atomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/atomizer.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/parsers/__init__.py -------------------------------------------------------------------------------- /core/parsers/bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/parsers/bing.py -------------------------------------------------------------------------------- /core/parsers/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/parsers/google.py -------------------------------------------------------------------------------- /core/parsers/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/parsers/linkedin.py -------------------------------------------------------------------------------- /core/sprayers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/sprayers/__init__.py -------------------------------------------------------------------------------- /core/sprayers/imap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/sprayers/imap.py -------------------------------------------------------------------------------- /core/sprayers/lync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/sprayers/lync.py -------------------------------------------------------------------------------- /core/sprayers/owa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/sprayers/owa.py -------------------------------------------------------------------------------- /core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/utils/messages.py -------------------------------------------------------------------------------- /core/utils/ntlmdecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/utils/ntlmdecoder.py -------------------------------------------------------------------------------- /core/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/utils/time.py -------------------------------------------------------------------------------- /core/webhooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/webhooks/__init__.py -------------------------------------------------------------------------------- /core/webhooks/gchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/webhooks/gchat.py -------------------------------------------------------------------------------- /core/webhooks/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/core/webhooks/slack.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /spindrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/spindrift.py -------------------------------------------------------------------------------- /vaporizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byt3bl33d3r/SprayingToolkit/HEAD/vaporizer.py --------------------------------------------------------------------------------