# Webamon Search CLI
**The Google of Threat Intelligence**
A powerful command-line interface for the Webamon Search API. Search & Threat Hunt across the web at scale. Returning unbiased & unfiltered results.
## Installation
### From PyPI
```bash
pip install webamon-cli
```
> **Webamon Search** - The Google of Threat Intelligence. Access millions of scanned domains, IPs, and threat indicators.
### Global Installation (Linux/macOS)
**Recommended: Install via Package Manager**
```bash
# Ubuntu/Debian
sudo apt update && sudo apt install pipx
pipx install webamon-cli
pipx ensurepath
# Fedora/CentOS/RHEL
sudo dnf install pipx
pipx install webamon-cli
pipx ensurepath
# macOS
brew install pipx
pipx install webamon-cli
pipx ensurepath
# Arch Linux
sudo pacman -S python-pipx
pipx install webamon-cli
pipx ensurepath
```
**Alternative: Install from Source**
If you need the latest development version or package managers don't work:
1. Install pipx first:
```bash
# Ubuntu/Debian: sudo apt install pipx
# Fedora/CentOS: sudo dnf install pipx
# macOS: brew install pipx
# Arch: sudo pacman -S python-pipx
```
2. Clone and install:
```bash
git clone https://github.com/webamon-org/webamon-cli.git
cd webamon-cli
pipx install .
pipx ensurepath
```
**Verify Installation:**
```bash
# Test the installation
webamon --help
# If command not found, add to PATH:
export PATH="$HOME/.local/bin:$PATH"
# Then restart your terminal or run:
source ~/.bashrc # Linux
# or
source ~/.zshrc # macOS
```
### Development Installation
For development work:
```bash
git clone https://github.com/webamon-org/webamon-cli.git
cd webamon-cli
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -e .
```
## Quick Start
**Install globally:**
```bash
# Ubuntu/Debian
sudo apt install pipx && pipx install webamon-cli
# Fedora/CentOS
sudo dnf install pipx && pipx install webamon-cli
# macOS
brew install pipx && pipx install webamon-cli
```
**🚀 Start searching immediately - it's that simple!**
Use the explicit search command:
```bash
webamon search example.com # Search for example.com
webamon search malware # Search for malware
webamon search nrd_20250801 # Search latest domain registrations
```
**Other commands:**
```bash
webamon search example.com # Explicit search command
webamon configure # Configure API key for pro features
webamon status # Test connection
webamon scan https://example.com # Scan a website
```
## Usage
### API Endpoints
**Webamon Search - The Google of Threat Intelligence**
The CLI automatically uses the appropriate endpoint:
- **Free tier**: `search.webamon.com` (no API key required)
- **Pro tier**: `pro.webamon.com` (requires API key)
### Configuration
The CLI can be configured in several ways:
1. **Interactive configuration:**
```bash
webamon configure
```
2. **Environment variables:**
```bash
export WEBAMON_API_KEY="your-api-key" # Optional, enables pro features
```
3. **Command-line options:**
```bash
webamon --api-key your-key search example.com domain.name
```
4. **Configuration file:**
The CLI looks for configuration in:
- `~/.webamon/config.json`
- `.webamon.json` in current directory
### Commands
#### Search
Search the Webamon threat intelligence database:
```bash
# Search for domains, IPs, URLs, etc:
webamon search example.com # Search for example.com
webamon search malware # Search for malware
webamon search 1.1.1.1 # Search for IP address
webamon search nrd_20250801 tag # Search in specific field
```
**How it works:**
- `webamon search <SEARCH_TERM>` - Basic search
- `webamon search <SEARCH_TERM> <RESULTS>` - Search in specific fields
- `SEARCH_TERM`: What you're searching for (domain, IP, URL, hash, etc.)
- `RESULTS`: Comma-separated list of fields to search within
- **Default search fields**: `page_title,domain.name,resolved_url,dom,tag`
- **Custom search fields**: Specify your own field list
- `--fields`: Comma-separated list of fields to return (separate from search fields)
- **Default return fields**: Same as search fields when not specified
💡 **Search matches are highlighted with yellow background in table view.**
**Examples:**
```bash
# Basic search
webamon search example.com
# Search in specific fields
webamon search example.com domain.name,resolved_url
# Custom return fields
webamon search example.com --fields page_title,domain.name
# Both custom search and return fields
webamon search example.com tag --fields page_title,domain.name
# Different output formats
webamon search example.com --format json
webamon search example.com --format csv
# Export results
webamon search example.com --export results.json
webamon search example.com --format csv --export analysis.csv
```
**Pagination (Pro Users Only):**
```bash
# Limit results with default fields
webamon search example.com --size 25
# Use offset for pagination with default fields
webamon search example.com --from 25 --size 25
# Use offset with custom fields
webamon search example.com domain.name,resolved_url --from 25 --size 25
# Skip first 100 results with default fields
webamon search example.com --from 100 --size 50
# Navigate large result sets
webamon search "*.bank.com" --from 0 --size 100
```
**Lucene Search:**
```bash
# Advanced Lucene queries
webamon search --lucene 'domain.name:"bank*" AND scan_status:success' --index scans
# Specify fields to return
webamon search --lucene 'domain.name:"example.com"' --index scans --fields domain.name,page_title
```
#### Scan
Initiate website scans:
```bash
# Scan a domain
webamon scan example.com
# Scan and automatically fetch the report
webamon scan example.com --fetch-report
# Scan a full URL
webamon scan https://example.com/login
# JSON output with automatic report fetch
webamon scan example.com --format json --fetch-report
```
#### Report
Get a specific scan report by ID:
```bash
# Get report details (JSON format by default)
webamon report bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb
# Table format for readable summary
webamon report bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb --format table
```
#### Infostealers
Search for compromised credentials by domain:
```bash
# Search for compromised credentials
webamon infostealers example.com
# Search domain with hyphens (automatically quoted)
webamon infostealers bank-site.com
# Get more results (Pro users)
webamon infostealers example.com --size 50
# Specify fields to return
webamon infostealers example.com --fields domain,username,password
# JSON output
webamon infostealers example.com --format json
# CSV output (auto-exports to file)
webamon infostealers example.com --format csv
# Export to custom file
webamon infostealers example.com --export compromised_creds
webamon infostealers example.com --format csv --export creds.csv
```
#### Screenshot
Retrieve scan screenshots:
```bash
# Get screenshot info
webamon screenshot bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb
# Save screenshot to file
webamon screenshot bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb --save screenshot.png
```
#### Status
Check API connectivity:
```bash
webamon status
```
#### Fields
Discover available scan fields:
```bash
# Show all available fields
webamon fields
# Search for specific fields
webamon fields --search domain
# Show fields by category
webamon fields --category certificate
# Get fields as a simple list
webamon fields --search ip --format list
```
### Global Options
- `--api-key`: Override API key
- `--config-file`: Use specific config file
- `--verbose, -v`: Enable verbose output
## Example Workflows
### Security Research
```bash
# Search for subdomains
webamon search "*.example.com"
# Scan suspicious domains
webamon scan suspicious-domain.com
# Get screenshots of flagged sites
webamon screenshot <report-id> --save evidence.png
```
### Domain Intelligence
```bash
# Basic domain lookup
webamon search example.com domain.name,resolved_url,page_title
# Advanced search with Lucene
webamon search --lucene 'domain.name:"example.com" AND scan_status:success' --index scans
# Bulk domain analysis
for domain in $(cat domains.txt); do
webamon search $domain >> results.json
done
```
## Quotas and Pricing
### Free Tier
- **20 daily API calls**
- **10 results per response**
- Basic search functionality
- Limited infostealer data access
### Pro Plans
When you hit the daily quota, the CLI will suggest upgrading to Pro for expanded access:
- **Founding Analyst**: 1,000+ daily calls, up to 100 results per response
- **Enterprise**: 10,000+ daily calls, up to 500 results per response
- **All plans**: Complete infostealer data access, pagination, priority support
For current pricing and features, visit: https://webamon.com/pricing
If you exceed your quota, you'll see a helpful error message with upgrade information.
## Configuration File Format
```json
{
"api_key": "your-api-key-here",
"verbose": false
}
```
## Development
### Setup Development Environment
```bash
# Clone and install
git clone https://github.com/webamon-org/webamon-cli.git
cd webamon-cli
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -e .
```
### Building
```bash
python -m build
```
## Uninstall
### Global Installation (pipx)
```bash
pipx uninstall webamon-cli
```
### PyPI Installation
```bash
pip uninstall webamon-cli
```
### Development Installation
```bash
# If installed with pip install -e .
pip uninstall webamon-cli
# Remove the repository
rm -rf webamon-cli
```
## License
Apache License 2.0
Copyright 2025 Webamon
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
## Contributing
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines on:
- Setting up your development environment
- Code style and testing requirements
- Submitting bug reports and feature requests
- Pull request process and code review
Quick start: Fork → Branch → Code → Test → Pull Request
## Security
Security is important to us. Please see [SECURITY.md](SECURITY.md) for:
- Reporting security vulnerabilities
- Security best practices for users
- API key and data protection guidelines
- Incident response procedures
Raw data
{
"_id": null,
"home_page": null,
"name": "webamon-cli",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "webamon, threat-intelligence, osint, security, threat, hunting, cli, cybersecurity, search, intel",
"author": null,
"author_email": "Webamon <info@webamon.com>",
"download_url": "https://files.pythonhosted.org/packages/e3/32/6632a4156d61f0735533c30be1fad96cc93478a1f5a8fd82e495f7e94294/webamon_cli-0.2.3.tar.gz",
"platform": null,
"description": "# Webamon Search CLI\r\n\r\n**The Google of Threat Intelligence**\r\n\r\nA powerful command-line interface for the Webamon Search API. Search & Threat Hunt across the web at scale. Returning unbiased & unfiltered results.\r\n\r\n## Installation\r\n\r\n### From PyPI\r\n\r\n```bash\r\npip install webamon-cli\r\n```\r\n\r\n> **Webamon Search** - The Google of Threat Intelligence. Access millions of scanned domains, IPs, and threat indicators.\r\n\r\n### Global Installation (Linux/macOS)\r\n\r\n**Recommended: Install via Package Manager**\r\n```bash\r\n# Ubuntu/Debian\r\nsudo apt update && sudo apt install pipx\r\npipx install webamon-cli\r\npipx ensurepath\r\n\r\n# Fedora/CentOS/RHEL\r\nsudo dnf install pipx\r\npipx install webamon-cli\r\npipx ensurepath\r\n\r\n# macOS\r\nbrew install pipx\r\npipx install webamon-cli\r\npipx ensurepath\r\n\r\n# Arch Linux\r\nsudo pacman -S python-pipx\r\npipx install webamon-cli\r\npipx ensurepath\r\n```\r\n\r\n**Alternative: Install from Source**\r\n\r\nIf you need the latest development version or package managers don't work:\r\n\r\n1. Install pipx first:\r\n```bash\r\n# Ubuntu/Debian: sudo apt install pipx\r\n# Fedora/CentOS: sudo dnf install pipx \r\n# macOS: brew install pipx\r\n# Arch: sudo pacman -S python-pipx\r\n```\r\n\r\n2. Clone and install:\r\n```bash\r\ngit clone https://github.com/webamon-org/webamon-cli.git\r\ncd webamon-cli\r\npipx install .\r\npipx ensurepath\r\n```\r\n\r\n**Verify Installation:**\r\n```bash\r\n# Test the installation\r\nwebamon --help\r\n\r\n# If command not found, add to PATH:\r\nexport PATH=\"$HOME/.local/bin:$PATH\"\r\n# Then restart your terminal or run:\r\nsource ~/.bashrc # Linux\r\n# or\r\nsource ~/.zshrc # macOS\r\n```\r\n\r\n### Development Installation\r\n\r\nFor development work:\r\n```bash\r\ngit clone https://github.com/webamon-org/webamon-cli.git\r\ncd webamon-cli\r\npython -m venv venv\r\nsource venv/bin/activate # On Windows: venv\\Scripts\\activate\r\npip install -e .\r\n```\r\n\r\n## Quick Start\r\n\r\n**Install globally:**\r\n```bash\r\n# Ubuntu/Debian\r\nsudo apt install pipx && pipx install webamon-cli\r\n\r\n# Fedora/CentOS \r\nsudo dnf install pipx && pipx install webamon-cli\r\n\r\n# macOS\r\nbrew install pipx && pipx install webamon-cli\r\n```\r\n\r\n**\ud83d\ude80 Start searching immediately - it's that simple!**\r\n\r\nUse the explicit search command:\r\n```bash\r\nwebamon search example.com # Search for example.com\r\nwebamon search malware # Search for malware\r\nwebamon search nrd_20250801 # Search latest domain registrations\r\n```\r\n\r\n**Other commands:**\r\n```bash\r\nwebamon search example.com # Explicit search command\r\nwebamon configure # Configure API key for pro features\r\nwebamon status # Test connection\r\nwebamon scan https://example.com # Scan a website\r\n```\r\n\r\n## Usage\r\n\r\n### API Endpoints\r\n\r\n**Webamon Search - The Google of Threat Intelligence**\r\n\r\nThe CLI automatically uses the appropriate endpoint:\r\n- **Free tier**: `search.webamon.com` (no API key required)\r\n- **Pro tier**: `pro.webamon.com` (requires API key)\r\n\r\n### Configuration\r\n\r\nThe CLI can be configured in several ways:\r\n\r\n1. **Interactive configuration:**\r\n```bash\r\nwebamon configure\r\n```\r\n\r\n2. **Environment variables:**\r\n```bash\r\nexport WEBAMON_API_KEY=\"your-api-key\" # Optional, enables pro features\r\n```\r\n\r\n3. **Command-line options:**\r\n```bash\r\nwebamon --api-key your-key search example.com domain.name\r\n```\r\n\r\n4. **Configuration file:**\r\nThe CLI looks for configuration in:\r\n- `~/.webamon/config.json`\r\n- `.webamon.json` in current directory\r\n\r\n### Commands\r\n\r\n#### Search\r\n\r\nSearch the Webamon threat intelligence database:\r\n\r\n```bash\r\n# Search for domains, IPs, URLs, etc:\r\nwebamon search example.com # Search for example.com\r\nwebamon search malware # Search for malware \r\nwebamon search 1.1.1.1 # Search for IP address\r\nwebamon search nrd_20250801 tag # Search in specific field\r\n```\r\n\r\n**How it works:**\r\n- `webamon search <SEARCH_TERM>` - Basic search\r\n- `webamon search <SEARCH_TERM> <RESULTS>` - Search in specific fields\r\n- `SEARCH_TERM`: What you're searching for (domain, IP, URL, hash, etc.)\r\n- `RESULTS`: Comma-separated list of fields to search within\r\n - **Default search fields**: `page_title,domain.name,resolved_url,dom,tag`\r\n - **Custom search fields**: Specify your own field list\r\n- `--fields`: Comma-separated list of fields to return (separate from search fields)\r\n - **Default return fields**: Same as search fields when not specified\r\n\r\n\ud83d\udca1 **Search matches are highlighted with yellow background in table view.**\r\n\r\n**Examples:**\r\n```bash\r\n# Basic search\r\nwebamon search example.com\r\n\r\n# Search in specific fields\r\nwebamon search example.com domain.name,resolved_url\r\n\r\n# Custom return fields \r\nwebamon search example.com --fields page_title,domain.name\r\n\r\n# Both custom search and return fields\r\nwebamon search example.com tag --fields page_title,domain.name\r\n\r\n# Different output formats\r\nwebamon search example.com --format json\r\nwebamon search example.com --format csv\r\n\r\n# Export results\r\nwebamon search example.com --export results.json\r\nwebamon search example.com --format csv --export analysis.csv\r\n```\r\n\r\n**Pagination (Pro Users Only):**\r\n```bash\r\n# Limit results with default fields\r\nwebamon search example.com --size 25\r\n\r\n# Use offset for pagination with default fields\r\nwebamon search example.com --from 25 --size 25\r\n\r\n# Use offset with custom fields\r\nwebamon search example.com domain.name,resolved_url --from 25 --size 25\r\n\r\n# Skip first 100 results with default fields\r\nwebamon search example.com --from 100 --size 50\r\n\r\n# Navigate large result sets\r\nwebamon search \"*.bank.com\" --from 0 --size 100\r\n```\r\n\r\n**Lucene Search:**\r\n```bash\r\n# Advanced Lucene queries\r\nwebamon search --lucene 'domain.name:\"bank*\" AND scan_status:success' --index scans\r\n\r\n# Specify fields to return\r\nwebamon search --lucene 'domain.name:\"example.com\"' --index scans --fields domain.name,page_title\r\n```\r\n\r\n#### Scan\r\nInitiate website scans:\r\n```bash\r\n# Scan a domain\r\nwebamon scan example.com\r\n\r\n# Scan and automatically fetch the report\r\nwebamon scan example.com --fetch-report\r\n\r\n# Scan a full URL\r\nwebamon scan https://example.com/login\r\n\r\n# JSON output with automatic report fetch\r\nwebamon scan example.com --format json --fetch-report\r\n```\r\n\r\n#### Report\r\nGet a specific scan report by ID:\r\n```bash\r\n# Get report details (JSON format by default)\r\nwebamon report bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb\r\n\r\n# Table format for readable summary\r\nwebamon report bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb --format table\r\n```\r\n\r\n#### Infostealers\r\nSearch for compromised credentials by domain:\r\n```bash\r\n# Search for compromised credentials\r\nwebamon infostealers example.com\r\n\r\n# Search domain with hyphens (automatically quoted)\r\nwebamon infostealers bank-site.com\r\n\r\n# Get more results (Pro users)\r\nwebamon infostealers example.com --size 50\r\n\r\n# Specify fields to return\r\nwebamon infostealers example.com --fields domain,username,password\r\n\r\n# JSON output\r\nwebamon infostealers example.com --format json\r\n\r\n# CSV output (auto-exports to file)\r\nwebamon infostealers example.com --format csv\r\n\r\n# Export to custom file\r\nwebamon infostealers example.com --export compromised_creds\r\nwebamon infostealers example.com --format csv --export creds.csv\r\n```\r\n\r\n#### Screenshot\r\nRetrieve scan screenshots:\r\n```bash\r\n# Get screenshot info\r\nwebamon screenshot bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb\r\n\r\n# Save screenshot to file\r\nwebamon screenshot bf18c02d-ff0e-46a9-9a59-5b7b94fb27fb --save screenshot.png\r\n\r\n```\r\n\r\n#### Status\r\nCheck API connectivity:\r\n```bash\r\nwebamon status\r\n```\r\n\r\n#### Fields\r\nDiscover available scan fields:\r\n```bash\r\n# Show all available fields\r\nwebamon fields\r\n\r\n# Search for specific fields\r\nwebamon fields --search domain\r\n\r\n# Show fields by category\r\nwebamon fields --category certificate\r\n\r\n# Get fields as a simple list\r\nwebamon fields --search ip --format list\r\n```\r\n\r\n### Global Options\r\n\r\n- `--api-key`: Override API key \r\n- `--config-file`: Use specific config file\r\n- `--verbose, -v`: Enable verbose output\r\n\r\n## Example Workflows\r\n\r\n### Security Research\r\n```bash\r\n# Search for subdomains\r\nwebamon search \"*.example.com\"\r\n\r\n# Scan suspicious domains\r\nwebamon scan suspicious-domain.com\r\n\r\n# Get screenshots of flagged sites\r\nwebamon screenshot <report-id> --save evidence.png\r\n```\r\n\r\n### Domain Intelligence\r\n```bash\r\n# Basic domain lookup\r\nwebamon search example.com domain.name,resolved_url,page_title\r\n\r\n# Advanced search with Lucene\r\nwebamon search --lucene 'domain.name:\"example.com\" AND scan_status:success' --index scans\r\n\r\n# Bulk domain analysis\r\nfor domain in $(cat domains.txt); do\r\n webamon search $domain >> results.json\r\ndone\r\n```\r\n\r\n\r\n\r\n## Quotas and Pricing\r\n\r\n### Free Tier\r\n- **20 daily API calls**\r\n- **10 results per response**\r\n- Basic search functionality\r\n- Limited infostealer data access\r\n\r\n### Pro Plans\r\nWhen you hit the daily quota, the CLI will suggest upgrading to Pro for expanded access:\r\n\r\n- **Founding Analyst**: 1,000+ daily calls, up to 100 results per response\r\n- **Enterprise**: 10,000+ daily calls, up to 500 results per response\r\n- **All plans**: Complete infostealer data access, pagination, priority support\r\n\r\nFor current pricing and features, visit: https://webamon.com/pricing\r\n\r\nIf you exceed your quota, you'll see a helpful error message with upgrade information.\r\n\r\n## Configuration File Format\r\n\r\n```json\r\n{\r\n \"api_key\": \"your-api-key-here\",\r\n \"verbose\": false\r\n}\r\n```\r\n\r\n## Development\r\n\r\n### Setup Development Environment\r\n\r\n```bash\r\n# Clone and install\r\ngit clone https://github.com/webamon-org/webamon-cli.git\r\ncd webamon-cli\r\npython -m venv venv\r\nsource venv/bin/activate # On Windows: venv\\Scripts\\activate\r\npip install -e .\r\n```\r\n\r\n### Building\r\n\r\n```bash\r\npython -m build\r\n```\r\n\r\n\r\n## Uninstall\r\n\r\n### Global Installation (pipx)\r\n```bash\r\npipx uninstall webamon-cli\r\n```\r\n\r\n### PyPI Installation\r\n```bash\r\npip uninstall webamon-cli\r\n```\r\n\r\n### Development Installation\r\n```bash\r\n# If installed with pip install -e .\r\npip uninstall webamon-cli\r\n\r\n# Remove the repository\r\nrm -rf webamon-cli\r\n```\r\n\r\n## License\r\n\r\nApache License 2.0\r\n\r\nCopyright 2025 Webamon\r\n\r\nLicensed under the Apache License, Version 2.0 (the \"License\");\r\nyou may not use this file except in compliance with the License.\r\nYou may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n\r\n## Contributing\r\n\r\nWe welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines on:\r\n\r\n- Setting up your development environment\r\n- Code style and testing requirements \r\n- Submitting bug reports and feature requests\r\n- Pull request process and code review\r\n\r\nQuick start: Fork \u2192 Branch \u2192 Code \u2192 Test \u2192 Pull Request\r\n\r\n## Security\r\n\r\nSecurity is important to us. Please see [SECURITY.md](SECURITY.md) for:\r\n\r\n- Reporting security vulnerabilities\r\n- Security best practices for users\r\n- API key and data protection guidelines\r\n- Incident response procedures\r\n",
"bugtrack_url": null,
"license": null,
"summary": "Webamon Search CLI - The Google of Threat Intelligence.",
"version": "0.2.3",
"project_urls": {
"Bug Tracker": "https://github.com/webamon-org/webamon-cli/issues",
"Documentation": "https://github.com/webamon-org/webamon-cli#readme",
"Homepage": "https://webamon.com",
"Repository": "https://github.com/webamon-org/webamon-cli",
"Webamon Search": "https://google.webamon.com"
},
"split_keywords": [
"webamon",
" threat-intelligence",
" osint",
" security",
" threat",
" hunting",
" cli",
" cybersecurity",
" search",
" intel"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "6b13da54f326e5037198fe426316ae7f9c50360b2707add4c07be29a37bb24bf",
"md5": "bdb1476c33b7aeb8f422c218da88dc21",
"sha256": "b973d93875710af4e5d31bbe8497f68621ac0b486c8f87622bc94b6d69cf7723"
},
"downloads": -1,
"filename": "webamon_cli-0.2.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "bdb1476c33b7aeb8f422c218da88dc21",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 27838,
"upload_time": "2025-08-09T15:43:10",
"upload_time_iso_8601": "2025-08-09T15:43:10.875965Z",
"url": "https://files.pythonhosted.org/packages/6b/13/da54f326e5037198fe426316ae7f9c50360b2707add4c07be29a37bb24bf/webamon_cli-0.2.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3326632a4156d61f0735533c30be1fad96cc93478a1f5a8fd82e495f7e94294",
"md5": "789d55f4a83febff834d56245bc402c8",
"sha256": "bbafefcf22f528bd96b28b44e27a066b18a2334d64cde4939d64971ead60ec25"
},
"downloads": -1,
"filename": "webamon_cli-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "789d55f4a83febff834d56245bc402c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 30298,
"upload_time": "2025-08-09T15:43:12",
"upload_time_iso_8601": "2025-08-09T15:43:12.086223Z",
"url": "https://files.pythonhosted.org/packages/e3/32/6632a4156d61f0735533c30be1fad96cc93478a1f5a8fd82e495f7e94294/webamon_cli-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-09 15:43:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "webamon-org",
"github_project": "webamon-cli",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "click",
"specs": [
[
">=",
"8.0.0"
]
]
},
{
"name": "requests",
"specs": [
[
">=",
"2.25.0"
]
]
},
{
"name": "rich",
"specs": [
[
">=",
"10.0.0"
]
]
},
{
"name": "pydantic",
"specs": [
[
">=",
"1.8.0"
]
]
}
],
"lcname": "webamon-cli"
}