{"id":25074801,"url":"https://github.com/rix4uni/pvreplace","last_synced_at":"2025-04-15T00:12:41.629Z","repository":{"id":171771862,"uuid":"648396707","full_name":"rix4uni/pvreplace","owner":"rix4uni","description":"Accept URLs on stdin, replace all query string values with a user-supplied value","archived":false,"fork":false,"pushed_at":"2024-10-07T14:43:54.000Z","size":58,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-15T00:12:22.182Z","etag":null,"topics":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence"],"latest_commit_sha":null,"homepage":"","language":"Go","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/rix4uni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-06-01T21:59:51.000Z","updated_at":"2025-01-24T07:55:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"bfb595fb-c54d-4765-8447-28b39b64c005","html_url":"https://github.com/rix4uni/pvreplace","commit_stats":null,"previous_names":["rix4uni/pvreplace"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpvreplace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpvreplace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpvreplace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Fpvreplace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rix4uni","download_url":"https://codeload.github.com/rix4uni/pvreplace/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248981270,"owners_count":21193147,"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":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence"],"created_at":"2025-02-07T00:18:37.647Z","updated_at":"2025-04-15T00:12:41.612Z","avatar_url":"https://github.com/rix4uni.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## pvreplace\n \npvreplace accept URLs on stdin, replace all query string values with a user-supplied value, only output each combination of query string parameters once per host and path.\n\n## Installation\n```\ngo install github.com/rix4uni/pvreplace@latest\n```\n\n## Download prebuilt binaries\n```\nwget https://github.com/rix4uni/pvreplace/releases/download/v0.0.1/pvreplace-linux-amd64-0.0.1.tgz\ntar -xvzf pvreplace-linux-amd64-0.0.1.tgz\nrm -rf pvreplace-linux-amd64-0.0.1.tgz\nmv pvreplace ~/go/bin/pvreplace\n```\nOr download [binary release](https://github.com/rix4uni/pvreplace/releases) for your platform.\n\n## Compile from source\n```\ngit clone --depth 1 github.com/rix4uni/pvreplace.git\ncd pvreplace; go install\n```\n\n## Usage\n```console\nUsage of pvreplace:\n  -fuzzing-mode string\n        Fuzzing mode: single, multiple (default \"multiple\")\n  -fuzzing-part string\n        Fuzzing part: param-value, param-name, path-suffix, path-segment (default \"param-value\")\n  -fuzzing-type string\n        Fuzzing type: replace, prefix, postfix (default \"replace\")\n  -ignore-lines string\n        Comma-separated list or file of lines to ignore in raw data\n  -list string\n        File containing URLs to process\n  -payload string\n        Comma-separated list of payloads or a file with payloads (default \"FUZZ\")\n  -raw string\n        File containing Burp Suite raw request data to process\n  -u string\n        The URL to process\n```\n\n## Fuzzing-Part\n`param-value (default) - fuzz param-value for URL`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-part param-value\nhttp://testphp.vulnweb.com/artists.php?artist=FUZZ\u0026id=FUZZ\n```\n\n`param-name - fuzz param-name for URL`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-part param-name\nhttp://testphp.vulnweb.com/artists.php?FUZZ=1\u0026FUZZ=2\n```\n\n`path-suffix - fuzz path-suffix for URL`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-part path-suffix\nhttp://testphp.vulnweb.com/artists.phpFUZZ?artist=1\u0026id=2\n```\n\n`path-segment - fuzz path-segment for URL`\n```\n▶ echo \"http://testphp.vulnweb.com/wp-admin/admin-ajax.php\" | pvreplace -fuzzing-part path-segment\nhttp://testphp.vulnweb.com/wp-adminFUZZ/admin-ajax.php\n```\n\n`ext-filename - fuzz ext-filename for URL`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-part ext-filename\nhttp://testphp.vulnweb.com/FUZZ.php?artist=1\u0026id=2\n```\n\n## Fuzzing-Type\n`replace (default) - replace the value with payload`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-type replace\nhttp://testphp.vulnweb.com/artists.php?artist=FUZZ\u0026id=FUZZ\n```\n\n`prefix - prefix the value with payload`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-type prefix\nhttp://testphp.vulnweb.com/artists.php?artist=FUZZ1\u0026id=FUZZ2\n```\n\n`postfix - postfix the value with payload`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-type postfix\nhttp://testphp.vulnweb.com/artists.php?artist=1FUZZ\u0026id=2FUZZ\n```\n\n## Fuzzing-Mode\n`multiple (default) - replace all values at once`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-mode multiple\nhttp://testphp.vulnweb.com/artists.php?artist=FUZZ\u0026id=FUZZ\n```\n\n`single - replace one value at a time`\n```\n▶ echo \"http://testphp.vulnweb.com/artists.php?artist=1\u0026id=2\" | pvreplace -fuzzing-mode single\nhttp://testphp.vulnweb.com/artists.php?artist=FUZZ\u0026id=2\nhttp://testphp.vulnweb.com/artists.php?artist=1\u0026id=FUZZ\n```\n\n## TODO\n- use \"github.com/projectdiscovery/goflags\"","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Fpvreplace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frix4uni%2Fpvreplace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Fpvreplace/lists"}