docs: Add one-liner installation examples to README - Added convenient one-liner commands for quick setup - Included both local and Docker installation options - Updated First Time Setup section with streamlined examples - Improved user experience with copy-paste ready commands Contributor: neur0map
This commit is contained in:
parent
09b55db6a3
commit
e166659d34
|
|
@ -7,6 +7,16 @@ This directory contains a comprehensive Makefile-based setup system that automat
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
|
### One-Liner Installation
|
||||||
|
```bash
|
||||||
|
# Local setup with tools
|
||||||
|
git clone https://github.com/Tib3rius/AutoRecon.git && cd AutoRecon && make setup
|
||||||
|
|
||||||
|
# Docker setup (recommended for non-Kali systems)
|
||||||
|
git clone https://github.com/Tib3rius/AutoRecon.git && cd AutoRecon && make setup-docker
|
||||||
|
```
|
||||||
|
|
||||||
|
### Individual Commands
|
||||||
```bash
|
```bash
|
||||||
# Complete local installation
|
# Complete local installation
|
||||||
make setup
|
make setup
|
||||||
|
|
@ -118,10 +128,12 @@ make clean:
|
||||||
|
|
||||||
### First Time Setup
|
### First Time Setup
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Tib3rius/AutoRecon.git
|
# One-liner installation
|
||||||
cd AutoRecon
|
git clone https://github.com/Tib3rius/AutoRecon.git && cd AutoRecon && make setup
|
||||||
make setup
|
|
||||||
|
# Test installation
|
||||||
autorecon --help
|
autorecon --help
|
||||||
|
autorecon 127.0.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
### Docker-Based Setup
|
### Docker-Based Setup
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue