{"id":13843626,"url":"https://github.com/Symbo1/wsltools","last_synced_at":"2025-07-11T19:32:33.143Z","repository":{"id":62589670,"uuid":"256140035","full_name":"Symbo1/wsltools","owner":"Symbo1","description":"Web Scan Lazy Tools - Python Package","archived":false,"fork":false,"pushed_at":"2020-06-30T13:09:53.000Z","size":1911,"stargazers_count":314,"open_issues_count":0,"forks_count":31,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-05T17:38:24.975Z","etag":null,"topics":["crawling-framework","package","python-package","scanner-web","security","security-audit","security-automation","security-scanner","security-tool","security-tools","spider","spider-framework","web-vulnerability-scanner"],"latest_commit_sha":null,"homepage":"https://wsltools.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Symbo1.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-16T07:22:21.000Z","updated_at":"2024-07-13T16:27:26.000Z","dependencies_parsed_at":"2022-11-03T17:01:59.684Z","dependency_job_id":null,"html_url":"https://github.com/Symbo1/wsltools","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Symbo1%2Fwsltools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Symbo1%2Fwsltools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Symbo1%2Fwsltools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Symbo1%2Fwsltools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Symbo1","download_url":"https://codeload.github.com/Symbo1/wsltools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225755052,"owners_count":17519193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crawling-framework","package","python-package","scanner-web","security","security-audit","security-automation","security-scanner","security-tool","security-tools","spider","spider-framework","web-vulnerability-scanner"],"created_at":"2024-08-04T17:02:20.847Z","updated_at":"2024-11-21T15:31:14.156Z","avatar_url":"https://github.com/Symbo1.png","language":"Python","funding_links":[],"categories":["Python (1887)","Python"],"sub_categories":[],"readme":"# wsltools - Web Scan Lazy Tools\n\n\n![](https://img.shields.io/pypi/v/wsltools.svg)\n![](https://img.shields.io/pypi/l/wsltools.svg)\n![](https://img.shields.io/pypi/wheel/wsltools.svg)\n![](https://img.shields.io/pypi/pyversions/wsltools.svg)\n\n\u003e **wsltools** is an elegant and simple Web Scan auxiliary library for Python.\n\n-------------------\n\n**Installation**:\n\n```\n\u003e\u003e\u003e pip install wsltools\n```\n**Basic Use**:\n\n```python\nIn[0]: from wsltools import *\nIn[1]: payloads = ['-Symbo1-']\nIn[2]: url = 'https://www.example.com/path/index;params?a=1\u0026b=2\u0026c=3#fragment'\nIn[3]: urlclean.mixPayload(url, payloads, ['path', 'query', 'params'])\nOut[3]: ['https://www.example.com/-Symbo1-/index;params?a=1\u0026b=2\u0026c=3#fragment',\n'https://www.example.com/path/index;-Symbo1-?a=1\u0026b=2\u0026c=3#fragment',\n'https://www.example.com/path/index;params?a=-Symbo1-\u0026b=3\u0026c=2#fragment',\n'https://www.example.com/path/index;params?a=1\u0026b=-Symbo1-\u0026b=2#fragment',\n'https://www.example.com/path/index;params?a=1\u0026b=3\u0026c=-Symbo1-#fragment']\n```\n\n**Documents**:\n\nhttps://wsltools.readthedocs.io/\n\n![](https://raw.githubusercontent.com/symbo1/wsltools/master/doc.png)\n\n\n**User Guide Tree**:\n\n* urlclean\n\t* [ast](https://wsltools.readthedocs.io/en/latest/urlclean.html#ast)\n\t* [etl](https://wsltools.readthedocs.io/en/latest/urlclean.html#etl)\n\t* [pathSplit](https://wsltools.readthedocs.io/en/latest/urlclean.html#pathsplit)\n\t* [mixPayload](https://wsltools.readthedocs.io/en/latest/urlclean.html#mixpayload)\n* checksec\n\t* Check Web Application Firewall\n\t\t* [checkWaf](https://wsltools.readthedocs.io/en/latest/checksec.html#checkwaf)\n\t\t* [updateRules](https://wsltools.readthedocs.io/en/latest/checksec.html#updaterules)\n\t* Check HTTP Response Headers\n\t\t* [checkHeaders](https://wsltools.readthedocs.io/en/latest/checksec.html#checkheaders)\n\t\t* [x_xss_protection](https://wsltools.readthedocs.io/en/latest/checksec.html#x-xss-protection)\n\t\t* [content_security_policy](https://wsltools.readthedocs.io/en/latest/checksec.html#x-xss-protection)\n\t\t* [content_security_policy_report_only](https://wsltools.readthedocs.io/en/latest/checksec.html#content-security-policy-report-only)\n\t\t* [x_content_security_policy](https://wsltools.readthedocs.io/en/latest/checksec.html#x-content-security-policy)\n\t\t* [x_webkit_csp](https://wsltools.readthedocs.io/en/latest/checksec.html#x-webkit-csp)\n\t\t* [feature_policy](https://wsltools.readthedocs.io/en/latest/checksec.html#feature-policy)\n\t\t* [x_frame_options](https://wsltools.readthedocs.io/en/latest/checksec.html#x-frame-options)\n\t\t* [access_control_allow_methods](https://wsltools.readthedocs.io/en/latest/checksec.html#access-control-allow-methods)\n\t\t* [access_control_allow_headers](https://wsltools.readthedocs.io/en/latest/checksec.html#access-control-allow-headers)\n\t\t* [access_control_expose_headers](https://wsltools.readthedocs.io/en/latest/checksec.html#access-control-expose-headers)\n\t\t* [strict_transport_security](https://wsltools.readthedocs.io/en/latest/checksec.html#strict-transport-security)\n\t\t* [public_key_pins](https://wsltools.readthedocs.io/en/latest/checksec.html#public-key-pins)\n\t\t* [public_key_pins_report_only](https://wsltools.readthedocs.io/en/latest/checksec.html#public-key-pins-report-only)\n\t\t* [Other about Security Header](https://wsltools.readthedocs.io/en/latest/checksec.html#other-about-security-header)\n* datatype\n\t* [datatype](https://wsltools.readthedocs.io/en/latest/datatype.html#id1)\n\t* [isnumeric](https://wsltools.readthedocs.io/en/latest/datatype.html#isnumeric)\n\t* [istext](https://wsltools.readthedocs.io/en/latest/datatype.html#istext)\n\t* [isxml](https://wsltools.readthedocs.io/en/latest/datatype.html#isxml)\n\t* [isjson](https://wsltools.readthedocs.io/en/latest/datatype.html#isjson)\n\t* [isjsonp](https://wsltools.readthedocs.io/en/latest/datatype.html#isjsonp)\n\t* [isurl](https://wsltools.readthedocs.io/en/latest/datatype.html#isurl)\n\t* [isip](https://wsltools.readthedocs.io/en/latest/datatype.html#isip)\n\t* [isdomain](https://wsltools.readthedocs.io/en/latest/datatype.html#isdomain)\n\t* [isserialize](https://wsltools.readthedocs.io/en/latest/datatype.html#isserialize)\n\t* [isimage](https://wsltools.readthedocs.io/en/latest/datatype.html#isimage)\n\t* [isaudio](https://wsltools.readthedocs.io/en/latest/datatype.html#isaudio)\n\t* [isvideo](https://wsltools.readthedocs.io/en/latest/datatype.html#isvideo)\n\t* [isdocument](https://wsltools.readthedocs.io/en/latest/datatype.html#isdocument)\n\t* [isarchive](https://wsltools.readthedocs.io/en/latest/datatype.html#isarchive)\n\t* [isurl Support Schemes](https://wsltools.readthedocs.io/en/latest/datatype.html#isurl-support-schemes)\n\t* [Stream Support Types](https://wsltools.readthedocs.io/en/latest/datatype.html#isurl-support-schemes)\n* similar\n\t* [similar](https://wsltools.readthedocs.io/en/latest/similar.html)\n* faker\n\t* [Instance](https://wsltools.readthedocs.io/en/latest/faker.html#instance)\n\t* [profile](https://wsltools.readthedocs.io/en/latest/faker.html#profile)\n\t* [userAgent](https://wsltools.readthedocs.io/en/latest/faker.html#useragent)\n\t* [creditCard](https://wsltools.readthedocs.io/en/latest/faker.html#creditcard)\n\t* [email](https://wsltools.readthedocs.io/en/latest/faker.html#email)\n\t* [name](https://wsltools.readthedocs.io/en/latest/faker.html#name)\n\t* [ssn](https://wsltools.readthedocs.io/en/latest/faker.html#ssn)\n\t* [phone](https://wsltools.readthedocs.io/en/latest/faker.html#phone)\n\t* [job](https://wsltools.readthedocs.io/en/latest/faker.html#job)\n\t* [company](https://wsltools.readthedocs.io/en/latest/faker.html#company)\n\t* [address](https://wsltools.readthedocs.io/en/latest/faker.html#address)\n\t* [Support Credit Card Types](https://wsltools.readthedocs.io/en/latest/faker.html#support-credit-card-types)\n\t* [Support Locales code](https://wsltools.readthedocs.io/en/latest/faker.html#support-locales-code)\n* domaintools\n\t* [domain](https://wsltools.readthedocs.io/en/latest/domaintools.html#domain)\n\t* [valid](https://wsltools.readthedocs.io/en/latest/domaintools.html#valid)\n\t* [main](https://wsltools.readthedocs.io/en/latest/domaintools.html#main)\n\t* [sld](https://wsltools.readthedocs.io/en/latest/domaintools.html#sld)\n\t* [tld](https://wsltools.readthedocs.io/en/latest/domaintools.html#tld)\n\t* [subdomain](https://wsltools.readthedocs.io/en/latest/domaintools.html#subdomain)\n\t* [sublevel](https://wsltools.readthedocs.io/en/latest/domaintools.html#sublevel)\n\t* [subMatch](https://wsltools.readthedocs.io/en/latest/domaintools.html#subMatch)\n\t* [updateTLDS](https://wsltools.readthedocs.io/en/latest/domaintools.html#updatetlds)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSymbo1%2Fwsltools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSymbo1%2Fwsltools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSymbo1%2Fwsltools/lists"}