Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vulnpire/cxtract
Extracts hidden subdomains and IPs from cloud data
https://github.com/vulnpire/cxtract
osint reconnaissance subdomain-enumeration
Last synced: 24 days ago
JSON representation
Extracts hidden subdomains and IPs from cloud data
- Host: GitHub
- URL: https://github.com/vulnpire/cxtract
- Owner: Vulnpire
- License: mit
- Created: 2024-11-19T05:56:55.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-19T06:28:07.000Z (3 months ago)
- Last Synced: 2024-11-19T07:17:46.604Z (3 months ago)
- Topics: osint, reconnaissance, subdomain-enumeration
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cXtract
is designed to search cloud data for subdomains and IP addresses, with features like concurrent processing, subdomain, and IP extraction.
## Features
- Search cloud data for domains and subdomains.
- Extract IP addresses or subdomains with the `-only-ips` and `-subs` flags.
- Supports concurrency for faster searches.
- Simple input handling through stdin (via `echo` or `cat`).
- Verbose logging with the `-v` flag for detailed output.## Requirements
- Go 1.22 or higher.## Installation
```go install -v github.com/Vulnpire/cXtract@latest```
## Usage
![image](https://github.com/user-attachments/assets/10bfcdef-927d-4ef5-8a14-b612177153a6)
### Search for Subdomains
To search for subdomains of a domain and display them one per line:
```
echo "example.com" | cXtract -subs
```### Search for IP Addresses Only
To search for IP addresses from cloud data:
```
echo "example.com" | cXtract -only-ips
```### Set Concurrency Level
To specify the concurrency level for searches:
```bash
echo "example.com" | cXtract -c 10 -subs
```## Flags
- `-v` : Enable verbose output.
- `-c ` : Set the concurrency level.
- `-subs` : Extract and display subdomains only.
- `-only-ips` : Extract and display IP addresses only.