Metadata-Version: 2.0
Name: wsltools
Version: 0.2
Summary: Web Scan Lazy Tools
Home-page: https://github.com/symbo1/wsltools
Author: CongRong
Author-email: tr3jer@gmail.com
License: MIT
Project-URL: Source, https://github.com/symbo1/wsltools
Project-URL: Documentation, https://wsltools.readthedocs.io
Keywords: security,security-tools,security-scanner,security-automation,security-audit,spider,spider-framework,scanner-web,security-tool,crawling-framework,web-vulnerability-scanners
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Description-Content-Type: text/markdown

wsltools - Web Scan Lazy Tools
===============================

<img src="https://img.shields.io/pypi/v/benjiemingdev.svg">&nbsp;<img src="https://img.shields.io/pypi/l/benjiemingdev.svg">&nbsp;<img src="https://img.shields.io/pypi/wheel/benjiemingdev.svg">&nbsp;<img src="https://img.shields.io/pypi/pyversions/benjiemingdev.svg">

<p><strong>wsltools</strong> is an elegant and simple Web Scan auxiliary library for Python.</p>

------------------------------------------------

<strong>Installation</strong>:

```
>>> pip install wsltools
```

<strong>Basic Use</strong>:

```
In[0]: from wsltools import *
In[1]: payloads = ['-Symbo1-']
In[2]: url = 'https://www.example.com/path/index;params?a=1&b=2&c=3#fragment'
In[3]: urlclean.mixPayload(url, payloads, ['path', 'query', 'params'])
Out[3]: ['https://www.example.com/-Symbo1-/index;params?a=1&b=2&c=3#fragment',
'https://www.example.com/path/index;-Symbo1-?a=1&b=2&c=3#fragment',
'https://www.example.com/path/index;params?a=-Symbo1-&b=3&c=2#fragment',
'https://www.example.com/path/index;params?a=1&b=-Symbo1-&b=2#fragment',
'https://www.example.com/path/index;params?a=1&b=3&c=-Symbo1-#fragment']
```

------------------------------------------------

Documents:
-------------

https://wsltools.readthedocs.io/

