Metadata-Version: 2.1
Name: w13scan
Version: 0.9.2
Summary: Passive Web Security Scanner
Home-page: https://github.com/boy-hack/w13scan.git
Author: boy-hack
Author-email: master@hacking8.com
License: UNKNOWN
Keywords: scanner,w13scan
Platform: any
Classifier: Topic :: Security
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.4
Description-Content-Type: text/markdown
Requires-Dist: asn1crypto (==0.24.0)
Requires-Dist: certifi (==2019.6.16)
Requires-Dist: cffi (==1.12.3)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: colorama (==0.4.1)
Requires-Dist: cryptography (==2.7)
Requires-Dist: idna (==2.8)
Requires-Dist: pycparser (==2.19)
Requires-Dist: pyOpenSSL (==18.0.0)
Requires-Dist: requests (==2.22.0)
Requires-Dist: six (==1.12.0)
Requires-Dist: tld (==0.9.3)
Requires-Dist: urllib3 (==1.25.3)

<h1 align="center">W13Scan</h1>

> W13scan is a proxy-based web scanner that runs on Linux/Windows/Mac systems.

[![GitHub issues](https://img.shields.io/github/issues/boy-hack/w13scan)](https://github.com/boy-hack/w13scan/issues) [![GitHub forks](https://img.shields.io/github/forks/boy-hack/w13scan)](https://github.com/boy-hack/w13scan/network) [![GitHub stars](https://img.shields.io/github/stars/boy-hack/w13scan)](https://github.com/boy-hack/w13scan/stargazers) [![GitHub license](https://img.shields.io/github/license/boy-hack/w13scan)](https://github.com/boy-hack/w13scan/blob/master/LICENSE)

[简体中文](./README_CN.md) | English

## Begin
Demo https://www.youtube.com/watch?v=zBgfnY-qSTU

Pure Python and Python version > 3

Can you use star to encourage the author ？

## 📦 Install

```bash
pip3 install w13scan
```

## 🔨 Usage

```bash
## help
w13scan -h

## running
w13scan -s 127.0.0.1:7778
```

### HTTPS Support

If you want w13scan to support https, similar to BurpSuite, first need to set up a proxy server (default 127.0.0.1:7778), then go to http://w13scan.ca to download the root certificate and trust it.

## ⌨️ Development

```python
from W13SCAN.api import Scanner

scanner = Scanner(threads=20)
scanner.put("http://example.com/?post=1")
scanner.run()

```

By introducing the w13scan package, you can quickly create a scanner.



