项目作者: xakepnz

项目描述 :
Searches online paste sites for certain search terms which can indicate a possible data breach.
高级语言: Python
项目地址: git://github.com/xakepnz/BLUELAY.git
创建时间: 2017-03-18T01:41:09Z
项目社区:https://github.com/xakepnz/BLUELAY

开源协议:GNU General Public License v3.0

下载


BLUELAY

Description:

Search keywords against websites that have been indexed/spidered by Google.

  • Choose what sites to search against, what keywords to search for.
  • Examples could be: hash values, private secrets, email addresses or simply domain names.
  • Optionally proxy your requests through custom proxies to avoid Google banning.

Proof of Concept:

  • keywords.conf: BLUELAY
  • sources.conf: github.com

Alt

Install:

  1. git clone https://github.com/xakepnz/BLUELAY.git
  2. cd BLUELAY
  3. pip install -r requirements.txt

Usage:

  1. python3 bluelay.py

Edit the three config files:

  • keywords.conf containing all the keywords you want to search for.
  • sources.conf all of the sites you want to search against.
  • proxies.conf proxies to route requests through, to avoid Google ban.

Examples:

keywords.conf

  1. # These are the keywords to search against Google. They can be simply domain names, or specific terminology.
  2. # Anything behind a hashtag like this line, will be ignored.
  3. BLUELAY

sources.conf

  1. # These are new line separated domain names that you want to search against.
  2. # The domain names must be able to be indexed/spidered by Google.
  3. # Anything behind a hashtag like this line, will be ignored.
  4. # pastebin.com
  5. # pastie.org.ru
  6. # paste.org
  7. # hackforums.net
  8. # antichat.ru
  9. github.com

proxies.conf

  1. # Enter new proxies below on a new line
  2. # Anything behind a hashtag like this line, will be ignored.
  3. # Format: schema://ip_or_domain:port
  4. # http://1.1.1.1:80
  5. # https://1.1.1.1:443