Metadata-Version: 2.4
Name: quickxss
Version: 3.0.1
Summary: Automate XSS workflows with waybackurls, gau, gf, and dalfox.
Author: theinfosecguy
License: MIT License
        
        Copyright (c) 2021 Keshav Malik
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.12.0
Requires-Dist: pyfiglet>=1.0.2
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: isort>=5.13.0; extra == "dev"
Requires-Dist: ruff>=0.6.0; extra == "dev"
Dynamic: license-file

# QuickXSS

> Automate XSS discovery by chaining **waybackurls**, **gau**, **gf**, and **dalfox**.

[![CI](https://github.com/theinfosecguy/QuickXSS/actions/workflows/ci.yml/badge.svg)](https://github.com/theinfosecguy/QuickXSS/actions/workflows/ci.yml)
[![PyPI](https://img.shields.io/pypi/v/quickxss)](https://pypi.org/project/quickxss/)
[![Python 3.12+](https://img.shields.io/badge/python-3.12+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

## Quick Start

```bash
pip install quickxss
quickxss setup --install      # Auto-install gf, dalfox, waybackurls, gau
quickxss scan -d testphp.vulnweb.com
```

## Installation

```bash
pip install quickxss
```

Or with pipx:

```bash
pipx install quickxss
```

## Usage

```bash
quickxss scan -d testphp.vulnweb.com                    # Basic scan
quickxss scan -d testphp.vulnweb.com -b blind.xss.ht    # With blind XSS callback
quickxss scan -d testphp.vulnweb.com -o results.txt     # Custom output name
quickxss setup                                          # Check dependencies
quickxss setup --install                                # Auto-install missing deps
```

## Docker

```bash
docker build -t quickxss .
docker run --rm -it quickxss scan -d testphp.vulnweb.com
```

## Output

Results saved to `results/<domain>/`:

| File | Description |
|------|-------------|
| `<domain>.txt` | Raw URL collection |
| `<domain>_xss.txt` | Candidate URLs for testing |
| `results.txt` | Dalfox findings |

## Development

```bash
pytest                                    # Run tests
QUICKXSS_INTEGRATION=1 pytest -m integration  # Integration tests
make isort                                # Sort imports
make lint                                 # Run linter
```

## License

[MIT](LICENSE)
