├── .gitattributes ├── .github └── workflows │ ├── golangci-lint.yml │ └── release.yml ├── .golangci.yaml ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── cmd └── gbounty │ ├── bootstrap │ ├── bootstrap.go │ ├── bootstrap_requester.go │ ├── checkver.go │ ├── helpers.go │ ├── os_signals.go │ ├── os_signals_win.go │ ├── trademark.go │ └── update.go │ └── main.go ├── config.go ├── entrypoint ├── entrypoint.go ├── entrypoint_body_param.go ├── entrypoint_cookie.go ├── entrypoint_custom_header.go ├── entrypoint_custom_header_test.go ├── entrypoint_entire_body.go ├── entrypoint_header.go ├── entrypoint_json_param.go ├── entrypoint_multipart.go ├── entrypoint_path.go ├── entrypoint_query.go ├── entrypoint_test.go ├── entrypoint_url.go ├── entrypoint_user_provided.go ├── entrypoint_xml_param.go ├── finder_body_param.go ├── finder_body_param_test.go ├── finder_cookie.go ├── finder_cookie_test.go ├── finder_entire_body.go ├── finder_entire_body_test.go ├── finder_header.go ├── finder_header_test.go ├── finder_json_param.go ├── finder_json_param_test.go ├── finder_multipart.go ├── finder_multipart_test.go ├── finder_path.go ├── finder_path_test.go ├── finder_query.go ├── finder_query_test.go ├── finder_url.go ├── finder_url_test.go ├── finder_user_provided.go ├── finder_user_provided_test.go ├── finder_xml_param.go └── finder_xml_param_test.go ├── go.mod ├── go.sum ├── interfaces.go ├── interfaces_fs.go ├── internal └── platform │ ├── cli │ ├── cli.go │ ├── config.go │ ├── request.go │ └── types.go │ ├── metrics │ └── metrics.go │ └── writer │ ├── console.go │ ├── json.go │ ├── markdown.go │ ├── option.go │ ├── plain.go │ ├── printers.go │ ├── suffix.go │ └── util.go ├── kit ├── blindhost │ ├── blindhost.go │ ├── client.go │ └── poller.go ├── console │ ├── color │ │ └── color.go │ └── printer │ │ └── printer.go ├── die │ ├── die.go │ └── die_test.go ├── getopt │ ├── getopt.go │ └── getopt_test.go ├── gitconfig │ └── gitconfig.go ├── jsonmap │ ├── jsonmap.go │ └── jsonmap_test.go ├── logger │ ├── logger.go │ └── logger_test.go ├── osext │ ├── osext.go │ ├── osext_plan9.go │ ├── osext_procfs.go │ ├── osext_sysctl.go │ ├── osext_test.go │ └── osext_windows.go ├── panics │ ├── panics.go │ └── panics_test.go ├── pool │ └── pool.go ├── progressbar │ └── progressbar.go ├── selfupdate │ ├── apply.go │ ├── decompress.go │ ├── detect.go │ ├── github.go │ ├── hide_noop.go │ ├── hide_windows.go │ ├── selfupdate.go │ └── update.go ├── semver │ ├── semver.go │ └── semver_test.go ├── slices │ ├── slices.go │ └── slices_test.go ├── strings │ ├── capitalize │ │ ├── capitalize.go │ │ └── capitalize_test.go │ └── occurrence │ │ ├── occurrence.go │ │ └── occurrence_test.go ├── syncutil │ ├── syncutil.go │ └── syncutil_test.go ├── ulid │ └── ulid.go └── url │ ├── url.go │ └── url_test.go ├── match ├── extractor.go ├── extractor_req.go ├── extractor_req_body.go ├── extractor_req_cookie.go ├── extractor_req_json.go ├── extractor_req_multipart.go ├── extractor_req_query.go ├── extractor_req_url.go ├── extractor_req_xml.go ├── match.go └── match_test.go ├── modifier ├── custom_tokens.go ├── email.go ├── http_method.go ├── http_method_test.go ├── interaction_host.go ├── match_and_replace.go ├── modifier.go ├── random.go ├── random_test.go ├── template.go ├── template_test.go └── timeout.go ├── params.go ├── params_test.go ├── passive.go ├── platform ├── filesystem │ ├── filesystem.go │ └── filesystem_test.go └── http │ ├── client │ ├── client.go │ ├── client_opts.go │ ├── error.go │ ├── reader.go │ └── writer.go │ ├── httputil │ └── httputil.go │ ├── pool.go │ ├── pool_test.go │ └── stdclient │ ├── client.go │ └── client_opts.go ├── profile ├── active.go ├── change_http_method.go ├── encode │ ├── encode.go │ └── encode_test.go ├── grep.go ├── insertion_point.go ├── match_and_replace.go ├── payload_position.go ├── profile.go ├── profilefakes │ └── time_based.go ├── provider.go ├── provider_file.go ├── provider_multipart.go ├── provider_zip.go ├── redirect.go ├── request.go ├── response.go ├── show_alert.go ├── step.go ├── step_test.go └── type.go ├── request ├── options.go ├── options_test.go ├── request.go ├── request_test.go ├── stdlib.go └── stdlib_test.go ├── requester_pool.go ├── requester_pool_test.go ├── response ├── response.go ├── response_test.go ├── stdlib.go └── stdlib_test.go ├── runner.go ├── runner_opts.go ├── runner_test.go ├── scan.go ├── static ├── gbounty-logo.png └── logo.png ├── stats.go ├── task.go ├── template.go ├── types.go └── version.go /.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/README.md -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/bootstrap.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/bootstrap_requester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/bootstrap_requester.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/checkver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/checkver.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/helpers.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/os_signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/os_signals.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/os_signals_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/os_signals_win.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/trademark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/trademark.go -------------------------------------------------------------------------------- /cmd/gbounty/bootstrap/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/bootstrap/update.go -------------------------------------------------------------------------------- /cmd/gbounty/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/cmd/gbounty/main.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/config.go -------------------------------------------------------------------------------- /entrypoint/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_body_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_body_param.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_cookie.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_custom_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_custom_header.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_custom_header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_custom_header_test.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_entire_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_entire_body.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_header.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_json_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_json_param.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_multipart.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_path.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_query.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_test.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_url.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_user_provided.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_user_provided.go -------------------------------------------------------------------------------- /entrypoint/entrypoint_xml_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/entrypoint_xml_param.go -------------------------------------------------------------------------------- /entrypoint/finder_body_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_body_param.go -------------------------------------------------------------------------------- /entrypoint/finder_body_param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_body_param_test.go -------------------------------------------------------------------------------- /entrypoint/finder_cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_cookie.go -------------------------------------------------------------------------------- /entrypoint/finder_cookie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_cookie_test.go -------------------------------------------------------------------------------- /entrypoint/finder_entire_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_entire_body.go -------------------------------------------------------------------------------- /entrypoint/finder_entire_body_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_entire_body_test.go -------------------------------------------------------------------------------- /entrypoint/finder_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_header.go -------------------------------------------------------------------------------- /entrypoint/finder_header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_header_test.go -------------------------------------------------------------------------------- /entrypoint/finder_json_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_json_param.go -------------------------------------------------------------------------------- /entrypoint/finder_json_param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_json_param_test.go -------------------------------------------------------------------------------- /entrypoint/finder_multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_multipart.go -------------------------------------------------------------------------------- /entrypoint/finder_multipart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_multipart_test.go -------------------------------------------------------------------------------- /entrypoint/finder_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_path.go -------------------------------------------------------------------------------- /entrypoint/finder_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_path_test.go -------------------------------------------------------------------------------- /entrypoint/finder_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_query.go -------------------------------------------------------------------------------- /entrypoint/finder_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_query_test.go -------------------------------------------------------------------------------- /entrypoint/finder_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_url.go -------------------------------------------------------------------------------- /entrypoint/finder_url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_url_test.go -------------------------------------------------------------------------------- /entrypoint/finder_user_provided.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_user_provided.go -------------------------------------------------------------------------------- /entrypoint/finder_user_provided_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_user_provided_test.go -------------------------------------------------------------------------------- /entrypoint/finder_xml_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_xml_param.go -------------------------------------------------------------------------------- /entrypoint/finder_xml_param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/entrypoint/finder_xml_param_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/go.sum -------------------------------------------------------------------------------- /interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/interfaces.go -------------------------------------------------------------------------------- /interfaces_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/interfaces_fs.go -------------------------------------------------------------------------------- /internal/platform/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/cli/cli.go -------------------------------------------------------------------------------- /internal/platform/cli/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/cli/config.go -------------------------------------------------------------------------------- /internal/platform/cli/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/cli/request.go -------------------------------------------------------------------------------- /internal/platform/cli/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/cli/types.go -------------------------------------------------------------------------------- /internal/platform/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/metrics/metrics.go -------------------------------------------------------------------------------- /internal/platform/writer/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/console.go -------------------------------------------------------------------------------- /internal/platform/writer/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/json.go -------------------------------------------------------------------------------- /internal/platform/writer/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/markdown.go -------------------------------------------------------------------------------- /internal/platform/writer/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/option.go -------------------------------------------------------------------------------- /internal/platform/writer/plain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/plain.go -------------------------------------------------------------------------------- /internal/platform/writer/printers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/printers.go -------------------------------------------------------------------------------- /internal/platform/writer/suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/suffix.go -------------------------------------------------------------------------------- /internal/platform/writer/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/internal/platform/writer/util.go -------------------------------------------------------------------------------- /kit/blindhost/blindhost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/blindhost/blindhost.go -------------------------------------------------------------------------------- /kit/blindhost/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/blindhost/client.go -------------------------------------------------------------------------------- /kit/blindhost/poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/blindhost/poller.go -------------------------------------------------------------------------------- /kit/console/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/console/color/color.go -------------------------------------------------------------------------------- /kit/console/printer/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/console/printer/printer.go -------------------------------------------------------------------------------- /kit/die/die.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/die/die.go -------------------------------------------------------------------------------- /kit/die/die_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/die/die_test.go -------------------------------------------------------------------------------- /kit/getopt/getopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/getopt/getopt.go -------------------------------------------------------------------------------- /kit/getopt/getopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/getopt/getopt_test.go -------------------------------------------------------------------------------- /kit/gitconfig/gitconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/gitconfig/gitconfig.go -------------------------------------------------------------------------------- /kit/jsonmap/jsonmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/jsonmap/jsonmap.go -------------------------------------------------------------------------------- /kit/jsonmap/jsonmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/jsonmap/jsonmap_test.go -------------------------------------------------------------------------------- /kit/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/logger/logger.go -------------------------------------------------------------------------------- /kit/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/logger/logger_test.go -------------------------------------------------------------------------------- /kit/osext/osext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext.go -------------------------------------------------------------------------------- /kit/osext/osext_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext_plan9.go -------------------------------------------------------------------------------- /kit/osext/osext_procfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext_procfs.go -------------------------------------------------------------------------------- /kit/osext/osext_sysctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext_sysctl.go -------------------------------------------------------------------------------- /kit/osext/osext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext_test.go -------------------------------------------------------------------------------- /kit/osext/osext_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/osext/osext_windows.go -------------------------------------------------------------------------------- /kit/panics/panics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/panics/panics.go -------------------------------------------------------------------------------- /kit/panics/panics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/panics/panics_test.go -------------------------------------------------------------------------------- /kit/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/pool/pool.go -------------------------------------------------------------------------------- /kit/progressbar/progressbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/progressbar/progressbar.go -------------------------------------------------------------------------------- /kit/selfupdate/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/apply.go -------------------------------------------------------------------------------- /kit/selfupdate/decompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/decompress.go -------------------------------------------------------------------------------- /kit/selfupdate/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/detect.go -------------------------------------------------------------------------------- /kit/selfupdate/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/github.go -------------------------------------------------------------------------------- /kit/selfupdate/hide_noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/hide_noop.go -------------------------------------------------------------------------------- /kit/selfupdate/hide_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/hide_windows.go -------------------------------------------------------------------------------- /kit/selfupdate/selfupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/selfupdate.go -------------------------------------------------------------------------------- /kit/selfupdate/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/selfupdate/update.go -------------------------------------------------------------------------------- /kit/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/semver/semver.go -------------------------------------------------------------------------------- /kit/semver/semver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/semver/semver_test.go -------------------------------------------------------------------------------- /kit/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/slices/slices.go -------------------------------------------------------------------------------- /kit/slices/slices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/slices/slices_test.go -------------------------------------------------------------------------------- /kit/strings/capitalize/capitalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/strings/capitalize/capitalize.go -------------------------------------------------------------------------------- /kit/strings/capitalize/capitalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/strings/capitalize/capitalize_test.go -------------------------------------------------------------------------------- /kit/strings/occurrence/occurrence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/strings/occurrence/occurrence.go -------------------------------------------------------------------------------- /kit/strings/occurrence/occurrence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/strings/occurrence/occurrence_test.go -------------------------------------------------------------------------------- /kit/syncutil/syncutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/syncutil/syncutil.go -------------------------------------------------------------------------------- /kit/syncutil/syncutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/syncutil/syncutil_test.go -------------------------------------------------------------------------------- /kit/ulid/ulid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/ulid/ulid.go -------------------------------------------------------------------------------- /kit/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/url/url.go -------------------------------------------------------------------------------- /kit/url/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/kit/url/url_test.go -------------------------------------------------------------------------------- /match/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor.go -------------------------------------------------------------------------------- /match/extractor_req.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req.go -------------------------------------------------------------------------------- /match/extractor_req_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_body.go -------------------------------------------------------------------------------- /match/extractor_req_cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_cookie.go -------------------------------------------------------------------------------- /match/extractor_req_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_json.go -------------------------------------------------------------------------------- /match/extractor_req_multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_multipart.go -------------------------------------------------------------------------------- /match/extractor_req_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_query.go -------------------------------------------------------------------------------- /match/extractor_req_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_url.go -------------------------------------------------------------------------------- /match/extractor_req_xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/extractor_req_xml.go -------------------------------------------------------------------------------- /match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/match.go -------------------------------------------------------------------------------- /match/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/match/match_test.go -------------------------------------------------------------------------------- /modifier/custom_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/custom_tokens.go -------------------------------------------------------------------------------- /modifier/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/email.go -------------------------------------------------------------------------------- /modifier/http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/http_method.go -------------------------------------------------------------------------------- /modifier/http_method_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/http_method_test.go -------------------------------------------------------------------------------- /modifier/interaction_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/interaction_host.go -------------------------------------------------------------------------------- /modifier/match_and_replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/match_and_replace.go -------------------------------------------------------------------------------- /modifier/modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/modifier.go -------------------------------------------------------------------------------- /modifier/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/random.go -------------------------------------------------------------------------------- /modifier/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/random_test.go -------------------------------------------------------------------------------- /modifier/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/template.go -------------------------------------------------------------------------------- /modifier/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/template_test.go -------------------------------------------------------------------------------- /modifier/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/modifier/timeout.go -------------------------------------------------------------------------------- /params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/params.go -------------------------------------------------------------------------------- /params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/params_test.go -------------------------------------------------------------------------------- /passive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/passive.go -------------------------------------------------------------------------------- /platform/filesystem/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/filesystem/filesystem.go -------------------------------------------------------------------------------- /platform/filesystem/filesystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/filesystem/filesystem_test.go -------------------------------------------------------------------------------- /platform/http/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/client/client.go -------------------------------------------------------------------------------- /platform/http/client/client_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/client/client_opts.go -------------------------------------------------------------------------------- /platform/http/client/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/client/error.go -------------------------------------------------------------------------------- /platform/http/client/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/client/reader.go -------------------------------------------------------------------------------- /platform/http/client/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/client/writer.go -------------------------------------------------------------------------------- /platform/http/httputil/httputil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/httputil/httputil.go -------------------------------------------------------------------------------- /platform/http/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/pool.go -------------------------------------------------------------------------------- /platform/http/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/pool_test.go -------------------------------------------------------------------------------- /platform/http/stdclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/stdclient/client.go -------------------------------------------------------------------------------- /platform/http/stdclient/client_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/platform/http/stdclient/client_opts.go -------------------------------------------------------------------------------- /profile/active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/active.go -------------------------------------------------------------------------------- /profile/change_http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/change_http_method.go -------------------------------------------------------------------------------- /profile/encode/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/encode/encode.go -------------------------------------------------------------------------------- /profile/encode/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/encode/encode_test.go -------------------------------------------------------------------------------- /profile/grep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/grep.go -------------------------------------------------------------------------------- /profile/insertion_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/insertion_point.go -------------------------------------------------------------------------------- /profile/match_and_replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/match_and_replace.go -------------------------------------------------------------------------------- /profile/payload_position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/payload_position.go -------------------------------------------------------------------------------- /profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/profile.go -------------------------------------------------------------------------------- /profile/profilefakes/time_based.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/profilefakes/time_based.go -------------------------------------------------------------------------------- /profile/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/provider.go -------------------------------------------------------------------------------- /profile/provider_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/provider_file.go -------------------------------------------------------------------------------- /profile/provider_multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/provider_multipart.go -------------------------------------------------------------------------------- /profile/provider_zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/provider_zip.go -------------------------------------------------------------------------------- /profile/redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/redirect.go -------------------------------------------------------------------------------- /profile/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/request.go -------------------------------------------------------------------------------- /profile/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/response.go -------------------------------------------------------------------------------- /profile/show_alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/show_alert.go -------------------------------------------------------------------------------- /profile/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/step.go -------------------------------------------------------------------------------- /profile/step_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/step_test.go -------------------------------------------------------------------------------- /profile/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/profile/type.go -------------------------------------------------------------------------------- /request/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/options.go -------------------------------------------------------------------------------- /request/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/options_test.go -------------------------------------------------------------------------------- /request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/request.go -------------------------------------------------------------------------------- /request/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/request_test.go -------------------------------------------------------------------------------- /request/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/stdlib.go -------------------------------------------------------------------------------- /request/stdlib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/request/stdlib_test.go -------------------------------------------------------------------------------- /requester_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/requester_pool.go -------------------------------------------------------------------------------- /requester_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/requester_pool_test.go -------------------------------------------------------------------------------- /response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/response/response.go -------------------------------------------------------------------------------- /response/response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/response/response_test.go -------------------------------------------------------------------------------- /response/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/response/stdlib.go -------------------------------------------------------------------------------- /response/stdlib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/response/stdlib_test.go -------------------------------------------------------------------------------- /runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/runner.go -------------------------------------------------------------------------------- /runner_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/runner_opts.go -------------------------------------------------------------------------------- /runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/runner_test.go -------------------------------------------------------------------------------- /scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/scan.go -------------------------------------------------------------------------------- /static/gbounty-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/static/gbounty-logo.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/static/logo.png -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/stats.go -------------------------------------------------------------------------------- /task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/task.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/template.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/types.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BountySecurity/gbounty/HEAD/version.go --------------------------------------------------------------------------------