pastepwn
pastepwn copied to clipboard
Python framework to scrape Pastebin pastes and analyze them
Bumps [requests](https://github.com/psf/requests) from 2.26.0 to 2.28.1. Release notes Sourced from requests's releases. v2.28.1 2.28.1 (2022-06-29) Improvements Speed optimization in iter_content with transition to yield from. (#6170) Dependencies Added support for...
Created the Slack action based on existing template(s). Should work, however, token not stored as environment config and Slack message API response was not checked (asserted).
If the specified database does not exist yet, create it for the user. That seems to have several issues with SQLI... let's see.
Currently there is only one example file. Users might not fully understand the capability of the tool and might get scared, because it involves setting up a database. At least...
Updates the requirements on [websockets](https://github.com/aaugustin/websockets) to permit the latest version. Commits 13eff12 Bump version number. a04bfdb Add changelog. be1203b Add API documentation for the Sans-I/O layer. 724408e Add Sans-I/O howto...
Currently the execution order of analyzers in MergedAnalyzers depends on how they were joined. `A & B` will run A first, then B. It makes much sense to have some...
It's important to quickly analyze the pastes. Currently each paste is being processed in a single thread. It would be important to implement a thread pool which limits the amount...
When pastes contain non utf-8 characters, the decoding fails and downloading the paste is being stopped. Errors logged at: https://github.com/d-Rickyy-b/pastepwn/blob/1d9b82efa53d948f790b663a54d609150e65b32e/pastepwn/scraping/pastebin/pastebinscraper.py#L96-L100 and: https://github.com/d-Rickyy-b/pastepwn/blob/1d9b82efa53d948f790b663a54d609150e65b32e/pastepwn/scraping/pastebin/pastebinscraper.py#L123-L140 Example pastes: ``` 2020-02-04 01:17:22,211 - pastepwn.scraping.pastebin.pastebinscraper -...
Implement a new action that gives you the ability to create a new paste on pastepwn with custom content.
Similar to [shhgit](https://shhgit.darkport.co.uk/) ([repo link](https://github.com/eth0izzle/shhgit)) there could be a new parser which clones a repo and checks files with the given analyzers. For now this is just a random idea...