WebLive is a powerful tool designed for web reconnaissance and analysis. It allows users to perform various tasks such as sending HTTP requests, capturing screenshots, and gathering information about web servers. This project is built using Go and leverages concurrency to efficiently handle multiple requests simultaneously.
- Concurrent HTTP Requests: Utilize multiple threads to send requests to various URLs, improving efficiency and speed.
- Screenshot Capture: Capture screenshots of web pages using headless Chrome.
- DNS Resolution: Resolve domain names to IP addresses and gather CDN information.
- Fingerprinting: Identify web technologies and frameworks used by the target websites.
- Output Formats: Export results in HTML or CSV formats for easy analysis.
To get started with WebLive, follow these steps:
-
Clone the repository:
git clone https://github.com/aeverj/weblive.git cd weblive
-
Install the required dependencies:
go mod tidy
-
Build the project:
go build -o weblive cmd/start.go
-
Run the application:
./weblive -i input.txt -o html
WebLive can be configured using command-line options. Here are some of the available options:
-th
: Number of threads (default: 30)-i
: Input file path containing URLs-o
: Output type (html or csv)-timeout
: Request timeout in seconds (default: 10)
./weblive -i input.txt -o csv -th 10
Contributions are welcome! If you have suggestions or improvements, feel free to open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for more details.
- Chromedp for headless browser automation.
- SizedWaitGroup for managing concurrent tasks.