{"id":25074775,"url":"https://github.com/rix4uni/pyxss","last_synced_at":"2025-11-21T13:02:47.688Z","repository":{"id":262452194,"uuid":"848248892","full_name":"rix4uni/pyxss","owner":"rix4uni","description":"Simple XSS vulnerability checker tool very useful with xsschecker.","archived":false,"fork":false,"pushed_at":"2025-11-21T11:02:40.000Z","size":599,"stargazers_count":12,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-21T12:20:01.963Z","etag":null,"topics":["bugbounty","masshuntxss","recon","reconnaissance","vulnerability","xss","xss-automation","xsschecker","xssvalidator"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rix4uni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-27T12:16:57.000Z","updated_at":"2025-11-21T11:41:33.000Z","dependencies_parsed_at":"2025-10-07T17:33:47.049Z","dependency_job_id":"31768f31-b671-48c9-ac6a-d9e6dfbb9d8c","html_url":"https://github.com/rix4uni/pyxss","commit_stats":null,"previous_names":["rix4uni/pyxss"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/rix4uni/pyxss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpyxss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpyxss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpyxss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpyxss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rix4uni","download_url":"https://codeload.github.com/rix4uni/pyxss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpyxss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285620632,"owners_count":27203062,"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","status":"online","status_checked_at":"2025-11-21T02:00:06.175Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bugbounty","masshuntxss","recon","reconnaissance","vulnerability","xss","xss-automation","xsschecker","xssvalidator"],"created_at":"2025-02-07T00:18:32.295Z","updated_at":"2025-11-21T13:02:47.683Z","avatar_url":"https://github.com/rix4uni.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## pyxss\nSimple XSS vulnerability checker tool very useful with xsschecker.\n\n## Installation\n```\ngit clone https://github.com/rix4uni/pyxss.git\ncd pyxss\npython3 setup.py install\n```\n\n## pipx\nQuick setup in isolated python environment using [pipx](https://pypa.github.io/pipx/)\n```\npipx install --force git+https://github.com/rix4uni/pyxss.git\n```\n\n## Usage\n```\nusage: pyxss [-h] [-o OUTPUT_FILE] [--timeout TIMEOUT] [--popupload POPUPLOAD] [-w WORKERS] [--silent] [--no-color] [--headless] [--version]\n\npyxss - Simple XSS vulnerability checker.\n\noptions:\n  -h, --help            show this help message and exit\n  -o, --output OUTPUT_FILE\n                        Save output to a file\n  --timeout TIMEOUT     Timeout in seconds for page load (default 15)\n  --popupload POPUPLOAD\n                        Wait time for Alert popup to load in seconds (default 5)\n  -w, --workers WORKERS\n                        Number of parallel workers for URL scanning (default 4)\n  --silent              Run without printing the banner\n  --no-color            Disable colored output\n  --headless            Run in headless mode (no GUI Browser)\n  --version             Show current version of pyxss\n\nExamples:\n      # Step 1\n      curl -s \"https://raw.githubusercontent.com/rix4uni/WordList/refs/heads/main/payloads/xss/xss-small.txt\" | sed 's/^/rix4uni/' | unew -q fav-xss.txt\n\n      # Step 2\n      cat urls.txt | pvreplace -silent -payload fav-xss.txt -fuzzing-part param-value -fuzzing-type replace -fuzzing-mode single | xsschecker -nc -match 'rix4uni' -vuln -t 100 | sed 's/^Vulnerable: \\[[^]]*\\] \\[[^]]*\\] //' | unew xsschecker.txt\n\n      # Step 3\n      cat xsschecker.txt | pyxss -o validxss.txt\n```\n\n## Usage Examples\n```\n# Step 1\ncurl -s \"https://raw.githubusercontent.com/rix4uni/WordList/refs/heads/main/payloads/xss/xss-small.txt\" | sed 's/^/rix4uni/' | unew -q fav-xss.txt\n\n# Step 2\ncat urls.txt | pvreplace -silent -payload fav-xss.txt -fuzzing-part param-value -fuzzing-type replace -fuzzing-mode single | xsschecker -nc -match 'rix4uni' -vuln -t 100 | sed 's/^Vulnerable: \\[[^]]*\\] \\[[^]]*\\] //' | unew xsschecker.txt\n    \n# Step 3\ncat xsschecker.txt | pyxss -o validxss.txt\n```\n\n## Demo\n`v0.0.4` https://youtu.be/CWTEoU3Pkdo\n\n`v0.0.3` https://github.com/user-attachments/assets/3e9dcfaf-8f46-44e5-ab59-e9833ebbaf8f\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Fpyxss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frix4uni%2Fpyxss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Fpyxss/lists"}