https://github.com/x1mdev/lazy-recon
Some recon tools combined in one shell script, we lazy
https://github.com/x1mdev/lazy-recon
Last synced: 11 months ago
JSON representation
Some recon tools combined in one shell script, we lazy
- Host: GitHub
- URL: https://github.com/x1mdev/lazy-recon
- Owner: x1mdev
- Created: 2017-11-12T00:04:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-16T00:20:06.000Z (over 8 years ago)
- Last Synced: 2025-04-07T01:11:21.545Z (12 months ago)
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 6
- Watchers: 0
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lazy-Recon
Bash script to help make recon for bug bounty programs a bit easier.
This is still a work in progress, more functionality will be added soon.
Martijn (X1M) - martijn@x1m.nl
## Installation
### Download
```bash
git clone https://github.com/x1mdev/Lazy-Recon.git
```
### Requirements
- Sublist3r (https://github.com/aboul3la/Sublist3r).
- webscreenshot (https://github.com/maaaaz/webscreenshot)
Take note: webscreenshot requires PhantomJS (https://github.com/maaaaz/webscreenshot/wiki/Phantomjs-installation)
### Installation
Just to make it a bit more lazy:
```bash
alias lazy='path/to/Lazy-Recon/lazy '
```
## Usage
To keep your work organized I suggest creating a new folder for the program you want to start on.
```bash
mkdir [ProgramName]
```
```bash
cd [ProgramName]
```
```bash
bash lazy domain.tld
```
The script will create two files: domainsfile.txt & resolveddomains.txt
After this it will run webscreenshot on the resolveddomains.txt file. Just sit back and relax
When this process is done you will be given the choice to open the screenshots directory with eog (default Y) or not.
## ToDo
- Add more recon tools
- fix alias: now requires ```bash lazy domain.tld``` but should be: ```lazy domain.tld```
- Add dirsearch functionality
## Thanks
Thanks @EdOverflow for your helpful blog and inspiration to start working on a lazy shell script ;)