├── .gitignore ├── README.md ├── cmd ├── docgen │ └── docgen.go ├── functional-test │ ├── main.go │ ├── run.sh │ ├── targets-1000.txt │ ├── targets-150.txt │ ├── targets-250.txt │ ├── targets.txt │ └── testcases.txt ├── generate-checksum │ └── main.go ├── integration-test │ ├── code.go │ ├── custom-dir.go │ ├── dns.go │ ├── dsl.go │ ├── file.go │ ├── flow.go │ ├── fuzz.go │ ├── generic.go │ ├── headless.go │ ├── http.go │ ├── integration-test.go │ ├── interactsh.go │ ├── javascript.go │ ├── library.go │ ├── loader.go │ ├── multi.go │ ├── network.go │ ├── offline-http.go │ ├── ssl.go │ ├── template-dir.go │ ├── template-path.go │ ├── websocket.go │ ├── whois.go │ └── workflow.go ├── nuclei │ ├── issue-tracker-config.yaml │ └── main.go ├── tmc │ ├── main.go │ └── types.go └── tools │ └── fuzzplayground │ └── main.go ├── examples ├── advanced │ └── advanced.go └── simple │ └── simple.go ├── go.mod ├── go.sum ├── helm ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── hpa.yaml │ ├── interactsh-deployment.yaml │ ├── interactsh-ingress.yaml │ ├── interactsh-service.yaml │ ├── nuclei-configmap.yaml │ ├── nuclei-cron.yaml │ └── serviceaccount.yaml └── values.yaml ├── integration_tests ├── debug.sh ├── dsl │ ├── hide-version-warning.yaml │ └── show-version-warning.yaml ├── flow │ ├── conditional-flow-negative.yaml │ ├── conditional-flow.yaml │ ├── dns-ns-probe.yaml │ ├── flow-hide-matcher.yaml │ ├── iterate-one-value-flow.yaml │ └── iterate-values-flow.yaml ├── fuzz │ ├── fuzz-header-basic.yaml │ ├── fuzz-header-multiple.yaml │ ├── fuzz-headless.yaml │ ├── fuzz-mode.yaml │ ├── fuzz-query.yaml │ └── fuzz-type.yaml ├── generic │ └── auth │ │ └── certificate │ │ ├── assets │ │ ├── client.crt │ │ ├── client.key │ │ └── server.crt │ │ └── http-get.yaml ├── library │ ├── test.json │ └── test.yaml ├── loader │ ├── basic.yaml │ ├── condition-matched.yaml │ ├── excluded-template.yaml │ ├── get-headers.yaml │ ├── get.yaml │ ├── template-list.yaml │ └── workflow-list.yaml ├── protocols │ ├── code │ │ ├── ps1-snippet.yaml │ │ ├── py-env-var.yaml │ │ ├── py-file.yaml │ │ ├── py-interactsh.yaml │ │ ├── py-nosig.yaml │ │ ├── py-snippet.yaml │ │ ├── pyfile.py │ │ └── unsigned.yaml │ ├── dns │ │ ├── basic.yaml │ │ ├── caa.yaml │ │ ├── cname-fingerprint.yaml │ │ ├── dsl-matcher-variable.yaml │ │ ├── payload.yaml │ │ ├── ptr.yaml │ │ ├── tlsa.yaml │ │ └── variables.yaml │ ├── file │ │ ├── data │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── extract.yaml │ │ ├── matcher-with-and.yaml │ │ ├── matcher-with-nested-and.yaml │ │ └── matcher-with-or.yaml │ ├── headless │ │ ├── file-upload-negative.yaml │ │ ├── file-upload.yaml │ │ ├── headless-basic.yaml │ │ ├── headless-extract-values.yaml │ │ ├── headless-header-action.yaml │ │ ├── headless-header-status-test.yaml │ │ ├── headless-local.yaml │ │ ├── headless-payloads.yaml │ │ ├── headless-self-contained.yaml │ │ ├── headless-waitevent.yaml │ │ └── variables.yaml │ ├── http │ │ ├── annotation-timeout.yaml │ │ ├── cl-body-with-header.yaml │ │ ├── cl-body-without-header.yaml │ │ ├── cli-with-constants.yaml │ │ ├── custom-attack-type.yaml │ │ ├── default-matcher-condition.yaml │ │ ├── disable-path-automerge.yaml │ │ ├── disable-redirects.yaml │ │ ├── dsl-functions.yaml │ │ ├── dsl-matcher-variable.yaml │ │ ├── get-all-ips.yaml │ │ ├── get-case-insensitive.yaml │ │ ├── get-headers.yaml │ │ ├── get-host-redirects.yaml │ │ ├── get-override-sni.yaml │ │ ├── get-query-string.yaml │ │ ├── get-redirects-chain-headers.yaml │ │ ├── get-redirects.yaml │ │ ├── get-sni-unsafe.yaml │ │ ├── get-sni.yaml │ │ ├── get-without-scheme.yaml │ │ ├── get.yaml │ │ ├── http-paths.yaml │ │ ├── http-preprocessor.yaml │ │ ├── interactsh-requests-mc-and.yaml │ │ ├── interactsh-stop-at-first-match.yaml │ │ ├── interactsh.yaml │ │ ├── matcher-status.yaml │ │ ├── multi-request.yaml │ │ ├── post-body.yaml │ │ ├── post-json-body.yaml │ │ ├── post-multipart-body.yaml │ │ ├── race-multiple.yaml │ │ ├── race-simple.yaml │ │ ├── raw-cookie-reuse.yaml │ │ ├── raw-dynamic-extractor.yaml │ │ ├── raw-get-query.yaml │ │ ├── raw-get.yaml │ │ ├── raw-path-trailing-slash.yaml │ │ ├── raw-payload.yaml │ │ ├── raw-post-body.yaml │ │ ├── raw-unsafe-path.yaml │ │ ├── raw-unsafe-request.yaml │ │ ├── raw-unsafe-with-params.yaml │ │ ├── raw-with-params.yaml │ │ ├── redirect-match-url.yaml │ │ ├── request-condition-new.yaml │ │ ├── request-condition.yaml │ │ ├── self-contained-file-input.yaml │ │ ├── self-contained-with-params.yaml │ │ ├── self-contained-with-path.yaml │ │ ├── self-contained.yaml │ │ ├── stop-at-first-match-with-extractors.yaml │ │ ├── stop-at-first-match.yaml │ │ ├── variable-dsl-function.yaml │ │ └── variables.yaml │ ├── javascript │ │ ├── net-https.yaml │ │ ├── net-multi-step.yaml │ │ ├── redis-pass-brute.yaml │ │ └── ssh-server-fingerprint.yaml │ ├── keys │ │ ├── README.md │ │ ├── ci-private-key.pem │ │ └── ci.crt │ ├── multi │ │ ├── dynamic-values.yaml │ │ ├── evaluate-variables.yaml │ │ └── exported-response-vars.yaml │ ├── network │ │ ├── basic.yaml │ │ ├── hex.yaml │ │ ├── multi-step.yaml │ │ ├── net-https-timeout.yaml │ │ ├── net-https.yaml │ │ ├── network-port.yaml │ │ ├── same-address.yaml │ │ ├── self-contained.yaml │ │ └── variables.yaml │ ├── offlinehttp │ │ ├── data │ │ │ └── req-resp-with-http-keywords.txt │ │ ├── offline-allowed-paths.yaml │ │ ├── offline-raw.yaml │ │ └── rfc-req-resp.yaml │ ├── ssl │ │ ├── basic-ztls.yaml │ │ ├── basic.yaml │ │ ├── custom-cipher.yaml │ │ ├── custom-version.yaml │ │ └── ssl-with-vars.yaml │ ├── websocket │ │ ├── basic.yaml │ │ ├── cswsh.yaml │ │ ├── no-cswsh.yaml │ │ └── path.yaml │ └── whois │ │ └── basic.yaml ├── run.sh ├── subdomains.txt ├── test-issue-tracker-config1.yaml ├── test-issue-tracker-config2.yaml └── workflow │ ├── basic.yaml │ ├── condition-matched.yaml │ ├── condition-unmatched.yaml │ ├── dns-value-share-template-1.yaml │ ├── dns-value-share-template-2.yaml │ ├── dns-value-share-template-3.yaml │ ├── dns-value-share-workflow.yaml │ ├── headless-1.yaml │ ├── http-1.yaml │ ├── http-2.yaml │ ├── http-3.yaml │ ├── http-value-share-template-1.yaml │ ├── http-value-share-template-2.yaml │ ├── http-value-share-workflow.yaml │ ├── match-1.yaml │ ├── match-2.yaml │ ├── matcher-name.yaml │ ├── nomatch-1.yaml │ └── shared-cookie.yaml ├── internal ├── colorizer │ └── colorizer.go ├── pdcp │ ├── utils.go │ └── writer.go └── runner │ ├── banner.go │ ├── healthcheck.go │ ├── inputs.go │ ├── options.go │ ├── options_test.go │ ├── proxy.go │ ├── runner.go │ ├── runner_test.go │ └── templates.go ├── lib ├── README.md ├── config.go ├── example_test.go ├── helper.go ├── multi.go ├── sdk.go ├── sdk_private.go └── sdk_test.go ├── main.go ├── nuclei-jsonschema.json ├── nuclei.md ├── pkg ├── catalog │ ├── aws │ │ ├── catalog.go │ │ └── catalog_test.go │ ├── catalogue.go │ ├── config │ │ ├── constants.go │ │ ├── ignorefile.go │ │ ├── nucleiconfig.go │ │ └── template.go │ ├── disk │ │ ├── catalog.go │ │ ├── find.go │ │ ├── known-files.go │ │ └── path.go │ └── loader │ │ ├── filter │ │ ├── path_filter.go │ │ ├── tag_filter.go │ │ └── tag_filter_test.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ └── remote_loader.go ├── core │ ├── engine.go │ ├── engine_test.go │ ├── execute_options.go │ ├── executors.go │ ├── inputs │ │ ├── hybrid │ │ │ ├── hmap.go │ │ │ ├── hmap_test.go │ │ │ ├── options.go │ │ │ └── tests │ │ │ │ ├── AS134029.txt │ │ │ │ └── AS14421.txt │ │ └── inputs.go │ ├── workflow_execute.go │ ├── workflow_execute_test.go │ └── workpool.go ├── external │ └── customtemplates │ │ ├── azure_blob.go │ │ ├── github.go │ │ ├── github_test.go │ │ ├── gitlab.go │ │ ├── s3.go │ │ └── templates_provider.go ├── input │ ├── input.go │ └── input_test.go ├── installer │ ├── doc.go │ ├── template.go │ ├── template_test.go │ ├── util.go │ ├── versioncheck.go │ ├── versioncheck_test.go │ └── zipslip_unix_test.go ├── js │ ├── CONTRIBUTE.md │ ├── DESIGN.md │ ├── THANKS.md │ ├── compiler │ │ ├── compiler.go │ │ ├── compiler_test.go │ │ ├── init.go │ │ ├── non-pool.go │ │ └── pool.go │ ├── devtools │ │ ├── README.md │ │ ├── bindgen │ │ │ ├── INSTALL.md │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ └── bindgen │ │ │ │ │ └── main.go │ │ │ ├── generator.go │ │ │ ├── output.go │ │ │ └── templates │ │ │ │ ├── go_class.tmpl │ │ │ │ ├── js_class.tmpl │ │ │ │ └── markdown_class.tmpl │ │ ├── jsdocgen │ │ │ ├── README.md │ │ │ └── main.go │ │ └── scrapefuncs │ │ │ ├── README.md │ │ │ └── main.go │ ├── generated │ │ ├── README.md │ │ ├── go │ │ │ ├── libbytes │ │ │ │ └── bytes.go │ │ │ ├── libfs │ │ │ │ └── fs.go │ │ │ ├── libgoconsole │ │ │ │ └── goconsole.go │ │ │ ├── libikev2 │ │ │ │ └── ikev2.go │ │ │ ├── libkerberos │ │ │ │ └── kerberos.go │ │ │ ├── libldap │ │ │ │ └── ldap.go │ │ │ ├── libmssql │ │ │ │ └── mssql.go │ │ │ ├── libmysql │ │ │ │ └── mysql.go │ │ │ ├── libnet │ │ │ │ └── net.go │ │ │ ├── liboracle │ │ │ │ └── oracle.go │ │ │ ├── libpop3 │ │ │ │ └── pop3.go │ │ │ ├── libpostgres │ │ │ │ └── postgres.go │ │ │ ├── librdp │ │ │ │ └── rdp.go │ │ │ ├── libredis │ │ │ │ └── redis.go │ │ │ ├── librsync │ │ │ │ └── rsync.go │ │ │ ├── libsmb │ │ │ │ └── smb.go │ │ │ ├── libsmtp │ │ │ │ └── smtp.go │ │ │ ├── libssh │ │ │ │ └── ssh.go │ │ │ ├── libstructs │ │ │ │ └── structs.go │ │ │ ├── libtelnet │ │ │ │ └── telnet.go │ │ │ └── libvnc │ │ │ │ └── vnc.go │ │ └── js │ │ │ ├── global.js │ │ │ ├── libbytes │ │ │ └── bytes.js │ │ │ ├── libfs │ │ │ └── fs.js │ │ │ ├── libgoconsole │ │ │ └── goconsole.js │ │ │ ├── libikev2 │ │ │ └── ikev2.js │ │ │ ├── libkerberos │ │ │ └── kerberos.js │ │ │ ├── libldap │ │ │ └── ldap.js │ │ │ ├── libmssql │ │ │ └── mssql.js │ │ │ ├── libmysql │ │ │ └── mysql.js │ │ │ ├── libnet │ │ │ └── net.js │ │ │ ├── liboracle │ │ │ └── oracle.js │ │ │ ├── libpop3 │ │ │ └── pop3.js │ │ │ ├── libpostgres │ │ │ └── postgres.js │ │ │ ├── librdp │ │ │ └── rdp.js │ │ │ ├── libredis │ │ │ └── redis.js │ │ │ ├── librsync │ │ │ └── rsync.js │ │ │ ├── libsmb │ │ │ └── smb.js │ │ │ ├── libsmtp │ │ │ └── smtp.js │ │ │ ├── libssh │ │ │ └── ssh.js │ │ │ ├── libstructs │ │ │ └── structs.js │ │ │ ├── libtelnet │ │ │ └── telnet.js │ │ │ └── libvnc │ │ │ └── vnc.js │ ├── global │ │ ├── exports.js │ │ ├── helpers.go │ │ ├── js │ │ │ ├── active_directory.js │ │ │ └── dump.js │ │ ├── scripts.go │ │ └── scripts_test.go │ ├── gojs │ │ ├── gojs.go │ │ └── set.go │ ├── libs │ │ ├── LICENSE.md │ │ ├── bytes │ │ │ └── buffer.go │ │ ├── fs │ │ │ └── fs.go │ │ ├── goconsole │ │ │ └── log.go │ │ ├── ikev2 │ │ │ └── ikev2.go │ │ ├── kerberos │ │ │ └── kerberos.go │ │ ├── ldap │ │ │ └── ldap.go │ │ ├── mssql │ │ │ └── mssql.go │ │ ├── mysql │ │ │ ├── mysql.go │ │ │ └── mysql_private.go │ │ ├── net │ │ │ └── net.go │ │ ├── oracle │ │ │ └── oracle.go │ │ ├── pop3 │ │ │ └── pop3.go │ │ ├── postgres │ │ │ └── postgres.go │ │ ├── rdp │ │ │ └── rdp.go │ │ ├── redis │ │ │ └── redis.go │ │ ├── rsync │ │ │ └── rsync.go │ │ ├── smb │ │ │ ├── smb.go │ │ │ ├── smb_private.go │ │ │ └── smbghost.go │ │ ├── smtp │ │ │ ├── msg.go │ │ │ └── smtp.go │ │ ├── ssh │ │ │ └── ssh.go │ │ ├── structs │ │ │ ├── smbexploit.js │ │ │ └── structs.go │ │ ├── telnet │ │ │ └── telnet.go │ │ └── vnc │ │ │ └── vnc.go │ └── utils │ │ └── util.go ├── keys │ ├── key.go │ └── nuclei.crt ├── model │ ├── model.go │ ├── model_test.go │ ├── types │ │ ├── severity │ │ │ ├── severities.go │ │ │ ├── severity.go │ │ │ └── severity_test.go │ │ ├── stringslice │ │ │ ├── stringslice.go │ │ │ └── stringslice_raw.go │ │ └── userAgent │ │ │ └── user_agent.go │ └── worflow_loader.go ├── operators │ ├── common │ │ └── dsl │ │ │ ├── dsl.go │ │ │ └── dsl_test.go │ ├── extractors │ │ ├── compile.go │ │ ├── doc.go │ │ ├── extract.go │ │ ├── extract_test.go │ │ ├── extractor_types.go │ │ ├── extractors.go │ │ └── util.go │ ├── matchers │ │ ├── compile.go │ │ ├── doc.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── matchers.go │ │ ├── matchers_types.go │ │ ├── validate.go │ │ └── validate_test.go │ ├── operators.go │ └── operators_test.go ├── output │ ├── doc.go │ ├── file_output_writer.go │ ├── format_json.go │ ├── format_screen.go │ ├── multi_writer.go │ ├── output.go │ ├── output_test.go │ └── standard_writer.go ├── parsers │ ├── parser.go │ ├── parser_test.go │ └── workflow_loader.go ├── progress │ ├── doc.go │ └── progress.go ├── projectfile │ ├── httputil.go │ └── project.go ├── protocols │ ├── code │ │ ├── code.go │ │ └── code_test.go │ ├── common │ │ ├── automaticscan │ │ │ ├── automaticscan.go │ │ │ ├── automaticscan_test.go │ │ │ ├── doc.go │ │ │ └── util.go │ │ ├── contextargs │ │ │ ├── contextargs.go │ │ │ ├── doc.go │ │ │ ├── metainput.go │ │ │ └── variables.go │ │ ├── expressions │ │ │ ├── expressions.go │ │ │ ├── expressions_test.go │ │ │ ├── variables.go │ │ │ └── variables_test.go │ │ ├── fuzz │ │ │ ├── doc.go │ │ │ ├── execute.go │ │ │ ├── execute_test.go │ │ │ ├── fuzz.go │ │ │ ├── fuzz_test.go │ │ │ ├── parts.go │ │ │ └── parts_test.go │ │ ├── generators │ │ │ ├── attack_types.go │ │ │ ├── env.go │ │ │ ├── generators.go │ │ │ ├── generators_test.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── maps.go │ │ │ ├── maps_test.go │ │ │ ├── options.go │ │ │ ├── slice.go │ │ │ └── validate.go │ │ ├── helpers │ │ │ ├── deserialization │ │ │ │ ├── deserialization.go │ │ │ │ ├── helpers.go │ │ │ │ ├── java.go │ │ │ │ └── testdata │ │ │ │ │ ├── Deserialize.java │ │ │ │ │ ├── README.md │ │ │ │ │ └── ValueObject.java │ │ │ ├── eventcreator │ │ │ │ └── eventcreator.go │ │ │ ├── responsehighlighter │ │ │ │ ├── hexdump.go │ │ │ │ ├── response_highlighter.go │ │ │ │ └── response_highlighter_test.go │ │ │ └── writer │ │ │ │ └── writer.go │ │ ├── hosterrorscache │ │ │ ├── hosterrorscache.go │ │ │ └── hosterrorscache_test.go │ │ ├── interactsh │ │ │ ├── const.go │ │ │ ├── interactsh.go │ │ │ └── options.go │ │ ├── marker │ │ │ └── marker.go │ │ ├── protocolinit │ │ │ └── init.go │ │ ├── protocolstate │ │ │ ├── file.go │ │ │ ├── headless.go │ │ │ ├── js.go │ │ │ └── state.go │ │ ├── randomip │ │ │ ├── randomip.go │ │ │ └── randomip_test.go │ │ ├── replacer │ │ │ ├── replacer.go │ │ │ └── replacer_test.go │ │ ├── tostring │ │ │ └── tostring.go │ │ ├── uncover │ │ │ └── uncover.go │ │ ├── utils │ │ │ ├── excludematchers │ │ │ │ ├── excludematchers.go │ │ │ │ └── excludematchers_test.go │ │ │ └── vardump │ │ │ │ └── dump.go │ │ └── variables │ │ │ ├── doc.go │ │ │ ├── variables.go │ │ │ └── variables_test.go │ ├── dns │ │ ├── cluster.go │ │ ├── dns.go │ │ ├── dns_test.go │ │ ├── dns_types.go │ │ ├── dnsclientpool │ │ │ └── clientpool.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ ├── request.go │ │ └── request_test.go │ ├── file │ │ ├── file.go │ │ ├── find.go │ │ ├── find_test.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ ├── request.go │ │ └── request_test.go │ ├── headless │ │ ├── engine │ │ │ ├── action.go │ │ │ ├── action_types.go │ │ │ ├── engine.go │ │ │ ├── hijack.go │ │ │ ├── http_client.go │ │ │ ├── instance.go │ │ │ ├── page.go │ │ │ ├── page_actions.go │ │ │ ├── page_actions_test.go │ │ │ ├── rules.go │ │ │ └── util.go │ │ ├── headless.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ └── request.go │ ├── http │ │ ├── build_request.go │ │ ├── build_request_test.go │ │ ├── cluster.go │ │ ├── cluster_test.go │ │ ├── http.go │ │ ├── http_method_types.go │ │ ├── http_test.go │ │ ├── httpclientpool │ │ │ └── clientpool.go │ │ ├── httputils │ │ │ ├── chain.go │ │ │ ├── internal.go │ │ │ ├── misc.go │ │ │ ├── normalization.go │ │ │ └── response.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ ├── race │ │ │ └── syncedreadcloser.go │ │ ├── raw │ │ │ ├── doc.go │ │ │ ├── raw.go │ │ │ └── raw_test.go │ │ ├── request.go │ │ ├── request_annotations.go │ │ ├── request_annotations_test.go │ │ ├── request_condition.go │ │ ├── request_generator.go │ │ ├── request_generator_test.go │ │ ├── request_test.go │ │ ├── signature.go │ │ ├── signer │ │ │ ├── aws-sign.go │ │ │ └── signer.go │ │ ├── signerpool │ │ │ └── signerpool.go │ │ ├── utils.go │ │ └── validate.go │ ├── javascript │ │ ├── js.go │ │ ├── js_test.go │ │ └── testcases │ │ │ ├── ms-sql-detect.yaml │ │ │ ├── redis-pass-brute.yaml │ │ │ └── ssh-server-fingerprint.yaml │ ├── network │ │ ├── network.go │ │ ├── network_input_types.go │ │ ├── network_test.go │ │ ├── networkclientpool │ │ │ └── clientpool.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ ├── request.go │ │ └── request_test.go │ ├── offlinehttp │ │ ├── find.go │ │ ├── find_test.go │ │ ├── offlinehttp.go │ │ ├── operators.go │ │ ├── operators_test.go │ │ ├── read_response.go │ │ ├── read_response_test.go │ │ └── request.go │ ├── protocols.go │ ├── ssl │ │ ├── ssl.go │ │ └── ssl_test.go │ ├── utils │ │ ├── fields.go │ │ ├── http │ │ │ ├── requtils.go │ │ │ └── requtils_test.go │ │ ├── reader.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── variables.go │ │ └── variables_test.go │ ├── websocket │ │ └── websocket.go │ └── whois │ │ ├── rdapclientpool │ │ └── clientpool.go │ │ └── whois.go ├── reporting │ ├── client.go │ ├── dedupe │ │ ├── dedupe.go │ │ └── dedupe_test.go │ ├── exporters │ │ ├── es │ │ │ └── elasticsearch.go │ │ ├── jsonexporter │ │ │ └── jsonexporter.go │ │ ├── jsonl │ │ │ └── jsonl.go │ │ ├── markdown │ │ │ ├── markdown.go │ │ │ └── util │ │ │ │ ├── markdown_formatter.go │ │ │ │ ├── markdown_utils.go │ │ │ │ └── markdown_utils_test.go │ │ ├── sarif │ │ │ └── sarif.go │ │ └── splunk │ │ │ └── splunkhec.go │ ├── format │ │ ├── format.go │ │ ├── format_utils.go │ │ └── format_utils_test.go │ ├── options.go │ ├── reporting.go │ └── trackers │ │ ├── github │ │ └── github.go │ │ ├── gitlab │ │ └── gitlab.go │ │ └── jira │ │ ├── jira.go │ │ └── jira_test.go ├── scan │ └── scan_context.go ├── templates │ ├── cache │ │ ├── cache.go │ │ └── cache_test.go │ ├── cluster.go │ ├── cluster_test.go │ ├── compile.go │ ├── compile_test.go │ ├── doc.go │ ├── extensions │ │ └── extensions.go │ ├── log.go │ ├── log_test.go │ ├── preprocessors.go │ ├── signer │ │ ├── .nuclei-config │ │ │ └── nuclei │ │ │ │ └── .templates-config.json │ │ ├── default.go │ │ ├── handler.go │ │ ├── handler_test.go │ │ └── tmpl_signer.go │ ├── template_sign.go │ ├── templates.go │ ├── templates_doc.go │ ├── templates_doc_examples.go │ ├── templates_test.go │ ├── tests │ │ ├── json-template.json │ │ ├── match-1.yaml │ │ ├── multiproto.json │ │ ├── multiproto.yaml │ │ ├── no-author.yaml │ │ ├── no-req.yaml │ │ └── workflow.yaml │ ├── types │ │ └── types.go │ └── workflows.go ├── testutils │ ├── integration.go │ ├── testheadless │ │ ├── headless_local.go │ │ └── headless_runtime.go │ └── testutils.go ├── tmplexec │ ├── README.md │ ├── doc.go │ ├── exec.go │ ├── flow │ │ ├── README.md │ │ ├── builtin │ │ │ └── dedupe.go │ │ ├── doc.go │ │ ├── flow_executor.go │ │ ├── flow_executor_test.go │ │ ├── flow_internal.go │ │ ├── testcases │ │ │ ├── condition-flow-extractors.yaml │ │ │ ├── condition-flow-no-operators.yaml │ │ │ ├── condition-flow.yaml │ │ │ ├── nuclei-flow-dns-id.yaml │ │ │ ├── nuclei-flow-dns-prefix.yaml │ │ │ └── nuclei-flow-dns.yaml │ │ ├── util.go │ │ └── vm.go │ ├── generic │ │ └── exec.go │ ├── interface.go │ └── multiproto │ │ ├── README.md │ │ ├── doc.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ └── testcases │ │ ├── multiprotodynamic.yaml │ │ └── multiprotowithprefix.yaml ├── types │ ├── interfaces.go │ ├── proxy.go │ ├── resume.go │ ├── scanstrategy │ │ └── scan_strategy.go │ └── types.go ├── utils │ ├── expand │ │ └── expand.go │ ├── folder │ │ ├── README.md │ │ ├── folderutil.go │ │ ├── folderutil_linux_test.go │ │ ├── folderutil_test.go │ │ ├── folderutil_win_test.go │ │ └── std_dirs.go │ ├── http_probe.go │ ├── index.go │ ├── insertion_ordered_map.go │ ├── insertion_ordered_map_test.go │ ├── monitor │ │ ├── monitor.go │ │ └── monitor_test.go │ ├── stats │ │ ├── doc.go │ │ └── stats.go │ ├── template_path.go │ ├── utils.go │ ├── utils_test.go │ └── yaml │ │ ├── preprocess.go │ │ └── yaml_decode_wrapper.go └── workflows │ ├── doc.go │ ├── workflows.go │ └── workflows_test.go └── pocs ├── 7 └── 74cms │ └── 74cms-weixin-sqli.yaml ├── a ├── activemq │ ├── activemq-default-login.yaml │ └── activemq-panel.yaml ├── amazon │ └── amazon-ec2-ssrf.yaml ├── avaya │ ├── avaya-aura-rce.yaml │ └── avaya-aura-xss.yaml └── avtech │ ├── avtech-auth-bypass.yaml │ ├── avtech-dvr-ssrf.yaml │ ├── avtech-unauth-file-download.yaml │ └── avtech-verification-bypass.yaml ├── c ├── cisco │ ├── cisco-broadworks-log4j-rce.yaml │ ├── cisco-cloudcenter-suite-log4j-rce.yaml │ ├── cisco-unified-communications-log4j.yaml │ ├── cisco-vmanage-log4j.yaml │ ├── cisco-webex-log4j-rce.yaml │ └── cucm-username-enumeration.yaml ├── code42 │ └── code42-log4j-rce.yaml ├── concrete │ └── concrete-xss.yaml └── confluence │ └── confluence-ssrf-sharelinks.yaml ├── d ├── dahua │ ├── dahua-icc-backdoor-user.yaml │ ├── dahua-wpms-lfi.yaml │ └── dahua-wpms-rce.yaml ├── dedecms │ ├── dedecms-carbuyaction-fileinclude.yaml │ ├── dedecms-config-xss.yaml │ ├── dedecms-membergroup-sqli.yaml │ ├── dedecms-openredirect.yaml │ └── dedecms-rce.yaml ├── discuz │ └── discuz-api-pathinfo.yaml ├── dlink │ └── dlink-netgear-xss.yaml ├── druid │ └── apache-druid-kafka-connect-rce.yaml └── drupal │ └── drupal-avatar-xss.yaml ├── e └── ecstatic │ ├── node-ecstatic-internal-path.yaml │ └── node-ecstatic-listing.yaml ├── f ├── fastjson │ ├── fastjson-1-2-24-rce.yaml │ ├── fastjson-1-2-41-rce.yaml │ ├── fastjson-1-2-42-rce.yaml │ ├── fastjson-1-2-43-rce.yaml │ ├── fastjson-1-2-47-rce.yaml │ ├── fastjson-1-2-62-rce.yaml │ ├── fastjson-1-2-67-rce.yaml │ └── fastjson-1-2-68-rce.yaml ├── finereport │ ├── fine-report-v9-file-upload.yaml │ └── finereport-path-traversal.yaml └── flink │ └── apache-flink-unauth-rce.yaml ├── g ├── generic │ ├── basic-xss-prober.yaml │ ├── cache-poisoning-xss.yaml │ ├── cache-poisoning.yaml │ ├── cors-misconfig.yaml │ ├── crlf-injection.yaml │ ├── error-based-sql-injection.yaml │ ├── generic-blind-xxe.yaml │ ├── generic-env.yaml │ ├── generic-j2ee-lfi.yaml │ ├── generic-linux-lfi.yaml │ ├── generic-windows-lfi.yaml │ ├── host-header-injection.yaml │ ├── oob-header-based-interaction.yaml │ ├── oob-param-based-interaction.yaml │ ├── open-redirect.yaml │ ├── request-based-interaction.yaml │ ├── top-xss-params.yaml │ ├── xmlrpc-pingback-ssrf.yaml │ └── xss-fuzz.yaml ├── gitea │ └── gitea-rce.yaml ├── gitlab │ └── gitlab-rce.yaml ├── gnuboard │ ├── gnuboard-sms-xss.yaml │ ├── gnuboard5-rxss.yaml │ └── gnuboard5-xss.yaml └── grafana │ └── grafana-file-read.yaml ├── h ├── hikvision │ ├── hikvision-fastjson-rce.yaml │ ├── hikvision-ivms-file-upload-bypass.yaml │ ├── hikvision-ivms-file-upload-rce.yaml │ └── hikvision-js-files-upload.yaml ├── httpbin │ ├── httpbin-open-redirect.yaml │ └── httpbin-xss.yaml └── huawei │ ├── huawei-authhttp-lfi.yaml │ ├── huawei-firewall-lfi.yaml │ └── huawei-hg255s-lfi.yaml ├── i ├── ibm │ ├── eclipse-help-system-xss.yaml │ └── ibm-infoprint-lfi.yaml └── iot │ ├── ampguard-wifi-setup.yaml │ ├── apc-ups-login.yaml │ ├── automation-direct.yaml │ ├── brother-printer-detect.yaml │ ├── brother-unauthorized-access.yaml │ ├── carel-plantvisor-panel.yaml │ ├── codian-mcu-login.yaml │ ├── contacam.yaml │ ├── envision-gateway.yaml │ ├── epmp-login.yaml │ ├── epson-wf-series.yaml │ ├── grandstream-device-configuration.yaml │ ├── heatmiser-wifi-thermostat.yaml │ ├── homeworks-illumination.yaml │ ├── honeywell-building-control.yaml │ ├── hp-color-laserjet-detect.yaml │ ├── hp-device-info-detect.yaml │ ├── hp-laserjet-detect.yaml │ ├── huawei-home-gateway.yaml │ ├── hue-personal-wireless-panel.yaml │ ├── internet-service.yaml │ ├── iotawatt-app-exposure.yaml │ ├── kevinlab-device-detect.yaml │ ├── kyocera-printer-panel.yaml │ ├── liveview-axis-camera.yaml │ ├── loytec-device.yaml │ ├── mobotix-guest-camera.yaml │ ├── netsurveillance-web.yaml │ ├── network-camera-detect.yaml │ ├── novus-ip-camera.yaml │ ├── nuuno-network-login.yaml │ ├── octoprint-3dprinter-detect.yaml │ ├── open-mjpg-streamer.yaml │ ├── panasonic-network-management.yaml │ ├── pqube-power-analyzers.yaml │ ├── qvisdvr-deserialization-rce.yaml │ ├── raspberry-shake-config.yaml │ ├── routeros-login.yaml │ ├── selea-ip-camera.yaml │ ├── snapdrop-detect.yaml │ ├── stem-audio-table-private-keys.yaml │ ├── targa-camera-lfi.yaml │ ├── targa-camera-ssrf.yaml │ ├── ulanzi-clock.yaml │ ├── upnp-device.yaml │ ├── webcamxp-5.yaml │ ├── webtools-home.yaml │ ├── xp-webcam.yaml │ └── zebra-printer-detect.yaml ├── is ├── activemq-openwire-transport-detect.yaml ├── apache-activemq-detect.yaml ├── aws-sftp-detect.yaml ├── axigen-mail-server-detect.yaml ├── bgp-detect.yaml ├── cisco-finger-detect.yaml ├── clamav-detect.yaml ├── cql-native-transport.yaml ├── detect-addpac-voip-gateway.yaml ├── detect-jabber-xmpp.yaml ├── dotnet-remoting-service-detect.yaml ├── dropbear-cbc-ciphers.yaml ├── esmtp-detect.yaml ├── exim-detect.yaml ├── expn-mail-detect.yaml ├── finger-detect.yaml ├── gnu-inetutils-ftpd-detect.yaml ├── gopher-detect.yaml ├── ibm-d2b-database-server.yaml ├── imap-detect.yaml ├── iplanet-imap-detect.yaml ├── java-rmi-detect.yaml ├── microsoft-ftp-service.yaml ├── mikrotik-ftp-server-detect.yaml ├── mikrotik-routeros-api.yaml ├── mongodb-detect.yaml ├── moveit-sftp-detect.yaml ├── msmq-detect.yaml ├── mysql-detect.yaml ├── openssh-detect.yaml ├── pgsql-detect.yaml ├── pop3-detect.yaml ├── proftpd-server-detect.yaml ├── rabbitmq-detect.yaml ├── rdp-detect.yaml ├── redis-detect.yaml ├── riak-detect.yaml ├── rpcbind-portmapper-detect.yaml ├── rsyncd-service-detect.yaml ├── rtsp-detect.yaml ├── samba-detect.yaml ├── sap-router.yaml ├── shiro-deserialization-detection.yaml ├── smb-detect.yaml ├── smtp-detect.yaml ├── sshd-dropbear-detect.yaml ├── starttls-mail-detect.yaml ├── teamspeak3-detect.yaml ├── telnet-detect.yaml ├── totemomail-smtp-detect.yaml ├── vmware-authentication-daemon-detect.yaml ├── vnc-service-detect.yaml ├── weblogic-iiop-detect.yaml ├── weblogic-t3-detect.yaml ├── ws_ftp-ssh-detect.yaml └── xlight-ftp-service-detect.yaml ├── j ├── j2ee │ └── liferay-resource-leak.yaml ├── jamf │ ├── jamf-blind-xxe.yaml │ ├── jamf-log4j-jndi-rce.yaml │ └── jamf-pro-log4j-rce.yaml ├── jenkins │ ├── jenkins-asyncpeople.yaml │ ├── jenkins-script.yaml │ ├── jenkins-stack-trace.yaml │ └── unauthenticated-jenkins.yaml ├── jinhe │ ├── jinhe-jc6-sqli.yaml │ └── jinhe-oa-c6-lfi.yaml ├── jira │ ├── jira-servicedesk-signup.yaml │ ├── jira-unauthenticated-adminprojects.yaml │ ├── jira-unauthenticated-dashboards.yaml │ ├── jira-unauthenticated-installed-gadgets.yaml │ ├── jira-unauthenticated-projectcategories.yaml │ ├── jira-unauthenticated-projects.yaml │ ├── jira-unauthenticated-resolutions.yaml │ ├── jira-unauthenticated-screens.yaml │ └── jira-unauthenticated-user-picker.yaml ├── jolokia │ └── jolokia-heap-info-disclosure.yaml ├── joomla │ ├── joomla-com-booking-component.yaml │ ├── joomla-department-sqli.yaml │ ├── joomla-iproperty-real-estate-xss.yaml │ ├── joomla-joombri-careers-xss.yaml │ ├── joomla-jvehicles-lfi.yaml │ ├── joomla-jvtwitter-xss.yaml │ ├── joomla-marvikshop-sqli.yaml │ ├── joomla-marvikshop-xss.yaml │ ├── joomla-solidres-xss.yaml │ └── rusty-joomla.yaml ├── jorani │ └── jorani-benjamin-xss.yaml └── juniper │ └── junos-xss.yaml ├── l ├── landray │ ├── CNVD-2021-28277.yaml │ ├── landray-oa-sysSearchMain-editParam-rce.yaml │ └── landray-oa-treexml-rce.yaml ├── laravel │ └── laravel-ignition-xss.yaml ├── linkerd │ └── linkerd-ssrf.yaml ├── log4j │ └── jamf-pro-log4j-rce.yaml └── lucee │ └── lucee-rce.yaml ├── m ├── magento │ ├── magento-2-exposed-api.yaml │ ├── magento-cacheleak.yaml │ └── magento-unprotected-dev-files.yaml ├── metersphere │ └── metersphere-plugin-rce.yaml ├── microsoft │ └── office-webapps-ssrf.yaml ├── mobileiron │ └── mobileiron-log4j-jndi-rce.yaml └── moodle │ ├── moodle-filter-jmol-lfi.yaml │ ├── moodle-filter-jmol-xss.yaml │ └── moodle-xss.yaml ├── n ├── netmizer │ ├── netmizer-cmd-rce.yaml │ └── netmizer-data-listing.yaml ├── netsweeper │ ├── netsweeper-open-redirect.yaml │ └── netsweeper-rxss.yaml ├── nifi │ └── apache-nifi-rce.yaml ├── nps │ └── nps-auth-bypass.yaml └── nuxt │ ├── nuxt-js-lfi.yaml │ ├── nuxt-js-semi-lfi.yaml │ └── nuxt-js-xss.yaml ├── o ├── ofbiz │ └── apache-ofbiz-log4j-rce.yaml ├── opencpu │ └── opencpu-rce.yaml ├── oracle │ ├── oracle-ebs-bispgraph-file-access.yaml │ ├── oracle-ebs-xss.yaml │ └── oracle-siebel-xss.yaml └── oscommerce │ └── oscommerce-rce.yaml ├── p ├── php │ └── php-xdebug-rce.yaml ├── phpmyadmin │ └── phpmyadmin-unauth.yaml └── prestashop │ ├── prestashop-apmarketplace-sqli.yaml │ └── prestashop-blocktestimonial-file-upload.yaml ├── q ├── qianxin │ ├── qax-tq-rptsvr-fileupload.yaml │ └── secsslvpn-auth-bypass.yaml └── qibocms │ └── qibocms-file-download.yaml ├── r ├── rails │ └── rails6-xss.yaml ├── ransomware │ └── deadbolt-ransomware.yaml ├── realor │ └── realor-gwt-system-sqli.yaml ├── rocketchat │ └── unauth-message-read.yaml ├── royalevent │ ├── royalevent-management-xss.yaml │ └── royalevent-stored-xss.yaml ├── ruijie │ ├── CNVD-2021-09650.yaml │ ├── CNVD-2021-14536.yaml │ ├── ruijie-eg-login-rce.yaml │ ├── ruijie-eg-rce.yaml │ ├── ruijie-excu-shell.yaml │ ├── ruijie-nbr-fileupload.yaml │ ├── ruijie-networks-lfi.yaml │ ├── ruijie-nmc-sync-rce.yaml │ ├── ruijie-password-leak.yaml │ └── ruijie-rg-eg-web-mis-rce.yaml └── ruoyi │ └── CNVD-2021-01931.yaml ├── s ├── samsung │ ├── samsung-wlan-ap-lfi.yaml │ ├── samsung-wlan-ap-rce.yaml │ └── samsung-wlan-ap-xss.yaml ├── sangfor │ ├── sangfor-ba-rce.yaml │ ├── sangfor-cphp-rce.yaml │ ├── sangfor-download-lfi.yaml │ ├── sangfor-edr-auth-bypass.yaml │ ├── sangfor-edr-rce.yaml │ ├── sangfor-login-rce.yaml │ ├── sangfor-ngaf-lfi.yaml │ └── sangfor-sysuser-conf.yaml ├── secworld │ └── secgate-3600-file-upload.yaml ├── seeyon │ ├── seeyon-config-exposure.yaml │ ├── seeyon-createmysql-exposure.yaml │ ├── seeyon-initdata-exposure.yaml │ ├── seeyon-oa-fastjson-rce.yaml │ ├── seeyon-oa-setextno-sqli.yaml │ ├── seeyon-oa-sp2-file-upload.yaml │ ├── wooyun-2015-148227.yaml │ ├── zhiyuan-file-upload.yaml │ ├── zhiyuan-oa-info-leak.yaml │ └── zhiyuan-oa-session-leak.yaml ├── shiro │ └── shiro-detect.yaml ├── shiziyu-cms │ └── shiziyu-cms-apicontroller-sqli.yaml ├── simplecrm │ └── simple-crm-sql-injection.yaml ├── sitecore │ └── sitecore-xml-xss.yaml ├── smartbi │ └── smartbi-deserialization.yaml ├── solr │ ├── apache-solr-file-read.yaml │ ├── apache-solr-log4j-rce.yaml │ └── apache-solr-rce.yaml ├── splash │ └── splash-render-ssrf.yaml ├── spring │ └── jolokia-logback-jndi-rce.yaml ├── springboot │ ├── springboot-actuators-jolokia-xxe.yaml │ ├── springboot-h2-db-rce.yaml │ └── springboot-log4j-rce.yaml └── squirrelmail │ ├── squirrelmail-add-xss.yaml │ ├── squirrelmail-lfi.yaml │ └── squirrelmail-vkeyboard-xss.yaml ├── t ├── thinkcmf │ ├── thinkcmf-arbitrary-code-execution.yaml │ ├── thinkcmf-lfi.yaml │ └── thinkcmf-rce.yaml ├── thinkphp │ ├── thinkphp-2-rce.yaml │ ├── thinkphp-501-rce.yaml │ ├── thinkphp-5022-rce.yaml │ ├── thinkphp-5023-rce.yaml │ └── thinkphp-509-information-disclosure.yaml ├── tongda │ ├── tongda-action-uploadfile.yaml │ ├── tongda-api-file-upload.yaml │ ├── tongda-arbitrary-login.yaml │ ├── tongda-auth-bypass.yaml │ ├── tongda-contact-list-exposure.yaml │ ├── tongda-getdata-rce.yaml │ ├── tongda-getway-rfi.yaml │ ├── tongda-insert-sqli.yaml │ ├── tongda-login-code-authbypass.yaml │ ├── tongda-meeting-unauth.yaml │ ├── tongda-oa-swfupload-sqli.yaml │ ├── tongda-path-traversal.yaml │ ├── tongda-report-func-sqli.yaml │ ├── tongda-session-disclosure.yaml │ └── tongda-video-file-read.yaml └── topsec │ ├── topsec-topacm-rce.yaml │ └── topsec-topapplb-auth-bypass.yaml ├── u └── ueditor │ ├── ueditor-ssrf.yaml │ └── ueditor-xss.yaml ├── v ├── vbulletin │ ├── arcade-php-sqli.yaml │ ├── vbulletin-ajaxreg-sqli.yaml │ └── vbulletin-backdoor.yaml └── vmware │ ├── vmware-authentication-daemon-detect.yaml │ ├── vmware-carbon-black-edr.yaml │ ├── vmware-cloud-availability.yaml │ ├── vmware-cloud-director.yaml │ ├── vmware-cloud-xss.yaml │ ├── vmware-detect.yaml │ ├── vmware-ftp-server.yaml │ ├── vmware-hcx-log4j.yaml │ ├── vmware-hcx-login.yaml │ ├── vmware-horizon-daas.yaml │ ├── vmware-horizon-log4j-jndi-rce.yaml │ ├── vmware-horizon-panel.yaml │ ├── vmware-horizon-version.yaml │ ├── vmware-nsx-log4j.yaml │ ├── vmware-nsx-login.yaml │ ├── vmware-nsx-stream-rce.yaml │ ├── vmware-operation-manager-log4j.yaml │ ├── vmware-site-recovery-manager.yaml │ ├── vmware-siterecovery-log4j-rce.yaml │ ├── vmware-vcenter-converter-standalone.yaml │ ├── vmware-vcenter-lfi-linux.yaml │ ├── vmware-vcenter-lfi.yaml │ ├── vmware-vcenter-log4j-jndi-rce.yaml │ ├── vmware-vcenter-ssrf.yaml │ ├── vmware-vcloud-director.yaml │ ├── vmware-vrealize-detect.yaml │ ├── vmware-workflow.yaml │ └── vrealize-operations-log4j-rce.yaml ├── w ├── wanhu │ ├── wanhu-documentedit-sqli.yaml │ ├── wanhu-download-ftp-file-read.yaml │ ├── wanhu-download-old-file-read.yaml │ ├── wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml │ ├── wanhu-teleconferenceservice-xxe.yaml │ ├── wanhuoa-downloadservlet-lfi.yaml │ ├── wanhuoa-officeserverservlet-file-upload.yaml │ └── wanhuoa-smartupload-file-upload.yaml ├── weaver │ ├── ecology-jqueryfiletree-traversal.yaml │ ├── ecology-verifyquicklogin-auth-bypass.yaml │ ├── ecology │ │ ├── ecology-arbitrary-file-upload.yaml │ │ ├── ecology-filedownload-directory-traversal.yaml │ │ ├── ecology-mysql-config.yaml │ │ ├── ecology-oa-byxml-xxe.yaml │ │ ├── ecology-springframework-directory-traversal.yaml │ │ ├── ecology-syncuserinfo-sqli.yaml │ │ └── ecology-v8-sqli.yaml │ ├── eoffice │ │ └── weaver-eoffice-file-upload.yaml │ ├── oa-v9-uploads-file.yaml │ ├── weaver-checkserver-sqli.yaml │ ├── weaver-e-cology-validate-sqli.yaml │ ├── weaver-e-mobile-rce.yaml │ ├── weaver-ebridge-lfi.yaml │ ├── weaver-ecology-bshservlet-rce.yaml │ ├── weaver-ecology-getsqldata-sqli.yaml │ ├── weaver-ecology-hrmcareer-sqli.yaml │ ├── weaver-group-xml-sqli.yaml │ ├── weaver-jquery-file-upload.yaml │ ├── weaver-ktreeuploadaction-file-upload.yaml │ ├── weaver-lazyuploadify-file-upload.yaml │ ├── weaver-login-sessionkey.yaml │ ├── weaver-mysql-config-info-leak.yaml │ ├── weaver-office-server-file-upload.yaml │ ├── weaver-officeserver-lfi.yaml │ ├── weaver-signaturedownload-lfi.yaml │ ├── weaver-sptmforportalthumbnail-lfi.yaml │ ├── weaver-uploadify-file-upload.yaml │ ├── weaver-uploadoperation-file-upload.yaml │ └── weaver-userselect-unauth.yaml ├── weblogic │ ├── weblogic-detect.yaml │ ├── weblogic-iiop-detect.yaml │ ├── weblogic-login.yaml │ ├── weblogic-t3-detect.yaml │ ├── weblogic-uddiexplorer.yaml │ ├── weblogic-weak-login.yaml │ └── weblogic-workflow.yaml ├── webp-server-go │ └── webp-server-go-lfi.yaml ├── wechat │ └── wechat-info-leak.yaml └── wordpress │ ├── 3d-print-lite-xss.yaml │ ├── 3dprint-arbitrary-file-upload.yaml │ ├── 404-to-301-xss.yaml │ ├── ad-widget-lfi.yaml │ ├── advanced-access-manager-lfi.yaml │ ├── advanced-booking-calendar-sqli.yaml │ ├── age-gate-open-redirect.yaml │ ├── age-gate-xss.yaml │ ├── ait-csv-import-export-rce.yaml │ ├── alfacgiapi-wordpress.yaml │ ├── amministrazione-aperta-lfi.yaml │ ├── analytify-plugin-xss.yaml │ ├── aspose-file-download.yaml │ ├── aspose-ie-file-download.yaml │ ├── aspose-pdf-file-download.yaml │ ├── aspose-words-file-download.yaml │ ├── attitude-theme-open-redirect.yaml │ ├── avchat-video-chat-xss.yaml │ ├── blog-designer-pack-rce.yaml │ ├── booked-export-csv.yaml │ ├── brandfolder-lfi.yaml │ ├── brandfolder-open-redirect.yaml │ ├── calameo-publications-xss.yaml │ ├── checkout-fields-manager-xss.yaml │ ├── cherry-file-download.yaml │ ├── cherry-lfi.yaml │ ├── church-admin-lfi.yaml │ ├── churchope-lfi.yaml │ ├── clearfy-cache-xss.yaml │ ├── contus-video-gallery-sqli.yaml │ ├── curcy-xss.yaml │ ├── diarise-theme-lfi.yaml │ ├── dzs-zoomsounds-listing.yaml │ ├── easy-media-gallery-pro-listing.yaml │ ├── eatery-restaurant-open-redirect.yaml │ ├── elex-woocommerce-xss.yaml │ ├── flow-flow-social-stream-xss.yaml │ ├── hb-audio-lfi.yaml │ ├── health-check-lfi.yaml │ ├── hide-security-enhancer-lfi.yaml │ ├── issuu-panel-lfi.yaml │ ├── knr-widget-xss.yaml │ ├── ldap-wp-login-xss.yaml │ ├── leaguemanager-sql-injection.yaml │ ├── members-list-xss.yaml │ ├── modula-image-gallery-xss.yaml │ ├── mthemeunus-lfi.yaml │ ├── music-store-open-redirect.yaml │ ├── my-chatbot-xss.yaml │ ├── nativechurch-wp-theme-lfd.yaml │ ├── new-user-approve-xss.yaml │ ├── newsletter-open-redirect.yaml │ ├── notificationx-sqli.yaml │ ├── photo-gallery-xss.yaml │ ├── photoblocks-grid-gallery-xss.yaml │ ├── pieregister-open-redirect.yaml │ ├── sassy-social-share.yaml │ ├── seatreg-redirect.yaml │ ├── seo-redirection-xss.yaml │ ├── shortcode-lfi.yaml │ ├── shortpixel-image-optimizer-xss.yaml │ ├── ultimatemember-open-redirect.yaml │ ├── unauthenticated-duplicator-disclosure.yaml │ ├── w3c-total-cache-ssrf.yaml │ ├── watu-xss.yaml │ ├── weekender-newspaper-open-redirect.yaml │ ├── woocommerce-pdf-invoices-xss.yaml │ ├── wordpress-accessible-wpconfig.yaml │ ├── wordpress-affiliatewp-log.yaml │ ├── wordpress-bbpress-plugin-listing.yaml │ ├── wordpress-db-backup-listing.yaml │ ├── wordpress-db-backup.yaml │ ├── wordpress-db-repair.yaml │ ├── wordpress-debug-log.yaml │ ├── wordpress-directory-listing.yaml │ ├── wordpress-elementor-plugin-listing.yaml │ ├── wordpress-emergency-script.yaml │ ├── wordpress-git-config.yaml │ ├── wordpress-gtranslate-plugin-listing.yaml │ ├── wordpress-installer-log.yaml │ ├── wordpress-rce-simplefilelist.yaml │ ├── wordpress-rdf-user-enum.yaml │ ├── wordpress-redirection-plugin-listing.yaml │ ├── wordpress-social-metrics-tracker.yaml │ ├── wordpress-ssrf-oembed.yaml │ ├── wordpress-tmm-db-migrate.yaml │ ├── wordpress-total-upkeep-backup-download.yaml │ ├── wordpress-updraftplus-pem-key.yaml │ ├── wordpress-user-enum.yaml │ ├── wordpress-woocommerce-listing.yaml │ ├── wordpress-wordfence-lfi.yaml │ ├── wordpress-wordfence-waf-bypass-xss.yaml │ ├── wordpress-wordfence-xss.yaml │ ├── wordpress-wp-cron.yaml │ ├── wordpress-xmlrpc-listmethods.yaml │ ├── wordpress-zebra-form-xss.yaml │ ├── wp-123contactform-plugin-listing.yaml │ ├── wp-adaptive-xss.yaml │ ├── wp-adivaha-sqli.yaml │ ├── wp-adivaha-xss.yaml │ ├── wp-all-export-xss.yaml │ ├── wp-altair-listing.yaml │ ├── wp-ambience-xss.yaml │ ├── wp-arforms-listing.yaml │ ├── wp-autosuggest-sql-injection.yaml │ ├── wp-blogroll-fun-xss.yaml │ ├── wp-code-snippets-xss.yaml │ ├── wp-config-setup.yaml │ ├── wp-custom-tables-xss.yaml │ ├── wp-ellipsis-xss.yaml │ ├── wp-email-subscribers-listing.yaml │ ├── wp-enabled-registration.yaml │ ├── wp-finder-xss.yaml │ ├── wp-flagem-xss.yaml │ ├── wp-full-path-disclosure.yaml │ ├── wp-gallery-file-upload.yaml │ ├── wp-googlemp3-lfi.yaml │ ├── wp-grimag-open-redirect.yaml │ ├── wp-gtranslate-open-redirect.yaml │ ├── wp-haberadam-idor.yaml │ ├── wp-idx-broker-platinum-listing.yaml │ ├── wp-insert-php-xss.yaml │ ├── wp-iwp-client-listing.yaml │ ├── wp-javospot-lfi.yaml │ ├── wp-kadence-blocks-rce.yaml │ ├── wp-knews-xss.yaml │ ├── wp-license-file.yaml │ ├── wp-mailchimp-log-exposure.yaml │ ├── wp-mega-theme.yaml │ ├── wp-memphis-documents-library-lfi.yaml │ ├── wp-mstore-plugin-listing.yaml │ ├── wp-multiple-theme-ssrf.yaml │ ├── wp-nextgen-xss.yaml │ ├── wp-oxygen-theme-lfi.yaml │ ├── wp-phpfreechat-xss.yaml │ ├── wp-plugin-1-flashgallery-listing.yaml │ ├── wp-plugin-lifterlms.yaml │ ├── wp-plugin-utlimate-member.yaml │ ├── wp-popup-listing.yaml │ ├── wp-portrait-archiv-xss.yaml │ ├── wp-prostore-open-redirect.yaml │ ├── wp-qards-listing.yaml │ ├── wp-qwiz-online-xss.yaml │ ├── wp-real-estate-xss.yaml │ ├── wp-reality-estate-theme.yaml │ ├── wp-related-post-xss.yaml │ ├── wp-securimage-xss.yaml │ ├── wp-security-open-redirect.yaml │ ├── wp-sfwd-lms-listing.yaml │ ├── wp-simple-fields-lfi.yaml │ ├── wp-slideshow-xss.yaml │ ├── wp-smart-manager-sqli.yaml │ ├── wp-social-warfare-rce.yaml │ ├── wp-socialfit-xss.yaml │ ├── wp-spot-premium-lfi.yaml │ ├── wp-statistics-sqli.yaml │ ├── wp-super-forms.yaml │ ├── wp-superstorefinder-misconfig.yaml │ ├── wp-sym404.yaml │ ├── wp-tinymce-lfi.yaml │ ├── wp-touch-redirect.yaml │ ├── wp-tutor-lfi.yaml │ ├── wp-under-construction-ssrf.yaml │ ├── wp-upload-data.yaml │ ├── wp-upward-theme-redirect.yaml │ ├── wp-user-enum.yaml │ ├── wp-vault-lfi.yaml │ ├── wp-woocommerce-email-verification.yaml │ ├── wp-woocommerce-file-download.yaml │ ├── wp-woocommerce-pdf-invoice-listing.yaml │ ├── wp-xmlrpc-brute-force.yaml │ ├── wp-xmlrpc-pingback-detection.yaml │ ├── wp-xmlrpc.yaml │ ├── wp-yoast-user-enumeration.yaml │ ├── wpdm-cache-session.yaml │ ├── wpify-woo-czech-xss.yaml │ ├── wpml-xss.yaml │ ├── wpmudev-pub-keys.yaml │ ├── wptouch-open-redirect.yaml │ ├── wptouch-xss.yaml │ └── zero-spam-sql-injection.yaml ├── y └── yonyou │ ├── CNVD-2021-30167.yaml │ ├── chanjet-gnremote-sqli.yaml │ ├── chanjet-tplus-checkmutex-sqli.yaml │ ├── chanjet-tplus-file-read.yaml │ ├── chanjet-tplus-fileupload.yaml │ ├── chanjet-tplus-ufida-sqli.yaml │ ├── erp-nc-directory-traversal.yaml │ ├── grp-u8-uploadfiledata-fileupload.yaml │ ├── wooyun-path-traversal.yaml │ ├── yonyou-fe-directory-traversal.yaml │ ├── yonyou-filereceiveservlet-fileupload.yaml │ ├── yonyou-grp-u8-xxe.yaml │ ├── yonyou-ksoa-dept-sqli.yaml │ ├── yonyou-nc-accept-fileupload.yaml │ ├── yonyou-nc-baseapp-deserialization.yaml │ ├── yonyou-nc-dispatcher-fileupload.yaml │ ├── yonyou-nc-grouptemplet-fileupload.yaml │ ├── yonyou-nc-info-leak.yaml │ ├── yonyou-nc-ncmessageservlet-rce.yaml │ ├── yonyou-u8-crm-fileupload.yaml │ ├── yonyou-u8-crm-lfi.yaml │ ├── yonyou-u8-oa-sqli.yaml │ └── yonyou-u8-sqli.yaml └── z ├── zend └── zend-v1-xss.yaml ├── zentao └── CNVD-2022-42853.yaml ├── zyxel ├── unauth-lfd-zhttpd.yaml └── unauth-ztp-ping.yaml └── zzzcms ├── zzzcms-info-disclosure.yaml ├── zzzcms-ssrf.yaml └── zzzcms-xss.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/README.md -------------------------------------------------------------------------------- /cmd/docgen/docgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/docgen/docgen.go -------------------------------------------------------------------------------- /cmd/functional-test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/main.go -------------------------------------------------------------------------------- /cmd/functional-test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/run.sh -------------------------------------------------------------------------------- /cmd/functional-test/targets-1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/targets-1000.txt -------------------------------------------------------------------------------- /cmd/functional-test/targets-150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/targets-150.txt -------------------------------------------------------------------------------- /cmd/functional-test/targets-250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/targets-250.txt -------------------------------------------------------------------------------- /cmd/functional-test/targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/targets.txt -------------------------------------------------------------------------------- /cmd/functional-test/testcases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/functional-test/testcases.txt -------------------------------------------------------------------------------- /cmd/generate-checksum/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/generate-checksum/main.go -------------------------------------------------------------------------------- /cmd/integration-test/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/code.go -------------------------------------------------------------------------------- /cmd/integration-test/custom-dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/custom-dir.go -------------------------------------------------------------------------------- /cmd/integration-test/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/dns.go -------------------------------------------------------------------------------- /cmd/integration-test/dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/dsl.go -------------------------------------------------------------------------------- /cmd/integration-test/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/file.go -------------------------------------------------------------------------------- /cmd/integration-test/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/flow.go -------------------------------------------------------------------------------- /cmd/integration-test/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/fuzz.go -------------------------------------------------------------------------------- /cmd/integration-test/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/generic.go -------------------------------------------------------------------------------- /cmd/integration-test/headless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/headless.go -------------------------------------------------------------------------------- /cmd/integration-test/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/http.go -------------------------------------------------------------------------------- /cmd/integration-test/integration-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/integration-test.go -------------------------------------------------------------------------------- /cmd/integration-test/interactsh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/interactsh.go -------------------------------------------------------------------------------- /cmd/integration-test/javascript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/javascript.go -------------------------------------------------------------------------------- /cmd/integration-test/library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/library.go -------------------------------------------------------------------------------- /cmd/integration-test/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/loader.go -------------------------------------------------------------------------------- /cmd/integration-test/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/multi.go -------------------------------------------------------------------------------- /cmd/integration-test/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/network.go -------------------------------------------------------------------------------- /cmd/integration-test/offline-http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/offline-http.go -------------------------------------------------------------------------------- /cmd/integration-test/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/ssl.go -------------------------------------------------------------------------------- /cmd/integration-test/template-dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/template-dir.go -------------------------------------------------------------------------------- /cmd/integration-test/template-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/template-path.go -------------------------------------------------------------------------------- /cmd/integration-test/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/websocket.go -------------------------------------------------------------------------------- /cmd/integration-test/whois.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/whois.go -------------------------------------------------------------------------------- /cmd/integration-test/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/integration-test/workflow.go -------------------------------------------------------------------------------- /cmd/nuclei/issue-tracker-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/nuclei/issue-tracker-config.yaml -------------------------------------------------------------------------------- /cmd/nuclei/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/nuclei/main.go -------------------------------------------------------------------------------- /cmd/tmc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/tmc/main.go -------------------------------------------------------------------------------- /cmd/tmc/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/tmc/types.go -------------------------------------------------------------------------------- /cmd/tools/fuzzplayground/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/cmd/tools/fuzzplayground/main.go -------------------------------------------------------------------------------- /examples/advanced/advanced.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/examples/advanced/advanced.go -------------------------------------------------------------------------------- /examples/simple/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/examples/simple/simple.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/go.sum -------------------------------------------------------------------------------- /helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/Chart.yaml -------------------------------------------------------------------------------- /helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/templates/interactsh-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/interactsh-deployment.yaml -------------------------------------------------------------------------------- /helm/templates/interactsh-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/interactsh-ingress.yaml -------------------------------------------------------------------------------- /helm/templates/interactsh-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/interactsh-service.yaml -------------------------------------------------------------------------------- /helm/templates/nuclei-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/nuclei-configmap.yaml -------------------------------------------------------------------------------- /helm/templates/nuclei-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/nuclei-cron.yaml -------------------------------------------------------------------------------- /helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/helm/values.yaml -------------------------------------------------------------------------------- /integration_tests/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/debug.sh -------------------------------------------------------------------------------- /integration_tests/flow/dns-ns-probe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/flow/dns-ns-probe.yaml -------------------------------------------------------------------------------- /integration_tests/fuzz/fuzz-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/fuzz/fuzz-headless.yaml -------------------------------------------------------------------------------- /integration_tests/fuzz/fuzz-mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/fuzz/fuzz-mode.yaml -------------------------------------------------------------------------------- /integration_tests/fuzz/fuzz-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/fuzz/fuzz-query.yaml -------------------------------------------------------------------------------- /integration_tests/fuzz/fuzz-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/fuzz/fuzz-type.yaml -------------------------------------------------------------------------------- /integration_tests/library/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/library/test.json -------------------------------------------------------------------------------- /integration_tests/library/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/library/test.yaml -------------------------------------------------------------------------------- /integration_tests/loader/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/loader/basic.yaml -------------------------------------------------------------------------------- /integration_tests/loader/get-headers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/loader/get-headers.yaml -------------------------------------------------------------------------------- /integration_tests/loader/get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/loader/get.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/code/pyfile.py: -------------------------------------------------------------------------------- 1 | import sys 2 | print("hello from " + sys.stdin.read()) -------------------------------------------------------------------------------- /integration_tests/protocols/dns/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/dns/basic.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/dns/caa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/dns/caa.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/dns/ptr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/dns/ptr.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/dns/tlsa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/dns/tlsa.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/file/data/test1.txt: -------------------------------------------------------------------------------- 1 | AAA 2 | BBB -------------------------------------------------------------------------------- /integration_tests/protocols/file/data/test2.txt: -------------------------------------------------------------------------------- 1 | CCC 2 | DDD -------------------------------------------------------------------------------- /integration_tests/protocols/file/data/test3.txt: -------------------------------------------------------------------------------- 1 | 11 EE 11 2 | 11 FF 11 -------------------------------------------------------------------------------- /integration_tests/protocols/http/get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/http/get.yaml -------------------------------------------------------------------------------- /integration_tests/protocols/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/keys/README.md -------------------------------------------------------------------------------- /integration_tests/protocols/keys/ci.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/keys/ci.crt -------------------------------------------------------------------------------- /integration_tests/protocols/ssl/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/protocols/ssl/basic.yaml -------------------------------------------------------------------------------- /integration_tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/run.sh -------------------------------------------------------------------------------- /integration_tests/subdomains.txt: -------------------------------------------------------------------------------- 1 | one 2 | docs 3 | drive 4 | play 5 | 6 | -------------------------------------------------------------------------------- /integration_tests/workflow/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/basic.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/headless-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/headless-1.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/http-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/http-1.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/http-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/http-2.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/http-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/http-3.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/match-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/match-1.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/match-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/match-2.yaml -------------------------------------------------------------------------------- /integration_tests/workflow/nomatch-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/integration_tests/workflow/nomatch-1.yaml -------------------------------------------------------------------------------- /internal/colorizer/colorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/colorizer/colorizer.go -------------------------------------------------------------------------------- /internal/pdcp/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/pdcp/utils.go -------------------------------------------------------------------------------- /internal/pdcp/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/pdcp/writer.go -------------------------------------------------------------------------------- /internal/runner/banner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/banner.go -------------------------------------------------------------------------------- /internal/runner/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/healthcheck.go -------------------------------------------------------------------------------- /internal/runner/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/inputs.go -------------------------------------------------------------------------------- /internal/runner/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/options.go -------------------------------------------------------------------------------- /internal/runner/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/options_test.go -------------------------------------------------------------------------------- /internal/runner/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/proxy.go -------------------------------------------------------------------------------- /internal/runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/runner.go -------------------------------------------------------------------------------- /internal/runner/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/runner_test.go -------------------------------------------------------------------------------- /internal/runner/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/internal/runner/templates.go -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/config.go -------------------------------------------------------------------------------- /lib/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/example_test.go -------------------------------------------------------------------------------- /lib/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/helper.go -------------------------------------------------------------------------------- /lib/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/multi.go -------------------------------------------------------------------------------- /lib/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/sdk.go -------------------------------------------------------------------------------- /lib/sdk_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/sdk_private.go -------------------------------------------------------------------------------- /lib/sdk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/lib/sdk_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/main.go -------------------------------------------------------------------------------- /nuclei-jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/nuclei-jsonschema.json -------------------------------------------------------------------------------- /nuclei.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/nuclei.md -------------------------------------------------------------------------------- /pkg/catalog/aws/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/aws/catalog.go -------------------------------------------------------------------------------- /pkg/catalog/aws/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/aws/catalog_test.go -------------------------------------------------------------------------------- /pkg/catalog/catalogue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/catalogue.go -------------------------------------------------------------------------------- /pkg/catalog/config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/config/constants.go -------------------------------------------------------------------------------- /pkg/catalog/config/ignorefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/config/ignorefile.go -------------------------------------------------------------------------------- /pkg/catalog/config/nucleiconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/config/nucleiconfig.go -------------------------------------------------------------------------------- /pkg/catalog/config/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/config/template.go -------------------------------------------------------------------------------- /pkg/catalog/disk/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/disk/catalog.go -------------------------------------------------------------------------------- /pkg/catalog/disk/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/disk/find.go -------------------------------------------------------------------------------- /pkg/catalog/disk/known-files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/disk/known-files.go -------------------------------------------------------------------------------- /pkg/catalog/disk/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/disk/path.go -------------------------------------------------------------------------------- /pkg/catalog/loader/filter/path_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/loader/filter/path_filter.go -------------------------------------------------------------------------------- /pkg/catalog/loader/filter/tag_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/loader/filter/tag_filter.go -------------------------------------------------------------------------------- /pkg/catalog/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/loader/loader.go -------------------------------------------------------------------------------- /pkg/catalog/loader/loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/loader/loader_test.go -------------------------------------------------------------------------------- /pkg/catalog/loader/remote_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/catalog/loader/remote_loader.go -------------------------------------------------------------------------------- /pkg/core/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/engine.go -------------------------------------------------------------------------------- /pkg/core/engine_test.go: -------------------------------------------------------------------------------- 1 | package core 2 | -------------------------------------------------------------------------------- /pkg/core/execute_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/execute_options.go -------------------------------------------------------------------------------- /pkg/core/executors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/executors.go -------------------------------------------------------------------------------- /pkg/core/inputs/hybrid/hmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/hybrid/hmap.go -------------------------------------------------------------------------------- /pkg/core/inputs/hybrid/hmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/hybrid/hmap_test.go -------------------------------------------------------------------------------- /pkg/core/inputs/hybrid/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/hybrid/options.go -------------------------------------------------------------------------------- /pkg/core/inputs/hybrid/tests/AS134029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/hybrid/tests/AS134029.txt -------------------------------------------------------------------------------- /pkg/core/inputs/hybrid/tests/AS14421.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/hybrid/tests/AS14421.txt -------------------------------------------------------------------------------- /pkg/core/inputs/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/inputs/inputs.go -------------------------------------------------------------------------------- /pkg/core/workflow_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/workflow_execute.go -------------------------------------------------------------------------------- /pkg/core/workflow_execute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/workflow_execute_test.go -------------------------------------------------------------------------------- /pkg/core/workpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/core/workpool.go -------------------------------------------------------------------------------- /pkg/external/customtemplates/azure_blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/external/customtemplates/azure_blob.go -------------------------------------------------------------------------------- /pkg/external/customtemplates/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/external/customtemplates/github.go -------------------------------------------------------------------------------- /pkg/external/customtemplates/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/external/customtemplates/gitlab.go -------------------------------------------------------------------------------- /pkg/external/customtemplates/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/external/customtemplates/s3.go -------------------------------------------------------------------------------- /pkg/input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/input/input.go -------------------------------------------------------------------------------- /pkg/input/input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/input/input_test.go -------------------------------------------------------------------------------- /pkg/installer/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/doc.go -------------------------------------------------------------------------------- /pkg/installer/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/template.go -------------------------------------------------------------------------------- /pkg/installer/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/template_test.go -------------------------------------------------------------------------------- /pkg/installer/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/util.go -------------------------------------------------------------------------------- /pkg/installer/versioncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/versioncheck.go -------------------------------------------------------------------------------- /pkg/installer/versioncheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/versioncheck_test.go -------------------------------------------------------------------------------- /pkg/installer/zipslip_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/installer/zipslip_unix_test.go -------------------------------------------------------------------------------- /pkg/js/CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/CONTRIBUTE.md -------------------------------------------------------------------------------- /pkg/js/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/DESIGN.md -------------------------------------------------------------------------------- /pkg/js/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/THANKS.md -------------------------------------------------------------------------------- /pkg/js/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/compiler/compiler.go -------------------------------------------------------------------------------- /pkg/js/compiler/compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/compiler/compiler_test.go -------------------------------------------------------------------------------- /pkg/js/compiler/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/compiler/init.go -------------------------------------------------------------------------------- /pkg/js/compiler/non-pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/compiler/non-pool.go -------------------------------------------------------------------------------- /pkg/js/compiler/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/compiler/pool.go -------------------------------------------------------------------------------- /pkg/js/devtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/README.md -------------------------------------------------------------------------------- /pkg/js/devtools/bindgen/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/bindgen/INSTALL.md -------------------------------------------------------------------------------- /pkg/js/devtools/bindgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/bindgen/README.md -------------------------------------------------------------------------------- /pkg/js/devtools/bindgen/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/bindgen/generator.go -------------------------------------------------------------------------------- /pkg/js/devtools/bindgen/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/bindgen/output.go -------------------------------------------------------------------------------- /pkg/js/devtools/jsdocgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/jsdocgen/README.md -------------------------------------------------------------------------------- /pkg/js/devtools/jsdocgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/jsdocgen/main.go -------------------------------------------------------------------------------- /pkg/js/devtools/scrapefuncs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/scrapefuncs/README.md -------------------------------------------------------------------------------- /pkg/js/devtools/scrapefuncs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/devtools/scrapefuncs/main.go -------------------------------------------------------------------------------- /pkg/js/generated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/README.md -------------------------------------------------------------------------------- /pkg/js/generated/go/libbytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libbytes/bytes.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libfs/fs.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libikev2/ikev2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libikev2/ikev2.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libldap/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libldap/ldap.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libmssql/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libmssql/mssql.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libmysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libmysql/mysql.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libnet/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libnet/net.go -------------------------------------------------------------------------------- /pkg/js/generated/go/liboracle/oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/liboracle/oracle.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libpop3/pop3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libpop3/pop3.go -------------------------------------------------------------------------------- /pkg/js/generated/go/librdp/rdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/librdp/rdp.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libredis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libredis/redis.go -------------------------------------------------------------------------------- /pkg/js/generated/go/librsync/rsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/librsync/rsync.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libsmb/smb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libsmb/smb.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libsmtp/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libsmtp/smtp.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libssh/ssh.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libstructs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libstructs/structs.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libtelnet/telnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libtelnet/telnet.go -------------------------------------------------------------------------------- /pkg/js/generated/go/libvnc/vnc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/go/libvnc/vnc.go -------------------------------------------------------------------------------- /pkg/js/generated/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/global.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libbytes/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libbytes/bytes.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libfs/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libfs/fs.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libikev2/ikev2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libikev2/ikev2.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libldap/ldap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libldap/ldap.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libmssql/mssql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libmssql/mssql.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libmysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libmysql/mysql.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libnet/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libnet/net.js -------------------------------------------------------------------------------- /pkg/js/generated/js/liboracle/oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/liboracle/oracle.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libpop3/pop3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libpop3/pop3.js -------------------------------------------------------------------------------- /pkg/js/generated/js/librdp/rdp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/librdp/rdp.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libredis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libredis/redis.js -------------------------------------------------------------------------------- /pkg/js/generated/js/librsync/rsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/librsync/rsync.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libsmb/smb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libsmb/smb.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libsmtp/smtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libsmtp/smtp.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libssh/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libssh/ssh.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libstructs/structs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libstructs/structs.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libtelnet/telnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libtelnet/telnet.js -------------------------------------------------------------------------------- /pkg/js/generated/js/libvnc/vnc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/generated/js/libvnc/vnc.js -------------------------------------------------------------------------------- /pkg/js/global/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/exports.js -------------------------------------------------------------------------------- /pkg/js/global/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/helpers.go -------------------------------------------------------------------------------- /pkg/js/global/js/active_directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/js/active_directory.js -------------------------------------------------------------------------------- /pkg/js/global/js/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/js/dump.js -------------------------------------------------------------------------------- /pkg/js/global/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/scripts.go -------------------------------------------------------------------------------- /pkg/js/global/scripts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/global/scripts_test.go -------------------------------------------------------------------------------- /pkg/js/gojs/gojs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/gojs/gojs.go -------------------------------------------------------------------------------- /pkg/js/gojs/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/gojs/set.go -------------------------------------------------------------------------------- /pkg/js/libs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/LICENSE.md -------------------------------------------------------------------------------- /pkg/js/libs/bytes/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/bytes/buffer.go -------------------------------------------------------------------------------- /pkg/js/libs/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/fs/fs.go -------------------------------------------------------------------------------- /pkg/js/libs/goconsole/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/goconsole/log.go -------------------------------------------------------------------------------- /pkg/js/libs/ikev2/ikev2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/ikev2/ikev2.go -------------------------------------------------------------------------------- /pkg/js/libs/kerberos/kerberos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/kerberos/kerberos.go -------------------------------------------------------------------------------- /pkg/js/libs/ldap/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/ldap/ldap.go -------------------------------------------------------------------------------- /pkg/js/libs/mssql/mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/mssql/mssql.go -------------------------------------------------------------------------------- /pkg/js/libs/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/mysql/mysql.go -------------------------------------------------------------------------------- /pkg/js/libs/mysql/mysql_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/mysql/mysql_private.go -------------------------------------------------------------------------------- /pkg/js/libs/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/net/net.go -------------------------------------------------------------------------------- /pkg/js/libs/oracle/oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/oracle/oracle.go -------------------------------------------------------------------------------- /pkg/js/libs/pop3/pop3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/pop3/pop3.go -------------------------------------------------------------------------------- /pkg/js/libs/postgres/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/postgres/postgres.go -------------------------------------------------------------------------------- /pkg/js/libs/rdp/rdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/rdp/rdp.go -------------------------------------------------------------------------------- /pkg/js/libs/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/redis/redis.go -------------------------------------------------------------------------------- /pkg/js/libs/rsync/rsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/rsync/rsync.go -------------------------------------------------------------------------------- /pkg/js/libs/smb/smb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/smb/smb.go -------------------------------------------------------------------------------- /pkg/js/libs/smb/smb_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/smb/smb_private.go -------------------------------------------------------------------------------- /pkg/js/libs/smb/smbghost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/smb/smbghost.go -------------------------------------------------------------------------------- /pkg/js/libs/smtp/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/smtp/msg.go -------------------------------------------------------------------------------- /pkg/js/libs/smtp/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/smtp/smtp.go -------------------------------------------------------------------------------- /pkg/js/libs/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/ssh/ssh.go -------------------------------------------------------------------------------- /pkg/js/libs/structs/smbexploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/structs/smbexploit.js -------------------------------------------------------------------------------- /pkg/js/libs/structs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/structs/structs.go -------------------------------------------------------------------------------- /pkg/js/libs/telnet/telnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/telnet/telnet.go -------------------------------------------------------------------------------- /pkg/js/libs/vnc/vnc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/libs/vnc/vnc.go -------------------------------------------------------------------------------- /pkg/js/utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/js/utils/util.go -------------------------------------------------------------------------------- /pkg/keys/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/keys/key.go -------------------------------------------------------------------------------- /pkg/keys/nuclei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/keys/nuclei.crt -------------------------------------------------------------------------------- /pkg/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/model.go -------------------------------------------------------------------------------- /pkg/model/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/model_test.go -------------------------------------------------------------------------------- /pkg/model/types/severity/severities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/types/severity/severities.go -------------------------------------------------------------------------------- /pkg/model/types/severity/severity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/types/severity/severity.go -------------------------------------------------------------------------------- /pkg/model/types/severity/severity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/types/severity/severity_test.go -------------------------------------------------------------------------------- /pkg/model/types/stringslice/stringslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/types/stringslice/stringslice.go -------------------------------------------------------------------------------- /pkg/model/types/userAgent/user_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/types/userAgent/user_agent.go -------------------------------------------------------------------------------- /pkg/model/worflow_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/model/worflow_loader.go -------------------------------------------------------------------------------- /pkg/operators/common/dsl/dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/common/dsl/dsl.go -------------------------------------------------------------------------------- /pkg/operators/common/dsl/dsl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/common/dsl/dsl_test.go -------------------------------------------------------------------------------- /pkg/operators/extractors/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/compile.go -------------------------------------------------------------------------------- /pkg/operators/extractors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/doc.go -------------------------------------------------------------------------------- /pkg/operators/extractors/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/extract.go -------------------------------------------------------------------------------- /pkg/operators/extractors/extract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/extract_test.go -------------------------------------------------------------------------------- /pkg/operators/extractors/extractors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/extractors.go -------------------------------------------------------------------------------- /pkg/operators/extractors/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/extractors/util.go -------------------------------------------------------------------------------- /pkg/operators/matchers/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/compile.go -------------------------------------------------------------------------------- /pkg/operators/matchers/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/doc.go -------------------------------------------------------------------------------- /pkg/operators/matchers/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/match.go -------------------------------------------------------------------------------- /pkg/operators/matchers/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/match_test.go -------------------------------------------------------------------------------- /pkg/operators/matchers/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/matchers.go -------------------------------------------------------------------------------- /pkg/operators/matchers/matchers_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/matchers_types.go -------------------------------------------------------------------------------- /pkg/operators/matchers/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/validate.go -------------------------------------------------------------------------------- /pkg/operators/matchers/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/matchers/validate_test.go -------------------------------------------------------------------------------- /pkg/operators/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/operators.go -------------------------------------------------------------------------------- /pkg/operators/operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/operators/operators_test.go -------------------------------------------------------------------------------- /pkg/output/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/doc.go -------------------------------------------------------------------------------- /pkg/output/file_output_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/file_output_writer.go -------------------------------------------------------------------------------- /pkg/output/format_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/format_json.go -------------------------------------------------------------------------------- /pkg/output/format_screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/format_screen.go -------------------------------------------------------------------------------- /pkg/output/multi_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/multi_writer.go -------------------------------------------------------------------------------- /pkg/output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/output.go -------------------------------------------------------------------------------- /pkg/output/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/output_test.go -------------------------------------------------------------------------------- /pkg/output/standard_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/output/standard_writer.go -------------------------------------------------------------------------------- /pkg/parsers/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/parsers/parser.go -------------------------------------------------------------------------------- /pkg/parsers/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/parsers/parser_test.go -------------------------------------------------------------------------------- /pkg/parsers/workflow_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/parsers/workflow_loader.go -------------------------------------------------------------------------------- /pkg/progress/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/progress/doc.go -------------------------------------------------------------------------------- /pkg/progress/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/progress/progress.go -------------------------------------------------------------------------------- /pkg/projectfile/httputil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/projectfile/httputil.go -------------------------------------------------------------------------------- /pkg/projectfile/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/projectfile/project.go -------------------------------------------------------------------------------- /pkg/protocols/code/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/code/code.go -------------------------------------------------------------------------------- /pkg/protocols/code/code_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/code/code_test.go -------------------------------------------------------------------------------- /pkg/protocols/common/automaticscan/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/automaticscan/doc.go -------------------------------------------------------------------------------- /pkg/protocols/common/automaticscan/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/automaticscan/util.go -------------------------------------------------------------------------------- /pkg/protocols/common/contextargs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/contextargs/doc.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/doc.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/execute.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/execute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/execute_test.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/fuzz.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/fuzz_test.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/parts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/parts.go -------------------------------------------------------------------------------- /pkg/protocols/common/fuzz/parts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/fuzz/parts_test.go -------------------------------------------------------------------------------- /pkg/protocols/common/generators/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/generators/env.go -------------------------------------------------------------------------------- /pkg/protocols/common/generators/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/generators/load.go -------------------------------------------------------------------------------- /pkg/protocols/common/generators/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/generators/maps.go -------------------------------------------------------------------------------- /pkg/protocols/common/generators/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/generators/options.go -------------------------------------------------------------------------------- /pkg/protocols/common/generators/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/generators/slice.go -------------------------------------------------------------------------------- /pkg/protocols/common/interactsh/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/interactsh/const.go -------------------------------------------------------------------------------- /pkg/protocols/common/interactsh/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/interactsh/options.go -------------------------------------------------------------------------------- /pkg/protocols/common/marker/marker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/marker/marker.go -------------------------------------------------------------------------------- /pkg/protocols/common/protocolinit/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/protocolinit/init.go -------------------------------------------------------------------------------- /pkg/protocols/common/protocolstate/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/protocolstate/file.go -------------------------------------------------------------------------------- /pkg/protocols/common/protocolstate/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/protocolstate/js.go -------------------------------------------------------------------------------- /pkg/protocols/common/randomip/randomip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/randomip/randomip.go -------------------------------------------------------------------------------- /pkg/protocols/common/replacer/replacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/replacer/replacer.go -------------------------------------------------------------------------------- /pkg/protocols/common/tostring/tostring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/tostring/tostring.go -------------------------------------------------------------------------------- /pkg/protocols/common/uncover/uncover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/uncover/uncover.go -------------------------------------------------------------------------------- /pkg/protocols/common/utils/vardump/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/utils/vardump/dump.go -------------------------------------------------------------------------------- /pkg/protocols/common/variables/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/common/variables/doc.go -------------------------------------------------------------------------------- /pkg/protocols/dns/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/cluster.go -------------------------------------------------------------------------------- /pkg/protocols/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/dns.go -------------------------------------------------------------------------------- /pkg/protocols/dns/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/dns_test.go -------------------------------------------------------------------------------- /pkg/protocols/dns/dns_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/dns_types.go -------------------------------------------------------------------------------- /pkg/protocols/dns/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/operators.go -------------------------------------------------------------------------------- /pkg/protocols/dns/operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/operators_test.go -------------------------------------------------------------------------------- /pkg/protocols/dns/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/request.go -------------------------------------------------------------------------------- /pkg/protocols/dns/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/dns/request_test.go -------------------------------------------------------------------------------- /pkg/protocols/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/file.go -------------------------------------------------------------------------------- /pkg/protocols/file/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/find.go -------------------------------------------------------------------------------- /pkg/protocols/file/find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/find_test.go -------------------------------------------------------------------------------- /pkg/protocols/file/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/operators.go -------------------------------------------------------------------------------- /pkg/protocols/file/operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/operators_test.go -------------------------------------------------------------------------------- /pkg/protocols/file/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/request.go -------------------------------------------------------------------------------- /pkg/protocols/file/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/file/request_test.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/action.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/engine.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/hijack.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/instance.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/page.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/rules.go -------------------------------------------------------------------------------- /pkg/protocols/headless/engine/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/engine/util.go -------------------------------------------------------------------------------- /pkg/protocols/headless/headless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/headless.go -------------------------------------------------------------------------------- /pkg/protocols/headless/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/operators.go -------------------------------------------------------------------------------- /pkg/protocols/headless/operators_test.go: -------------------------------------------------------------------------------- 1 | package headless 2 | -------------------------------------------------------------------------------- /pkg/protocols/headless/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/headless/request.go -------------------------------------------------------------------------------- /pkg/protocols/http/build_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/build_request.go -------------------------------------------------------------------------------- /pkg/protocols/http/build_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/build_request_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/cluster.go -------------------------------------------------------------------------------- /pkg/protocols/http/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/cluster_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/http.go -------------------------------------------------------------------------------- /pkg/protocols/http/http_method_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/http_method_types.go -------------------------------------------------------------------------------- /pkg/protocols/http/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/http_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/httputils/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/httputils/chain.go -------------------------------------------------------------------------------- /pkg/protocols/http/httputils/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/httputils/internal.go -------------------------------------------------------------------------------- /pkg/protocols/http/httputils/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/httputils/misc.go -------------------------------------------------------------------------------- /pkg/protocols/http/httputils/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/httputils/response.go -------------------------------------------------------------------------------- /pkg/protocols/http/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/operators.go -------------------------------------------------------------------------------- /pkg/protocols/http/operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/operators_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/raw/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/raw/doc.go -------------------------------------------------------------------------------- /pkg/protocols/http/raw/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/raw/raw.go -------------------------------------------------------------------------------- /pkg/protocols/http/raw/raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/raw/raw_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/request.go -------------------------------------------------------------------------------- /pkg/protocols/http/request_annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/request_annotations.go -------------------------------------------------------------------------------- /pkg/protocols/http/request_condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/request_condition.go -------------------------------------------------------------------------------- /pkg/protocols/http/request_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/request_generator.go -------------------------------------------------------------------------------- /pkg/protocols/http/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/request_test.go -------------------------------------------------------------------------------- /pkg/protocols/http/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/signature.go -------------------------------------------------------------------------------- /pkg/protocols/http/signer/aws-sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/signer/aws-sign.go -------------------------------------------------------------------------------- /pkg/protocols/http/signer/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/signer/signer.go -------------------------------------------------------------------------------- /pkg/protocols/http/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/utils.go -------------------------------------------------------------------------------- /pkg/protocols/http/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/http/validate.go -------------------------------------------------------------------------------- /pkg/protocols/javascript/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/javascript/js.go -------------------------------------------------------------------------------- /pkg/protocols/javascript/js_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/javascript/js_test.go -------------------------------------------------------------------------------- /pkg/protocols/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/network.go -------------------------------------------------------------------------------- /pkg/protocols/network/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/network_test.go -------------------------------------------------------------------------------- /pkg/protocols/network/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/operators.go -------------------------------------------------------------------------------- /pkg/protocols/network/operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/operators_test.go -------------------------------------------------------------------------------- /pkg/protocols/network/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/request.go -------------------------------------------------------------------------------- /pkg/protocols/network/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/network/request_test.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/find.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/find_test.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/offlinehttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/offlinehttp.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/operators.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/read_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/read_response.go -------------------------------------------------------------------------------- /pkg/protocols/offlinehttp/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/offlinehttp/request.go -------------------------------------------------------------------------------- /pkg/protocols/protocols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/protocols.go -------------------------------------------------------------------------------- /pkg/protocols/ssl/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/ssl/ssl.go -------------------------------------------------------------------------------- /pkg/protocols/ssl/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/ssl/ssl_test.go -------------------------------------------------------------------------------- /pkg/protocols/utils/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/fields.go -------------------------------------------------------------------------------- /pkg/protocols/utils/http/requtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/http/requtils.go -------------------------------------------------------------------------------- /pkg/protocols/utils/http/requtils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/http/requtils_test.go -------------------------------------------------------------------------------- /pkg/protocols/utils/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/reader.go -------------------------------------------------------------------------------- /pkg/protocols/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/utils.go -------------------------------------------------------------------------------- /pkg/protocols/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/utils_test.go -------------------------------------------------------------------------------- /pkg/protocols/utils/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/variables.go -------------------------------------------------------------------------------- /pkg/protocols/utils/variables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/utils/variables_test.go -------------------------------------------------------------------------------- /pkg/protocols/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/websocket/websocket.go -------------------------------------------------------------------------------- /pkg/protocols/whois/whois.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/protocols/whois/whois.go -------------------------------------------------------------------------------- /pkg/reporting/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/client.go -------------------------------------------------------------------------------- /pkg/reporting/dedupe/dedupe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/dedupe/dedupe.go -------------------------------------------------------------------------------- /pkg/reporting/dedupe/dedupe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/dedupe/dedupe_test.go -------------------------------------------------------------------------------- /pkg/reporting/exporters/jsonl/jsonl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/exporters/jsonl/jsonl.go -------------------------------------------------------------------------------- /pkg/reporting/exporters/sarif/sarif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/exporters/sarif/sarif.go -------------------------------------------------------------------------------- /pkg/reporting/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/format/format.go -------------------------------------------------------------------------------- /pkg/reporting/format/format_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/format/format_utils.go -------------------------------------------------------------------------------- /pkg/reporting/format/format_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/format/format_utils_test.go -------------------------------------------------------------------------------- /pkg/reporting/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/options.go -------------------------------------------------------------------------------- /pkg/reporting/reporting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/reporting.go -------------------------------------------------------------------------------- /pkg/reporting/trackers/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/trackers/github/github.go -------------------------------------------------------------------------------- /pkg/reporting/trackers/gitlab/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/trackers/gitlab/gitlab.go -------------------------------------------------------------------------------- /pkg/reporting/trackers/jira/jira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/trackers/jira/jira.go -------------------------------------------------------------------------------- /pkg/reporting/trackers/jira/jira_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/reporting/trackers/jira/jira_test.go -------------------------------------------------------------------------------- /pkg/scan/scan_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/scan/scan_context.go -------------------------------------------------------------------------------- /pkg/templates/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/cache/cache.go -------------------------------------------------------------------------------- /pkg/templates/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/templates/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/cluster.go -------------------------------------------------------------------------------- /pkg/templates/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/cluster_test.go -------------------------------------------------------------------------------- /pkg/templates/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/compile.go -------------------------------------------------------------------------------- /pkg/templates/compile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/compile_test.go -------------------------------------------------------------------------------- /pkg/templates/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/doc.go -------------------------------------------------------------------------------- /pkg/templates/extensions/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/extensions/extensions.go -------------------------------------------------------------------------------- /pkg/templates/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/log.go -------------------------------------------------------------------------------- /pkg/templates/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/log_test.go -------------------------------------------------------------------------------- /pkg/templates/preprocessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/preprocessors.go -------------------------------------------------------------------------------- /pkg/templates/signer/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/signer/default.go -------------------------------------------------------------------------------- /pkg/templates/signer/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/signer/handler.go -------------------------------------------------------------------------------- /pkg/templates/signer/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/signer/handler_test.go -------------------------------------------------------------------------------- /pkg/templates/signer/tmpl_signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/signer/tmpl_signer.go -------------------------------------------------------------------------------- /pkg/templates/template_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/template_sign.go -------------------------------------------------------------------------------- /pkg/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/templates.go -------------------------------------------------------------------------------- /pkg/templates/templates_doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/templates_doc.go -------------------------------------------------------------------------------- /pkg/templates/templates_doc_examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/templates_doc_examples.go -------------------------------------------------------------------------------- /pkg/templates/templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/templates_test.go -------------------------------------------------------------------------------- /pkg/templates/tests/json-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/json-template.json -------------------------------------------------------------------------------- /pkg/templates/tests/match-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/match-1.yaml -------------------------------------------------------------------------------- /pkg/templates/tests/multiproto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/multiproto.json -------------------------------------------------------------------------------- /pkg/templates/tests/multiproto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/multiproto.yaml -------------------------------------------------------------------------------- /pkg/templates/tests/no-author.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/no-author.yaml -------------------------------------------------------------------------------- /pkg/templates/tests/no-req.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/no-req.yaml -------------------------------------------------------------------------------- /pkg/templates/tests/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/tests/workflow.yaml -------------------------------------------------------------------------------- /pkg/templates/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/types/types.go -------------------------------------------------------------------------------- /pkg/templates/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/templates/workflows.go -------------------------------------------------------------------------------- /pkg/testutils/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/testutils/integration.go -------------------------------------------------------------------------------- /pkg/testutils/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/testutils/testutils.go -------------------------------------------------------------------------------- /pkg/tmplexec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/README.md -------------------------------------------------------------------------------- /pkg/tmplexec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/doc.go -------------------------------------------------------------------------------- /pkg/tmplexec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/exec.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/README.md -------------------------------------------------------------------------------- /pkg/tmplexec/flow/builtin/dedupe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/builtin/dedupe.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/doc.go: -------------------------------------------------------------------------------- 1 | package flow 2 | -------------------------------------------------------------------------------- /pkg/tmplexec/flow/flow_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/flow_executor.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/flow_executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/flow_executor_test.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/flow_internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/flow_internal.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/util.go -------------------------------------------------------------------------------- /pkg/tmplexec/flow/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/flow/vm.go -------------------------------------------------------------------------------- /pkg/tmplexec/generic/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/generic/exec.go -------------------------------------------------------------------------------- /pkg/tmplexec/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/interface.go -------------------------------------------------------------------------------- /pkg/tmplexec/multiproto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/multiproto/README.md -------------------------------------------------------------------------------- /pkg/tmplexec/multiproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/multiproto/doc.go -------------------------------------------------------------------------------- /pkg/tmplexec/multiproto/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/multiproto/multi.go -------------------------------------------------------------------------------- /pkg/tmplexec/multiproto/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/tmplexec/multiproto/multi_test.go -------------------------------------------------------------------------------- /pkg/types/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/types/interfaces.go -------------------------------------------------------------------------------- /pkg/types/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/types/proxy.go -------------------------------------------------------------------------------- /pkg/types/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/types/resume.go -------------------------------------------------------------------------------- /pkg/types/scanstrategy/scan_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/types/scanstrategy/scan_strategy.go -------------------------------------------------------------------------------- /pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/types/types.go -------------------------------------------------------------------------------- /pkg/utils/expand/expand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/expand/expand.go -------------------------------------------------------------------------------- /pkg/utils/folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/README.md -------------------------------------------------------------------------------- /pkg/utils/folder/folderutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/folderutil.go -------------------------------------------------------------------------------- /pkg/utils/folder/folderutil_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/folderutil_linux_test.go -------------------------------------------------------------------------------- /pkg/utils/folder/folderutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/folderutil_test.go -------------------------------------------------------------------------------- /pkg/utils/folder/folderutil_win_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/folderutil_win_test.go -------------------------------------------------------------------------------- /pkg/utils/folder/std_dirs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/folder/std_dirs.go -------------------------------------------------------------------------------- /pkg/utils/http_probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/http_probe.go -------------------------------------------------------------------------------- /pkg/utils/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/index.go -------------------------------------------------------------------------------- /pkg/utils/insertion_ordered_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/insertion_ordered_map.go -------------------------------------------------------------------------------- /pkg/utils/insertion_ordered_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/insertion_ordered_map_test.go -------------------------------------------------------------------------------- /pkg/utils/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/monitor/monitor.go -------------------------------------------------------------------------------- /pkg/utils/monitor/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/monitor/monitor_test.go -------------------------------------------------------------------------------- /pkg/utils/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/stats/doc.go -------------------------------------------------------------------------------- /pkg/utils/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/stats/stats.go -------------------------------------------------------------------------------- /pkg/utils/template_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/template_path.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /pkg/utils/yaml/preprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/yaml/preprocess.go -------------------------------------------------------------------------------- /pkg/utils/yaml/yaml_decode_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/utils/yaml/yaml_decode_wrapper.go -------------------------------------------------------------------------------- /pkg/workflows/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/workflows/doc.go -------------------------------------------------------------------------------- /pkg/workflows/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/workflows/workflows.go -------------------------------------------------------------------------------- /pkg/workflows/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pkg/workflows/workflows_test.go -------------------------------------------------------------------------------- /pocs/7/74cms/74cms-weixin-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/7/74cms/74cms-weixin-sqli.yaml -------------------------------------------------------------------------------- /pocs/a/activemq/activemq-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/activemq/activemq-panel.yaml -------------------------------------------------------------------------------- /pocs/a/amazon/amazon-ec2-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/amazon/amazon-ec2-ssrf.yaml -------------------------------------------------------------------------------- /pocs/a/avaya/avaya-aura-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/avaya/avaya-aura-rce.yaml -------------------------------------------------------------------------------- /pocs/a/avaya/avaya-aura-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/avaya/avaya-aura-xss.yaml -------------------------------------------------------------------------------- /pocs/a/avtech/avtech-auth-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/avtech/avtech-auth-bypass.yaml -------------------------------------------------------------------------------- /pocs/a/avtech/avtech-dvr-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/a/avtech/avtech-dvr-ssrf.yaml -------------------------------------------------------------------------------- /pocs/c/cisco/cisco-vmanage-log4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/c/cisco/cisco-vmanage-log4j.yaml -------------------------------------------------------------------------------- /pocs/c/cisco/cisco-webex-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/c/cisco/cisco-webex-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/c/code42/code42-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/c/code42/code42-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/c/concrete/concrete-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/c/concrete/concrete-xss.yaml -------------------------------------------------------------------------------- /pocs/d/dahua/dahua-icc-backdoor-user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dahua/dahua-icc-backdoor-user.yaml -------------------------------------------------------------------------------- /pocs/d/dahua/dahua-wpms-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dahua/dahua-wpms-lfi.yaml -------------------------------------------------------------------------------- /pocs/d/dahua/dahua-wpms-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dahua/dahua-wpms-rce.yaml -------------------------------------------------------------------------------- /pocs/d/dedecms/dedecms-config-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dedecms/dedecms-config-xss.yaml -------------------------------------------------------------------------------- /pocs/d/dedecms/dedecms-openredirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dedecms/dedecms-openredirect.yaml -------------------------------------------------------------------------------- /pocs/d/dedecms/dedecms-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dedecms/dedecms-rce.yaml -------------------------------------------------------------------------------- /pocs/d/discuz/discuz-api-pathinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/discuz/discuz-api-pathinfo.yaml -------------------------------------------------------------------------------- /pocs/d/dlink/dlink-netgear-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/dlink/dlink-netgear-xss.yaml -------------------------------------------------------------------------------- /pocs/d/drupal/drupal-avatar-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/d/drupal/drupal-avatar-xss.yaml -------------------------------------------------------------------------------- /pocs/e/ecstatic/node-ecstatic-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/e/ecstatic/node-ecstatic-listing.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-24-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-24-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-41-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-41-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-42-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-42-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-43-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-43-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-47-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-47-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-62-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-62-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-67-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-67-rce.yaml -------------------------------------------------------------------------------- /pocs/f/fastjson/fastjson-1-2-68-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/fastjson/fastjson-1-2-68-rce.yaml -------------------------------------------------------------------------------- /pocs/f/flink/apache-flink-unauth-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/f/flink/apache-flink-unauth-rce.yaml -------------------------------------------------------------------------------- /pocs/g/generic/basic-xss-prober.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/basic-xss-prober.yaml -------------------------------------------------------------------------------- /pocs/g/generic/cache-poisoning-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/cache-poisoning-xss.yaml -------------------------------------------------------------------------------- /pocs/g/generic/cache-poisoning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/cache-poisoning.yaml -------------------------------------------------------------------------------- /pocs/g/generic/cors-misconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/cors-misconfig.yaml -------------------------------------------------------------------------------- /pocs/g/generic/crlf-injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/crlf-injection.yaml -------------------------------------------------------------------------------- /pocs/g/generic/generic-blind-xxe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/generic-blind-xxe.yaml -------------------------------------------------------------------------------- /pocs/g/generic/generic-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/generic-env.yaml -------------------------------------------------------------------------------- /pocs/g/generic/generic-j2ee-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/generic-j2ee-lfi.yaml -------------------------------------------------------------------------------- /pocs/g/generic/generic-linux-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/generic-linux-lfi.yaml -------------------------------------------------------------------------------- /pocs/g/generic/generic-windows-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/generic-windows-lfi.yaml -------------------------------------------------------------------------------- /pocs/g/generic/host-header-injection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/host-header-injection.yaml -------------------------------------------------------------------------------- /pocs/g/generic/open-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/open-redirect.yaml -------------------------------------------------------------------------------- /pocs/g/generic/top-xss-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/top-xss-params.yaml -------------------------------------------------------------------------------- /pocs/g/generic/xmlrpc-pingback-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/xmlrpc-pingback-ssrf.yaml -------------------------------------------------------------------------------- /pocs/g/generic/xss-fuzz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/generic/xss-fuzz.yaml -------------------------------------------------------------------------------- /pocs/g/gitea/gitea-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/gitea/gitea-rce.yaml -------------------------------------------------------------------------------- /pocs/g/gitlab/gitlab-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/gitlab/gitlab-rce.yaml -------------------------------------------------------------------------------- /pocs/g/gnuboard/gnuboard-sms-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/gnuboard/gnuboard-sms-xss.yaml -------------------------------------------------------------------------------- /pocs/g/gnuboard/gnuboard5-rxss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/gnuboard/gnuboard5-rxss.yaml -------------------------------------------------------------------------------- /pocs/g/gnuboard/gnuboard5-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/gnuboard/gnuboard5-xss.yaml -------------------------------------------------------------------------------- /pocs/g/grafana/grafana-file-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/g/grafana/grafana-file-read.yaml -------------------------------------------------------------------------------- /pocs/h/httpbin/httpbin-open-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/h/httpbin/httpbin-open-redirect.yaml -------------------------------------------------------------------------------- /pocs/h/httpbin/httpbin-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/h/httpbin/httpbin-xss.yaml -------------------------------------------------------------------------------- /pocs/h/huawei/huawei-authhttp-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/h/huawei/huawei-authhttp-lfi.yaml -------------------------------------------------------------------------------- /pocs/h/huawei/huawei-firewall-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/h/huawei/huawei-firewall-lfi.yaml -------------------------------------------------------------------------------- /pocs/h/huawei/huawei-hg255s-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/h/huawei/huawei-hg255s-lfi.yaml -------------------------------------------------------------------------------- /pocs/i/ibm/eclipse-help-system-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/ibm/eclipse-help-system-xss.yaml -------------------------------------------------------------------------------- /pocs/i/ibm/ibm-infoprint-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/ibm/ibm-infoprint-lfi.yaml -------------------------------------------------------------------------------- /pocs/i/iot/ampguard-wifi-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/ampguard-wifi-setup.yaml -------------------------------------------------------------------------------- /pocs/i/iot/apc-ups-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/apc-ups-login.yaml -------------------------------------------------------------------------------- /pocs/i/iot/automation-direct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/automation-direct.yaml -------------------------------------------------------------------------------- /pocs/i/iot/brother-printer-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/brother-printer-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/carel-plantvisor-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/carel-plantvisor-panel.yaml -------------------------------------------------------------------------------- /pocs/i/iot/codian-mcu-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/codian-mcu-login.yaml -------------------------------------------------------------------------------- /pocs/i/iot/contacam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/contacam.yaml -------------------------------------------------------------------------------- /pocs/i/iot/envision-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/envision-gateway.yaml -------------------------------------------------------------------------------- /pocs/i/iot/epmp-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/epmp-login.yaml -------------------------------------------------------------------------------- /pocs/i/iot/epson-wf-series.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/epson-wf-series.yaml -------------------------------------------------------------------------------- /pocs/i/iot/heatmiser-wifi-thermostat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/heatmiser-wifi-thermostat.yaml -------------------------------------------------------------------------------- /pocs/i/iot/homeworks-illumination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/homeworks-illumination.yaml -------------------------------------------------------------------------------- /pocs/i/iot/honeywell-building-control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/honeywell-building-control.yaml -------------------------------------------------------------------------------- /pocs/i/iot/hp-color-laserjet-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/hp-color-laserjet-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/hp-device-info-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/hp-device-info-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/hp-laserjet-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/hp-laserjet-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/huawei-home-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/huawei-home-gateway.yaml -------------------------------------------------------------------------------- /pocs/i/iot/internet-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/internet-service.yaml -------------------------------------------------------------------------------- /pocs/i/iot/iotawatt-app-exposure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/iotawatt-app-exposure.yaml -------------------------------------------------------------------------------- /pocs/i/iot/kevinlab-device-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/kevinlab-device-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/kyocera-printer-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/kyocera-printer-panel.yaml -------------------------------------------------------------------------------- /pocs/i/iot/liveview-axis-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/liveview-axis-camera.yaml -------------------------------------------------------------------------------- /pocs/i/iot/loytec-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/loytec-device.yaml -------------------------------------------------------------------------------- /pocs/i/iot/mobotix-guest-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/mobotix-guest-camera.yaml -------------------------------------------------------------------------------- /pocs/i/iot/netsurveillance-web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/netsurveillance-web.yaml -------------------------------------------------------------------------------- /pocs/i/iot/network-camera-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/network-camera-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/novus-ip-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/novus-ip-camera.yaml -------------------------------------------------------------------------------- /pocs/i/iot/nuuno-network-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/nuuno-network-login.yaml -------------------------------------------------------------------------------- /pocs/i/iot/octoprint-3dprinter-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/octoprint-3dprinter-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/open-mjpg-streamer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/open-mjpg-streamer.yaml -------------------------------------------------------------------------------- /pocs/i/iot/pqube-power-analyzers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/pqube-power-analyzers.yaml -------------------------------------------------------------------------------- /pocs/i/iot/raspberry-shake-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/raspberry-shake-config.yaml -------------------------------------------------------------------------------- /pocs/i/iot/routeros-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/routeros-login.yaml -------------------------------------------------------------------------------- /pocs/i/iot/selea-ip-camera.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/selea-ip-camera.yaml -------------------------------------------------------------------------------- /pocs/i/iot/snapdrop-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/snapdrop-detect.yaml -------------------------------------------------------------------------------- /pocs/i/iot/targa-camera-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/targa-camera-lfi.yaml -------------------------------------------------------------------------------- /pocs/i/iot/targa-camera-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/targa-camera-ssrf.yaml -------------------------------------------------------------------------------- /pocs/i/iot/ulanzi-clock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/ulanzi-clock.yaml -------------------------------------------------------------------------------- /pocs/i/iot/upnp-device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/upnp-device.yaml -------------------------------------------------------------------------------- /pocs/i/iot/webcamxp-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/webcamxp-5.yaml -------------------------------------------------------------------------------- /pocs/i/iot/webtools-home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/webtools-home.yaml -------------------------------------------------------------------------------- /pocs/i/iot/xp-webcam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/xp-webcam.yaml -------------------------------------------------------------------------------- /pocs/i/iot/zebra-printer-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/i/iot/zebra-printer-detect.yaml -------------------------------------------------------------------------------- /pocs/is/apache-activemq-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/apache-activemq-detect.yaml -------------------------------------------------------------------------------- /pocs/is/aws-sftp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/aws-sftp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/axigen-mail-server-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/axigen-mail-server-detect.yaml -------------------------------------------------------------------------------- /pocs/is/bgp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/bgp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/cisco-finger-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/cisco-finger-detect.yaml -------------------------------------------------------------------------------- /pocs/is/clamav-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/clamav-detect.yaml -------------------------------------------------------------------------------- /pocs/is/cql-native-transport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/cql-native-transport.yaml -------------------------------------------------------------------------------- /pocs/is/detect-addpac-voip-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/detect-addpac-voip-gateway.yaml -------------------------------------------------------------------------------- /pocs/is/detect-jabber-xmpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/detect-jabber-xmpp.yaml -------------------------------------------------------------------------------- /pocs/is/dropbear-cbc-ciphers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/dropbear-cbc-ciphers.yaml -------------------------------------------------------------------------------- /pocs/is/esmtp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/esmtp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/exim-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/exim-detect.yaml -------------------------------------------------------------------------------- /pocs/is/expn-mail-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/expn-mail-detect.yaml -------------------------------------------------------------------------------- /pocs/is/finger-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/finger-detect.yaml -------------------------------------------------------------------------------- /pocs/is/gnu-inetutils-ftpd-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/gnu-inetutils-ftpd-detect.yaml -------------------------------------------------------------------------------- /pocs/is/gopher-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/gopher-detect.yaml -------------------------------------------------------------------------------- /pocs/is/ibm-d2b-database-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/ibm-d2b-database-server.yaml -------------------------------------------------------------------------------- /pocs/is/imap-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/imap-detect.yaml -------------------------------------------------------------------------------- /pocs/is/iplanet-imap-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/iplanet-imap-detect.yaml -------------------------------------------------------------------------------- /pocs/is/java-rmi-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/java-rmi-detect.yaml -------------------------------------------------------------------------------- /pocs/is/microsoft-ftp-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/microsoft-ftp-service.yaml -------------------------------------------------------------------------------- /pocs/is/mikrotik-ftp-server-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/mikrotik-ftp-server-detect.yaml -------------------------------------------------------------------------------- /pocs/is/mikrotik-routeros-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/mikrotik-routeros-api.yaml -------------------------------------------------------------------------------- /pocs/is/mongodb-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/mongodb-detect.yaml -------------------------------------------------------------------------------- /pocs/is/moveit-sftp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/moveit-sftp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/msmq-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/msmq-detect.yaml -------------------------------------------------------------------------------- /pocs/is/mysql-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/mysql-detect.yaml -------------------------------------------------------------------------------- /pocs/is/openssh-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/openssh-detect.yaml -------------------------------------------------------------------------------- /pocs/is/pgsql-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/pgsql-detect.yaml -------------------------------------------------------------------------------- /pocs/is/pop3-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/pop3-detect.yaml -------------------------------------------------------------------------------- /pocs/is/proftpd-server-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/proftpd-server-detect.yaml -------------------------------------------------------------------------------- /pocs/is/rabbitmq-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/rabbitmq-detect.yaml -------------------------------------------------------------------------------- /pocs/is/rdp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/rdp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/redis-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/redis-detect.yaml -------------------------------------------------------------------------------- /pocs/is/riak-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/riak-detect.yaml -------------------------------------------------------------------------------- /pocs/is/rpcbind-portmapper-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/rpcbind-portmapper-detect.yaml -------------------------------------------------------------------------------- /pocs/is/rsyncd-service-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/rsyncd-service-detect.yaml -------------------------------------------------------------------------------- /pocs/is/rtsp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/rtsp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/samba-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/samba-detect.yaml -------------------------------------------------------------------------------- /pocs/is/sap-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/sap-router.yaml -------------------------------------------------------------------------------- /pocs/is/smb-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/smb-detect.yaml -------------------------------------------------------------------------------- /pocs/is/smtp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/smtp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/sshd-dropbear-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/sshd-dropbear-detect.yaml -------------------------------------------------------------------------------- /pocs/is/starttls-mail-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/starttls-mail-detect.yaml -------------------------------------------------------------------------------- /pocs/is/teamspeak3-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/teamspeak3-detect.yaml -------------------------------------------------------------------------------- /pocs/is/telnet-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/telnet-detect.yaml -------------------------------------------------------------------------------- /pocs/is/totemomail-smtp-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/totemomail-smtp-detect.yaml -------------------------------------------------------------------------------- /pocs/is/vnc-service-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/vnc-service-detect.yaml -------------------------------------------------------------------------------- /pocs/is/weblogic-iiop-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/weblogic-iiop-detect.yaml -------------------------------------------------------------------------------- /pocs/is/weblogic-t3-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/weblogic-t3-detect.yaml -------------------------------------------------------------------------------- /pocs/is/ws_ftp-ssh-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/ws_ftp-ssh-detect.yaml -------------------------------------------------------------------------------- /pocs/is/xlight-ftp-service-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/is/xlight-ftp-service-detect.yaml -------------------------------------------------------------------------------- /pocs/j/j2ee/liferay-resource-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/j2ee/liferay-resource-leak.yaml -------------------------------------------------------------------------------- /pocs/j/jamf/jamf-blind-xxe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jamf/jamf-blind-xxe.yaml -------------------------------------------------------------------------------- /pocs/j/jamf/jamf-log4j-jndi-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jamf/jamf-log4j-jndi-rce.yaml -------------------------------------------------------------------------------- /pocs/j/jamf/jamf-pro-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jamf/jamf-pro-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/j/jenkins/jenkins-asyncpeople.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jenkins/jenkins-asyncpeople.yaml -------------------------------------------------------------------------------- /pocs/j/jenkins/jenkins-script.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jenkins/jenkins-script.yaml -------------------------------------------------------------------------------- /pocs/j/jenkins/jenkins-stack-trace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jenkins/jenkins-stack-trace.yaml -------------------------------------------------------------------------------- /pocs/j/jinhe/jinhe-jc6-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jinhe/jinhe-jc6-sqli.yaml -------------------------------------------------------------------------------- /pocs/j/jinhe/jinhe-oa-c6-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jinhe/jinhe-oa-c6-lfi.yaml -------------------------------------------------------------------------------- /pocs/j/jira/jira-servicedesk-signup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jira/jira-servicedesk-signup.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-department-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-department-sqli.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-jvehicles-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-jvehicles-lfi.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-jvtwitter-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-jvtwitter-xss.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-marvikshop-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-marvikshop-sqli.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-marvikshop-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-marvikshop-xss.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/joomla-solidres-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/joomla-solidres-xss.yaml -------------------------------------------------------------------------------- /pocs/j/joomla/rusty-joomla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/joomla/rusty-joomla.yaml -------------------------------------------------------------------------------- /pocs/j/jorani/jorani-benjamin-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/jorani/jorani-benjamin-xss.yaml -------------------------------------------------------------------------------- /pocs/j/juniper/junos-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/j/juniper/junos-xss.yaml -------------------------------------------------------------------------------- /pocs/l/landray/CNVD-2021-28277.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/landray/CNVD-2021-28277.yaml -------------------------------------------------------------------------------- /pocs/l/landray/landray-oa-treexml-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/landray/landray-oa-treexml-rce.yaml -------------------------------------------------------------------------------- /pocs/l/laravel/laravel-ignition-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/laravel/laravel-ignition-xss.yaml -------------------------------------------------------------------------------- /pocs/l/linkerd/linkerd-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/linkerd/linkerd-ssrf.yaml -------------------------------------------------------------------------------- /pocs/l/log4j/jamf-pro-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/log4j/jamf-pro-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/l/lucee/lucee-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/l/lucee/lucee-rce.yaml -------------------------------------------------------------------------------- /pocs/m/magento/magento-2-exposed-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/magento/magento-2-exposed-api.yaml -------------------------------------------------------------------------------- /pocs/m/magento/magento-cacheleak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/magento/magento-cacheleak.yaml -------------------------------------------------------------------------------- /pocs/m/microsoft/office-webapps-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/microsoft/office-webapps-ssrf.yaml -------------------------------------------------------------------------------- /pocs/m/moodle/moodle-filter-jmol-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/moodle/moodle-filter-jmol-lfi.yaml -------------------------------------------------------------------------------- /pocs/m/moodle/moodle-filter-jmol-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/moodle/moodle-filter-jmol-xss.yaml -------------------------------------------------------------------------------- /pocs/m/moodle/moodle-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/m/moodle/moodle-xss.yaml -------------------------------------------------------------------------------- /pocs/n/netmizer/netmizer-cmd-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/netmizer/netmizer-cmd-rce.yaml -------------------------------------------------------------------------------- /pocs/n/netmizer/netmizer-data-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/netmizer/netmizer-data-listing.yaml -------------------------------------------------------------------------------- /pocs/n/netsweeper/netsweeper-rxss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/netsweeper/netsweeper-rxss.yaml -------------------------------------------------------------------------------- /pocs/n/nifi/apache-nifi-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/nifi/apache-nifi-rce.yaml -------------------------------------------------------------------------------- /pocs/n/nps/nps-auth-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/nps/nps-auth-bypass.yaml -------------------------------------------------------------------------------- /pocs/n/nuxt/nuxt-js-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/nuxt/nuxt-js-lfi.yaml -------------------------------------------------------------------------------- /pocs/n/nuxt/nuxt-js-semi-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/nuxt/nuxt-js-semi-lfi.yaml -------------------------------------------------------------------------------- /pocs/n/nuxt/nuxt-js-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/n/nuxt/nuxt-js-xss.yaml -------------------------------------------------------------------------------- /pocs/o/ofbiz/apache-ofbiz-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/o/ofbiz/apache-ofbiz-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/o/opencpu/opencpu-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/o/opencpu/opencpu-rce.yaml -------------------------------------------------------------------------------- /pocs/o/oracle/oracle-ebs-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/o/oracle/oracle-ebs-xss.yaml -------------------------------------------------------------------------------- /pocs/o/oracle/oracle-siebel-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/o/oracle/oracle-siebel-xss.yaml -------------------------------------------------------------------------------- /pocs/o/oscommerce/oscommerce-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/o/oscommerce/oscommerce-rce.yaml -------------------------------------------------------------------------------- /pocs/p/php/php-xdebug-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/p/php/php-xdebug-rce.yaml -------------------------------------------------------------------------------- /pocs/p/phpmyadmin/phpmyadmin-unauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/p/phpmyadmin/phpmyadmin-unauth.yaml -------------------------------------------------------------------------------- /pocs/q/qianxin/secsslvpn-auth-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/q/qianxin/secsslvpn-auth-bypass.yaml -------------------------------------------------------------------------------- /pocs/q/qibocms/qibocms-file-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/q/qibocms/qibocms-file-download.yaml -------------------------------------------------------------------------------- /pocs/r/rails/rails6-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/rails/rails6-xss.yaml -------------------------------------------------------------------------------- /pocs/r/ransomware/deadbolt-ransomware.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ransomware/deadbolt-ransomware.yaml -------------------------------------------------------------------------------- /pocs/r/realor/realor-gwt-system-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/realor/realor-gwt-system-sqli.yaml -------------------------------------------------------------------------------- /pocs/r/rocketchat/unauth-message-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/rocketchat/unauth-message-read.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/CNVD-2021-09650.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/CNVD-2021-09650.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/CNVD-2021-14536.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/CNVD-2021-14536.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-eg-login-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-eg-login-rce.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-eg-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-eg-rce.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-excu-shell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-excu-shell.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-nbr-fileupload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-nbr-fileupload.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-networks-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-networks-lfi.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-nmc-sync-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-nmc-sync-rce.yaml -------------------------------------------------------------------------------- /pocs/r/ruijie/ruijie-password-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruijie/ruijie-password-leak.yaml -------------------------------------------------------------------------------- /pocs/r/ruoyi/CNVD-2021-01931.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/r/ruoyi/CNVD-2021-01931.yaml -------------------------------------------------------------------------------- /pocs/s/samsung/samsung-wlan-ap-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/samsung/samsung-wlan-ap-lfi.yaml -------------------------------------------------------------------------------- /pocs/s/samsung/samsung-wlan-ap-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/samsung/samsung-wlan-ap-rce.yaml -------------------------------------------------------------------------------- /pocs/s/samsung/samsung-wlan-ap-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/samsung/samsung-wlan-ap-xss.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-ba-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-ba-rce.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-cphp-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-cphp-rce.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-download-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-download-lfi.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-edr-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-edr-rce.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-login-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-login-rce.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-ngaf-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-ngaf-lfi.yaml -------------------------------------------------------------------------------- /pocs/s/sangfor/sangfor-sysuser-conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sangfor/sangfor-sysuser-conf.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/seeyon-config-exposure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/seeyon-config-exposure.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/seeyon-oa-fastjson-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/seeyon-oa-fastjson-rce.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/seeyon-oa-setextno-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/seeyon-oa-setextno-sqli.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/wooyun-2015-148227.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/wooyun-2015-148227.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/zhiyuan-file-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/zhiyuan-file-upload.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/zhiyuan-oa-info-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/zhiyuan-oa-info-leak.yaml -------------------------------------------------------------------------------- /pocs/s/seeyon/zhiyuan-oa-session-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/seeyon/zhiyuan-oa-session-leak.yaml -------------------------------------------------------------------------------- /pocs/s/shiro/shiro-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/shiro/shiro-detect.yaml -------------------------------------------------------------------------------- /pocs/s/sitecore/sitecore-xml-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/sitecore/sitecore-xml-xss.yaml -------------------------------------------------------------------------------- /pocs/s/solr/apache-solr-file-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/solr/apache-solr-file-read.yaml -------------------------------------------------------------------------------- /pocs/s/solr/apache-solr-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/solr/apache-solr-log4j-rce.yaml -------------------------------------------------------------------------------- /pocs/s/solr/apache-solr-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/solr/apache-solr-rce.yaml -------------------------------------------------------------------------------- /pocs/s/splash/splash-render-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/splash/splash-render-ssrf.yaml -------------------------------------------------------------------------------- /pocs/s/squirrelmail/squirrelmail-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/s/squirrelmail/squirrelmail-lfi.yaml -------------------------------------------------------------------------------- /pocs/t/thinkcmf/thinkcmf-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkcmf/thinkcmf-lfi.yaml -------------------------------------------------------------------------------- /pocs/t/thinkcmf/thinkcmf-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkcmf/thinkcmf-rce.yaml -------------------------------------------------------------------------------- /pocs/t/thinkphp/thinkphp-2-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkphp/thinkphp-2-rce.yaml -------------------------------------------------------------------------------- /pocs/t/thinkphp/thinkphp-501-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkphp/thinkphp-501-rce.yaml -------------------------------------------------------------------------------- /pocs/t/thinkphp/thinkphp-5022-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkphp/thinkphp-5022-rce.yaml -------------------------------------------------------------------------------- /pocs/t/thinkphp/thinkphp-5023-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/thinkphp/thinkphp-5023-rce.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-api-file-upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-api-file-upload.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-arbitrary-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-arbitrary-login.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-auth-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-auth-bypass.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-getdata-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-getdata-rce.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-getway-rfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-getway-rfi.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-insert-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-insert-sqli.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-meeting-unauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-meeting-unauth.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-path-traversal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-path-traversal.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-report-func-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-report-func-sqli.yaml -------------------------------------------------------------------------------- /pocs/t/tongda/tongda-video-file-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/tongda/tongda-video-file-read.yaml -------------------------------------------------------------------------------- /pocs/t/topsec/topsec-topacm-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/t/topsec/topsec-topacm-rce.yaml -------------------------------------------------------------------------------- /pocs/u/ueditor/ueditor-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/u/ueditor/ueditor-ssrf.yaml -------------------------------------------------------------------------------- /pocs/u/ueditor/ueditor-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/u/ueditor/ueditor-xss.yaml -------------------------------------------------------------------------------- /pocs/v/vbulletin/arcade-php-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vbulletin/arcade-php-sqli.yaml -------------------------------------------------------------------------------- /pocs/v/vbulletin/vbulletin-backdoor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vbulletin/vbulletin-backdoor.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-carbon-black-edr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-carbon-black-edr.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-cloud-director.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-cloud-director.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-cloud-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-cloud-xss.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-detect.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-ftp-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-ftp-server.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-hcx-log4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-hcx-log4j.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-hcx-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-hcx-login.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-horizon-daas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-horizon-daas.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-horizon-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-horizon-panel.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-horizon-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-horizon-version.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-nsx-log4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-nsx-log4j.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-nsx-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-nsx-login.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-nsx-stream-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-nsx-stream-rce.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-vcenter-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-vcenter-lfi.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-vcenter-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-vcenter-ssrf.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-vcloud-director.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-vcloud-director.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-vrealize-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-vrealize-detect.yaml -------------------------------------------------------------------------------- /pocs/v/vmware/vmware-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/v/vmware/vmware-workflow.yaml -------------------------------------------------------------------------------- /pocs/w/wanhu/wanhu-documentedit-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wanhu/wanhu-documentedit-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/ecology/ecology-v8-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/ecology/ecology-v8-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/oa-v9-uploads-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/oa-v9-uploads-file.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-checkserver-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-checkserver-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-e-mobile-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-e-mobile-rce.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-ebridge-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-ebridge-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-group-xml-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-group-xml-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-login-sessionkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-login-sessionkey.yaml -------------------------------------------------------------------------------- /pocs/w/weaver/weaver-officeserver-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weaver/weaver-officeserver-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-detect.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-iiop-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-iiop-detect.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-login.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-t3-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-t3-detect.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-uddiexplorer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-uddiexplorer.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-weak-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-weak-login.yaml -------------------------------------------------------------------------------- /pocs/w/weblogic/weblogic-workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/weblogic/weblogic-workflow.yaml -------------------------------------------------------------------------------- /pocs/w/wechat/wechat-info-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wechat/wechat-info-leak.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/3d-print-lite-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/3d-print-lite-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/404-to-301-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/404-to-301-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/ad-widget-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/ad-widget-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/age-gate-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/age-gate-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/alfacgiapi-wordpress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/alfacgiapi-wordpress.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/analytify-plugin-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/analytify-plugin-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/aspose-file-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/aspose-file-download.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/booked-export-csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/booked-export-csv.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/brandfolder-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/brandfolder-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/cherry-file-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/cherry-file-download.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/cherry-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/cherry-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/church-admin-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/church-admin-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/churchope-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/churchope-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/clearfy-cache-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/clearfy-cache-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/curcy-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/curcy-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/diarise-theme-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/diarise-theme-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/elex-woocommerce-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/elex-woocommerce-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/hb-audio-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/hb-audio-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/health-check-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/health-check-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/issuu-panel-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/issuu-panel-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/knr-widget-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/knr-widget-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/ldap-wp-login-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/ldap-wp-login-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/members-list-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/members-list-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/mthemeunus-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/mthemeunus-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/my-chatbot-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/my-chatbot-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/new-user-approve-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/new-user-approve-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/notificationx-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/notificationx-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/photo-gallery-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/photo-gallery-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/sassy-social-share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/sassy-social-share.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/seatreg-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/seatreg-redirect.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/seo-redirection-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/seo-redirection-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/shortcode-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/shortcode-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/w3c-total-cache-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/w3c-total-cache-ssrf.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/watu-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/watu-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-db-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-db-backup.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-db-repair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-db-repair.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-debug-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-debug-log.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-git-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-git-config.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-user-enum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-user-enum.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wordpress-wp-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wordpress-wp-cron.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-adaptive-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-adaptive-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-adivaha-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-adivaha-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-adivaha-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-adivaha-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-all-export-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-all-export-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-altair-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-altair-listing.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-ambience-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-ambience-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-arforms-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-arforms-listing.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-blogroll-fun-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-blogroll-fun-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-code-snippets-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-code-snippets-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-config-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-config-setup.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-custom-tables-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-custom-tables-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-ellipsis-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-ellipsis-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-finder-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-finder-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-flagem-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-flagem-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-googlemp3-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-googlemp3-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-haberadam-idor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-haberadam-idor.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-insert-php-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-insert-php-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-javospot-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-javospot-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-knews-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-knews-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-license-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-license-file.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-mega-theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-mega-theme.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-nextgen-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-nextgen-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-oxygen-theme-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-oxygen-theme-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-phpfreechat-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-phpfreechat-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-plugin-lifterlms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-plugin-lifterlms.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-popup-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-popup-listing.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-qards-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-qards-listing.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-qwiz-online-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-qwiz-online-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-real-estate-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-real-estate-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-related-post-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-related-post-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-securimage-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-securimage-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-sfwd-lms-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-sfwd-lms-listing.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-slideshow-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-slideshow-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-socialfit-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-socialfit-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-statistics-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-statistics-sqli.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-super-forms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-super-forms.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-sym404.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-sym404.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-tinymce-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-tinymce-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-touch-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-touch-redirect.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-tutor-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-tutor-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-upload-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-upload-data.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-user-enum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-user-enum.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-vault-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-vault-lfi.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wp-xmlrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wp-xmlrpc.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wpdm-cache-session.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wpdm-cache-session.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wpml-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wpml-xss.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wpmudev-pub-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wpmudev-pub-keys.yaml -------------------------------------------------------------------------------- /pocs/w/wordpress/wptouch-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/w/wordpress/wptouch-xss.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/CNVD-2021-30167.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/CNVD-2021-30167.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/chanjet-gnremote-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/chanjet-gnremote-sqli.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/wooyun-path-traversal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/wooyun-path-traversal.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-grp-u8-xxe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-grp-u8-xxe.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-ksoa-dept-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-ksoa-dept-sqli.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-nc-info-leak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-nc-info-leak.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-u8-crm-lfi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-u8-crm-lfi.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-u8-oa-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-u8-oa-sqli.yaml -------------------------------------------------------------------------------- /pocs/y/yonyou/yonyou-u8-sqli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/y/yonyou/yonyou-u8-sqli.yaml -------------------------------------------------------------------------------- /pocs/z/zend/zend-v1-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zend/zend-v1-xss.yaml -------------------------------------------------------------------------------- /pocs/z/zentao/CNVD-2022-42853.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zentao/CNVD-2022-42853.yaml -------------------------------------------------------------------------------- /pocs/z/zyxel/unauth-lfd-zhttpd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zyxel/unauth-lfd-zhttpd.yaml -------------------------------------------------------------------------------- /pocs/z/zyxel/unauth-ztp-ping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zyxel/unauth-ztp-ping.yaml -------------------------------------------------------------------------------- /pocs/z/zzzcms/zzzcms-ssrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zzzcms/zzzcms-ssrf.yaml -------------------------------------------------------------------------------- /pocs/z/zzzcms/zzzcms-xss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goqi/Ni/HEAD/pocs/z/zzzcms/zzzcms-xss.yaml --------------------------------------------------------------------------------