Skip to content

A simple scraper that identifies passwords in public posts on pastebin.com

Notifications You must be signed in to change notification settings

calebshortt/pastebin-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Caleb Shortt
Feb 21, 2018
af96472 · Feb 21, 2018

History

50 Commits
Oct 27, 2017
Oct 27, 2017
Oct 27, 2017
Apr 26, 2017
Apr 26, 2017
Apr 25, 2017
Feb 21, 2018
Feb 10, 2015
Feb 21, 2018
Apr 25, 2017
Feb 21, 2018
Feb 21, 2018

Repository files navigation

Pastebin Scraper

Description

This project is a simple scraper that targets the website "pastebin". It scans through the public paste archives and looks for anything that might match a password-like pattern.

It has been designed to be easily extensible for other pages or websites.

Installation

The Pastebin Password Scraper is on pip (https://pip.pypa.io/en/latest/).

This is the easiest way to install the PBPWScraper:

pip install PBPWScraper

If you do not want to use pip you can clone the repository here.

Usage

An example is in pastebin_scraper.py:

from presets.pastebin import PastebinScraper

if __name__ == "__main__":

    pastebin_scraper = PastebinScraper()
    password_matches = pastebin_scraper.analyze()

    for pwm in password_matches:
        print pwm

Requirements

  • All requirements are listed in requirements.txt

Install them using pip at https://pip.pypa.io/en/latest/

pip install -r requirements.txt
  • The setup script will install the requirements if pip is installed.

About

A simple scraper that identifies passwords in public posts on pastebin.com

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages