├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── demo ├── demo_breaches.txt ├── demo_emails.txt └── demo_wordlist.txt ├── lib └── xprey.rb ├── screenshots └── xprey.png └── xprey.rb /.gitignore: -------------------------------------------------------------------------------- 1 | settings.json 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo_breaches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/demo/demo_breaches.txt -------------------------------------------------------------------------------- /demo/demo_emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/demo/demo_emails.txt -------------------------------------------------------------------------------- /demo/demo_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/demo/demo_wordlist.txt -------------------------------------------------------------------------------- /lib/xprey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/lib/xprey.rb -------------------------------------------------------------------------------- /screenshots/xprey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/screenshots/xprey.png -------------------------------------------------------------------------------- /xprey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/X-Prey/HEAD/xprey.rb --------------------------------------------------------------------------------