Metadata-Version: 2.1
Name: serpant
Version: 1.1.2
Summary: A CLI tool for scanning directories for vulnerabilities
Home-page: https://github.com/Latrodect/wss-repo-vulnerability-finder
Author: Bahadir Nural
Author-email: bahadir.nural@outlook.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: termcolor
Requires-Dist: colorlog
Requires-Dist: alive-progress

# World Serpant Search

![1709693527726](image/README/1709693527726.png)

World Serpant Search is a CLI tool for vulnerability detection. It allows you to scan directories for various types of vulnerabilities, including XSS vulnerabilities, authentication bypass vulnerabilities, and package vulnerabilities using the National Vulnerability Database (NVD).

![1709722154357](image/README/1709722154357.png)

## Installation

To install World Serpant Search, you can use pip:

```bash
pip install world-serpant-search
```

## Usage

After installation, you can run the CLI by executing the following command:

```bash
serpant
```

This will display the available commands and usage instructions.

### Commands

- `scan`: Scan a local directory for vulnerabilities.

  ```bash
  serpant scan <directory>
  ```
- `xss`: Scan a local directory for XSS vulnerabilities.

  ```bash
  serpant xss <directory>
  ```
- `abypass`: Scan a directory for authentication bypass vulnerabilities.

  ```bash
  serpant abypass <directory>
  ```
- `nvd`: Check package vulnerabilities using the National Vulnerability Database (NVD).

  ```bash
  serpant nvd <package>
  ```

## Examples

Scan a local directory for vulnerabilities:

```bash
serpant scan /path/to/directory
```

Scan a local directory for XSS vulnerabilities:

```bash
serpant xss /path/to/directory
```

Scan a directory for authentication bypass vulnerabilities:

```bash
serpant abypass /path/to/directory
```

Check package vulnerabilities using the National Vulnerability Database (NVD):

```bash
serpant nvd package-name
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
