Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/west-wind/LAR
Light Armoured Recon is a python script designed to automate passive recon. It automates execution of TheHarvester, whois, Robtex.com, Builtwith.com, DNSrecon, metagoofil, & knockpy.
https://github.com/west-wind/LAR
automation builtwith dnsrecon metagoofil passive-check passive-vulnerability-scanner penetration-testing pentest-scripts python python-script recon shell-script theharvester
Last synced: 9 days ago
JSON representation
Light Armoured Recon is a python script designed to automate passive recon. It automates execution of TheHarvester, whois, Robtex.com, Builtwith.com, DNSrecon, metagoofil, & knockpy.
- Host: GitHub
- URL: https://github.com/west-wind/LAR
- Owner: west-wind
- License: gpl-3.0
- Created: 2018-01-08T12:59:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-28T12:16:19.000Z (over 6 years ago)
- Last Synced: 2024-02-14T21:38:16.297Z (9 months ago)
- Topics: automation, builtwith, dnsrecon, metagoofil, passive-check, passive-vulnerability-scanner, penetration-testing, pentest-scripts, python, python-script, recon, shell-script, theharvester
- Language: Python
- Homepage: https://twitter.com/Praetorian_GRD
- Size: 252 KB
- Stars: 35
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Light Armoured Recon
**Light Armoured Recon** is a python script designed to automate passive reconnaissance. It automates execution of *TheHarvester*, *whois*, *Robtex.com*, *Builtwith.com*, *DNSrecon*, *metagoofil*, & *knockpy*.
# Installing
## Prerequisites
- Python 2.7
- [TheHarvester](https://code.google.com/p/theharvester/)
- [whois](https://github.com/rfc1036/whois)
- [DNSrecon](https://github.com/darkoperator/dnsrecon)
- [metagoofil](www.edge-security.com/metagoofil.php)
- [knockpy](https://github.com/guelfoweb/knock)
## Dependencies
- subprocess
- threading
## Installation$ git clone https://github.com/west-wind/LAR.git
$ cd LAR
$ ./dependency_installer.sh
$ python LAR.py
# Intended Use
Usage of **Light Armoured Recon** for sending any traffic to a target without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developer assume no liability and are not responsible for any misuse or damage caused by this program.
# Getting Started
This script requires the user to input the target URL *(excluding www)* by selecting option 1 & the output filename by selecting option 2. Make sure the filename is unique, so as not to overwrite any existing files in the directory.To begin
$ cd LAR
$ python LAR.pyEnter target URL by selecting option 1.
![Running the script](https://raw.githubusercontent.com/west-wind/LAR/master/Screenshots/SCR%201.png)
Enter output filename by selecting option 2. Make sure that no other file with the same name exists in the same directory, so as to avoid overwriting any existing files.
![Entering target information](https://raw.githubusercontent.com/west-wind/LAR/master/Screenshots/SCR%202.png)
Select option 3 to proceed with recon.
![Entering output filename](https://raw.githubusercontent.com/west-wind/LAR/master/Screenshots/SCR%203.png)
Enter 'EXECUTE' to commence execution of packages.
![Commence recon](https://raw.githubusercontent.com/west-wind/LAR/master/Screenshots/SCR%204.png)
## Customisation
You can customise the execution of each package by editing command specific parameters in **LAR. py**For example, if you're only interested in downloading **pdf** files with metagoofil, you can do so by editing the filetype parameter.
from
cmd = 'metagoofil -d ' + target + ' -t pdf,doc,xls,ppt,odp,ods,docx,xlsx,pptx -l 10 -n 1 -o metagoofil_downloads -f metagoofil_output.html'
to
cmd = 'metagoofil -d ' + target + ' -t pdf -l 10 -n 1 -o metagoofil_downloads -f metagoofil_output.html'# Built With
Python
# Authors
Alex John, B. ([@Praetorian_GRD](https://twitter.com/Praetorian_GRD))
# License
Copyright (C) 2018 Alex John, B. This project is licensed under the GNU License - see the [LICENSE.md](https://raw.githubusercontent.com/west-wind/LAR/master/LICENSE) file for details.
# Acknowledgements
[Joe Perry](https://www.cybrary.it/members/perry/) & [Cybrary](https://www.cybrary.it) for the awesome ‘[Python for Security Professionals](https://www.cybrary.it/course/python/)’ course.