├── .deepsource.toml ├── .github ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── build-and-test.yaml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── analysis ├── analyzer.go ├── analyzer_test.go ├── issue.go ├── language.go ├── scope.go ├── testdata │ ├── mock-checker.yml │ ├── mock-wrong-checker.yml │ ├── node-filter-checker.yml │ ├── node-filter-test-checker.test.js │ ├── node-filter-test-checker.yml │ └── yaml_tests │ │ ├── fail │ │ ├── test_fail.test.js │ │ ├── test_fail.yml │ │ ├── test_fail_again.test.js │ │ └── test_fail_again.yml │ │ ├── pass │ │ ├── yaml_test.test.js │ │ └── yaml_test.yml │ │ ├── path_filters │ │ ├── malformed_path.yml │ │ ├── malformed_path_include.yml │ │ └── valid_path.yml │ │ └── patterns │ │ ├── invalid-patterns.yml │ │ ├── multi-pattern.yml │ │ ├── no-pattern.yml │ │ ├── single-multiple.yml │ │ └── wrong-pattern.yml ├── testrunner.go ├── testrunner_test.go ├── ts_scope.go ├── ts_scope_test.go ├── walk.go ├── yaml.go └── yaml_test.go ├── checkers ├── checker.go ├── discover │ ├── build.go │ ├── copy.go │ ├── custom_analyzer_stub │ │ ├── go.mod.embed │ │ ├── go.sum.embed │ │ └── main.go │ ├── discover.go │ ├── discover_test.go │ ├── fixtures │ │ ├── checkers │ │ │ ├── no_assert.go │ │ │ └── no_double_eq.go │ │ ├── empty │ │ │ └── .empty │ │ └── exclude │ │ │ └── no_assert.go │ ├── generate.go │ └── generate_test.go ├── docker │ ├── avoid_add.test.Dockerfile │ ├── avoid_add.yml │ ├── avoid_latest.test.Dockerfile │ ├── avoid_latest.yml │ ├── avoid_sudo.test.Dockerfile │ └── avoid_sudo.yml ├── go │ ├── cgi_import.test.go │ ├── cgi_import.yml │ ├── des_weak_crypto.test.go │ ├── des_weak_crypto.yml │ ├── fmt_print_in_prod.test.go │ ├── fmt_print_in_prod.yml │ ├── grpc_client_insecure_tls.test.go │ ├── grpc_client_insecure_tls.yml │ ├── grpc_server_insecure_tls.test.go │ ├── grpc_server_insecure_tls.yml │ ├── html_req_template_injection.test.go │ ├── html_req_template_injection.yml │ ├── http_file_server.test.go │ ├── http_file_server.yml │ ├── insecure_cookie.test.go │ ├── insecure_cookie.yml │ ├── jwt_harcoded_signing_key.test.go │ ├── jwt_harcoded_signing_key.yml │ ├── jwt_none_algorithm.test.go │ ├── jwt_none_algorithm.yml │ ├── math_rand.test.go │ ├── math_rand.yml │ ├── md5_weak_hash.test.go │ ├── md5_weak_hash.yml │ ├── missing_error_file_open.test.go │ ├── missing_error_file_open.yml │ ├── mysql_conn_raw_passwd.test.go │ ├── mysql_conn_raw_passwd.yml │ ├── net_bind_all_interfaces.test.go │ ├── net_bind_all_interfaces.yml │ ├── os_create_file_default_permission.test.go │ ├── os_create_file_default_permission.yml │ ├── postgres_config_raw_passwd.test.go │ ├── postgres_config_raw_passwd.yml │ ├── postgres_conn_raw_passwd.test.go │ ├── postgres_conn_raw_passwd.yml │ ├── pprof_endpoint_automatic_exposure.test.go │ ├── pprof_endpoint_automatic_exposure.yml │ ├── reflect_pkg.test.go │ ├── reflect_pkg.yml │ ├── samesite_cookie.test.go │ ├── samesite_cookie.yml │ ├── sha1_weak_hash.test.go │ ├── sha1_weak_hash.yml │ ├── tls_config_minver.test.go │ ├── tls_config_minver.yml │ ├── tls_insecure.test.go │ ├── tls_insecure.yml │ ├── unsafe_pkg.test.go │ └── unsafe_pkg.yml ├── java │ ├── cbc-padding-oracle.test.java │ ├── cbc-padding-oracle.yml │ ├── custom-digests.test.java │ ├── custom-digests.yml │ ├── deprecated-default-httpclient.test.java │ ├── deprecated-default-httpclient.yml │ ├── deprecated-des.test.java │ ├── deprecated-des.yml │ ├── ecb-cipher.test.java │ ├── ecb-cipher.yml │ ├── no-null-cipher.test.java │ ├── no-null-cipher.yml │ ├── rsa-no-padding.test.java │ ├── rsa-no-padding.yml │ ├── sha224-usage.test.java │ ├── sha224-usage.yml │ ├── unsafe_path_traversal.test.java │ ├── unsafe_path_traversal.yml │ ├── weak-ssl-context.test.java │ └── weak-ssl-context.yml ├── javascript │ ├── js_alert_in_prod.test.js │ ├── js_alert_in_prod.yml │ ├── js_assigned_undefined.test.js │ ├── js_assigned_undefined.yml │ ├── js_confirm_in_prod.test.js │ ├── js_confirm_in_prod.yml │ ├── js_dataflow.go │ ├── js_dataflow_test.go │ ├── js_debugger_in_prod.test.js │ ├── js_debugger_in_prod.yml │ ├── js_lazy_load_module.test.js │ ├── js_lazy_load_module.yml │ ├── js_prompt_in_prod.test.js │ ├── js_prompt_in_prod.yml │ ├── no_double_eq.go │ ├── no_exec.go │ ├── scope.go │ ├── sha1_detector.go │ ├── sql_injection.go │ ├── testdata │ │ ├── no-double-eq.test.js │ │ ├── no_exec.test.js │ │ ├── sha1_detector.test.js │ │ ├── sql_injection.test.js │ │ └── unused-import.test.js │ └── unused-import.go ├── php │ ├── dangerous_eval.test.php │ └── dangerous_eval.yml ├── python │ ├── app-run-with-bad-host.test.py │ ├── app-run-with-bad-host.yml │ ├── avoid-marksafe.test.py │ ├── avoid-marksafe.yml │ ├── avoid_assert.test.py │ ├── avoid_assert.yml │ ├── aws-lambda-sqli.go │ ├── context-autoescape-off.test.py │ ├── context-autoescape-off.yml │ ├── csrf-exempt.test.py │ ├── csrf-exempt.yml │ ├── csv-writer-injection.go │ ├── dangerous-create-exec.go │ ├── distributed-security-required-encryption.test.py │ ├── distributed-security-required-encryption.yml │ ├── django-class-custom-extends.test.py │ ├── django-class-custom-extends.yml │ ├── django-insecure-pickle-deserialize.go │ ├── django-missing-throttle-config.go │ ├── django-password-empty-string.go │ ├── django-request-data-write.go │ ├── django-request-httpresponse.go │ ├── django-sql-injection.go │ ├── django-ssrf-injection.go │ ├── empty-aes-key.test.py │ ├── empty-aes-key.yml │ ├── filter-issafe.test.py │ ├── filter-issafe.yml │ ├── flask-avoid-direct-app-run.test.py │ ├── flask-avoid-direct-app-run.yml │ ├── flask-debug-enabled.test.py │ ├── flask-debug-enabled.yml │ ├── flask-format-string-return.go │ ├── format-html-param.test.py │ ├── format-html-param.yml │ ├── globals-as-template-context.test.py │ ├── globals-as-template-context.yml │ ├── hashid-with-django-secret.test.py │ ├── hashid-with-django-secret.yml │ ├── insecure-cipher.test.py │ ├── insecure-cipher.yml │ ├── insecure-hash-sha1.test.py │ ├── insecure-hash-sha1.yml │ ├── insecure-urllib-ftp.go │ ├── insufficient-keysize.test.py │ ├── insufficient-keysize.yml │ ├── jwt-python-none-alg.test.py │ ├── jwt-python-none-alg.yml │ ├── nan-injection.go │ ├── os-system-injection.go │ ├── path-traversal-open.go │ ├── post-after-isvalid.test.py │ ├── post-after-isvalid.yml │ ├── query-set-extra.test.py │ ├── query-set-extra.yml │ ├── safe-string-extend.test.py │ ├── safe-string-extend.yml │ ├── tainted-pickle-deserialize.test.py │ ├── tainted-pickle-deserialize.yml │ ├── testdata │ │ ├── aws-lambda-sqli.test.py │ │ ├── csv-writer-injection.test.py │ │ ├── dangerous-create-exec.test.py │ │ ├── django-insecure-pickle-deserialize.test.py │ │ ├── django-missing-throttle-config.test.py │ │ ├── django-password-empty-string.test.py │ │ ├── django-request-data-write.test.py │ │ ├── django-request-httpresponse.test.py │ │ ├── django-sql-injection.test.py │ │ ├── django-ssrf-injection.test.py │ │ ├── flask-format-string-return.test.py │ │ ├── insecure-urllib-ftp.test.py │ │ ├── nan-injection.test.py │ │ ├── os-system-injection.test.py │ │ └── path-traversal-open.test.py │ ├── use-ftp-tls.test.py │ ├── use-ftp-tls.yml │ ├── weak-ssl-version.test.py │ └── weak-ssl-version.yml ├── ruby │ ├── blowfish_weak_crypto.test.rb │ ├── blowfish_weak_crypto.yml │ ├── dsa_weak_crypto.test.rb │ ├── dsa_weak_crypto.yml │ ├── eval_method.test.rb │ ├── eval_method.yml │ ├── md5_weak_hash.test.rb │ ├── md5_weak_hash.yml │ ├── rails_force_ssl.test.rb │ ├── rails_force_ssl.yml │ ├── rails_http_hardcoded_passwd.test.rb │ ├── rails_http_hardcoded_passwd.yml │ ├── rails_httponly_cookie.test.rb │ ├── rails_httponly_cookie.yml │ ├── rails_insecure_smtp.test.rb │ ├── rails_insecure_smtp.yml │ ├── rails_samesite_cookie.test.rb │ ├── rails_samesite_cookie.yml │ ├── rails_unsafe_direct_assignment.test.rb │ ├── rails_unsafe_direct_assignment.yml │ ├── rsa_weak_crypto.test.rb │ ├── rsa_weak_crypto.yml │ ├── sha1_weak_hash.test.rb │ ├── sha1_weak_hash.yml │ ├── skip_authorization.test.rb │ ├── skip_authorization.yml │ ├── ssl_no_verify.test.rb │ └── ssl_no_verify.yml └── rust │ ├── avoid_unwrap.test.rs │ └── avoid_unwrap.yml ├── cmd ├── genregistry │ └── main.go └── globstar │ └── main.go ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── GlobstarAnimation.vue │ │ ├── Layout.vue │ │ ├── components.d.ts │ │ ├── index.ts │ │ └── style.css ├── ci-cd-integration.md ├── contributing.md ├── examples │ ├── javascript.md │ └── python.md ├── guides │ ├── contributing-built-in-checkers.md │ ├── cross-file-analysis.md │ ├── scope-resolution.md │ ├── writing-go-checker.md │ └── writing-yaml-checker.md ├── index.md ├── introduction.md ├── package.json ├── pnpm-lock.yaml ├── public │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── icon │ │ ├── battery.svg │ │ ├── blocks.svg │ │ ├── fast.svg │ │ ├── oss.svg │ │ ├── star.svg │ │ └── yml.svg │ ├── img │ │ ├── globstar-promo-dark.png │ │ ├── globstar-promo-light.png │ │ ├── logo-dark.svg │ │ ├── logo-wordmark-dark.svg │ │ ├── logo-wordmark.svg │ │ ├── logo.svg │ │ └── meta.png │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── quickstart.md ├── reference │ ├── checker-go.md │ ├── checker-yaml.md │ ├── cli.md │ └── configuration.md ├── roadmap.md ├── supported-languages.md ├── tsconfig.json └── vercel.json ├── go.mod ├── go.sum ├── goreleaser.yaml ├── pkg ├── cli │ ├── cli.go │ ├── git.go │ ├── git_test.go │ ├── testdata │ │ ├── .gitignore │ │ ├── test1.txt │ │ └── test2.txt │ └── version.go └── config │ └── config.go └── util └── cmd.go /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/.github/workflows/build-and-test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/README.md -------------------------------------------------------------------------------- /analysis/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/analyzer.go -------------------------------------------------------------------------------- /analysis/analyzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/analyzer_test.go -------------------------------------------------------------------------------- /analysis/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/issue.go -------------------------------------------------------------------------------- /analysis/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/language.go -------------------------------------------------------------------------------- /analysis/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/scope.go -------------------------------------------------------------------------------- /analysis/testdata/mock-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/mock-checker.yml -------------------------------------------------------------------------------- /analysis/testdata/mock-wrong-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/mock-wrong-checker.yml -------------------------------------------------------------------------------- /analysis/testdata/node-filter-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/node-filter-checker.yml -------------------------------------------------------------------------------- /analysis/testdata/node-filter-test-checker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/node-filter-test-checker.test.js -------------------------------------------------------------------------------- /analysis/testdata/node-filter-test-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/node-filter-test-checker.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/fail/test_fail.test.js: -------------------------------------------------------------------------------- 1 | log(); 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/fail/test_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/fail/test_fail.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/fail/test_fail_again.test.js: -------------------------------------------------------------------------------- 1 | alert(); 2 | 3 | // alert in production -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/fail/test_fail_again.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/fail/test_fail_again.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/pass/yaml_test.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/pass/yaml_test.test.js -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/pass/yaml_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/pass/yaml_test.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/path_filters/malformed_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/path_filters/malformed_path.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/path_filters/malformed_path_include.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/path_filters/malformed_path_include.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/path_filters/valid_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/path_filters/valid_path.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/patterns/invalid-patterns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/patterns/invalid-patterns.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/patterns/multi-pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/patterns/multi-pattern.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/patterns/no-pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/patterns/no-pattern.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/patterns/single-multiple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/patterns/single-multiple.yml -------------------------------------------------------------------------------- /analysis/testdata/yaml_tests/patterns/wrong-pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testdata/yaml_tests/patterns/wrong-pattern.yml -------------------------------------------------------------------------------- /analysis/testrunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testrunner.go -------------------------------------------------------------------------------- /analysis/testrunner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/testrunner_test.go -------------------------------------------------------------------------------- /analysis/ts_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/ts_scope.go -------------------------------------------------------------------------------- /analysis/ts_scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/ts_scope_test.go -------------------------------------------------------------------------------- /analysis/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/walk.go -------------------------------------------------------------------------------- /analysis/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/yaml.go -------------------------------------------------------------------------------- /analysis/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/analysis/yaml_test.go -------------------------------------------------------------------------------- /checkers/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/checker.go -------------------------------------------------------------------------------- /checkers/discover/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/build.go -------------------------------------------------------------------------------- /checkers/discover/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/copy.go -------------------------------------------------------------------------------- /checkers/discover/custom_analyzer_stub/go.mod.embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/custom_analyzer_stub/go.mod.embed -------------------------------------------------------------------------------- /checkers/discover/custom_analyzer_stub/go.sum.embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/custom_analyzer_stub/go.sum.embed -------------------------------------------------------------------------------- /checkers/discover/custom_analyzer_stub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/custom_analyzer_stub/main.go -------------------------------------------------------------------------------- /checkers/discover/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/discover.go -------------------------------------------------------------------------------- /checkers/discover/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/discover_test.go -------------------------------------------------------------------------------- /checkers/discover/fixtures/checkers/no_assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/fixtures/checkers/no_assert.go -------------------------------------------------------------------------------- /checkers/discover/fixtures/checkers/no_double_eq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/fixtures/checkers/no_double_eq.go -------------------------------------------------------------------------------- /checkers/discover/fixtures/empty/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/fixtures/empty/.empty -------------------------------------------------------------------------------- /checkers/discover/fixtures/exclude/no_assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/fixtures/exclude/no_assert.go -------------------------------------------------------------------------------- /checkers/discover/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/generate.go -------------------------------------------------------------------------------- /checkers/discover/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/discover/generate_test.go -------------------------------------------------------------------------------- /checkers/docker/avoid_add.test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_add.test.Dockerfile -------------------------------------------------------------------------------- /checkers/docker/avoid_add.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_add.yml -------------------------------------------------------------------------------- /checkers/docker/avoid_latest.test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_latest.test.Dockerfile -------------------------------------------------------------------------------- /checkers/docker/avoid_latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_latest.yml -------------------------------------------------------------------------------- /checkers/docker/avoid_sudo.test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_sudo.test.Dockerfile -------------------------------------------------------------------------------- /checkers/docker/avoid_sudo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/docker/avoid_sudo.yml -------------------------------------------------------------------------------- /checkers/go/cgi_import.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/cgi_import.test.go -------------------------------------------------------------------------------- /checkers/go/cgi_import.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/cgi_import.yml -------------------------------------------------------------------------------- /checkers/go/des_weak_crypto.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/des_weak_crypto.test.go -------------------------------------------------------------------------------- /checkers/go/des_weak_crypto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/des_weak_crypto.yml -------------------------------------------------------------------------------- /checkers/go/fmt_print_in_prod.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/fmt_print_in_prod.test.go -------------------------------------------------------------------------------- /checkers/go/fmt_print_in_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/fmt_print_in_prod.yml -------------------------------------------------------------------------------- /checkers/go/grpc_client_insecure_tls.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/grpc_client_insecure_tls.test.go -------------------------------------------------------------------------------- /checkers/go/grpc_client_insecure_tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/grpc_client_insecure_tls.yml -------------------------------------------------------------------------------- /checkers/go/grpc_server_insecure_tls.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/grpc_server_insecure_tls.test.go -------------------------------------------------------------------------------- /checkers/go/grpc_server_insecure_tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/grpc_server_insecure_tls.yml -------------------------------------------------------------------------------- /checkers/go/html_req_template_injection.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/html_req_template_injection.test.go -------------------------------------------------------------------------------- /checkers/go/html_req_template_injection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/html_req_template_injection.yml -------------------------------------------------------------------------------- /checkers/go/http_file_server.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/http_file_server.test.go -------------------------------------------------------------------------------- /checkers/go/http_file_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/http_file_server.yml -------------------------------------------------------------------------------- /checkers/go/insecure_cookie.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/insecure_cookie.test.go -------------------------------------------------------------------------------- /checkers/go/insecure_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/insecure_cookie.yml -------------------------------------------------------------------------------- /checkers/go/jwt_harcoded_signing_key.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/jwt_harcoded_signing_key.test.go -------------------------------------------------------------------------------- /checkers/go/jwt_harcoded_signing_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/jwt_harcoded_signing_key.yml -------------------------------------------------------------------------------- /checkers/go/jwt_none_algorithm.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/jwt_none_algorithm.test.go -------------------------------------------------------------------------------- /checkers/go/jwt_none_algorithm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/jwt_none_algorithm.yml -------------------------------------------------------------------------------- /checkers/go/math_rand.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/math_rand.test.go -------------------------------------------------------------------------------- /checkers/go/math_rand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/math_rand.yml -------------------------------------------------------------------------------- /checkers/go/md5_weak_hash.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/md5_weak_hash.test.go -------------------------------------------------------------------------------- /checkers/go/md5_weak_hash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/md5_weak_hash.yml -------------------------------------------------------------------------------- /checkers/go/missing_error_file_open.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/missing_error_file_open.test.go -------------------------------------------------------------------------------- /checkers/go/missing_error_file_open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/missing_error_file_open.yml -------------------------------------------------------------------------------- /checkers/go/mysql_conn_raw_passwd.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/mysql_conn_raw_passwd.test.go -------------------------------------------------------------------------------- /checkers/go/mysql_conn_raw_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/mysql_conn_raw_passwd.yml -------------------------------------------------------------------------------- /checkers/go/net_bind_all_interfaces.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/net_bind_all_interfaces.test.go -------------------------------------------------------------------------------- /checkers/go/net_bind_all_interfaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/net_bind_all_interfaces.yml -------------------------------------------------------------------------------- /checkers/go/os_create_file_default_permission.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/os_create_file_default_permission.test.go -------------------------------------------------------------------------------- /checkers/go/os_create_file_default_permission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/os_create_file_default_permission.yml -------------------------------------------------------------------------------- /checkers/go/postgres_config_raw_passwd.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/postgres_config_raw_passwd.test.go -------------------------------------------------------------------------------- /checkers/go/postgres_config_raw_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/postgres_config_raw_passwd.yml -------------------------------------------------------------------------------- /checkers/go/postgres_conn_raw_passwd.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/postgres_conn_raw_passwd.test.go -------------------------------------------------------------------------------- /checkers/go/postgres_conn_raw_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/postgres_conn_raw_passwd.yml -------------------------------------------------------------------------------- /checkers/go/pprof_endpoint_automatic_exposure.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/pprof_endpoint_automatic_exposure.test.go -------------------------------------------------------------------------------- /checkers/go/pprof_endpoint_automatic_exposure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/pprof_endpoint_automatic_exposure.yml -------------------------------------------------------------------------------- /checkers/go/reflect_pkg.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/reflect_pkg.test.go -------------------------------------------------------------------------------- /checkers/go/reflect_pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/reflect_pkg.yml -------------------------------------------------------------------------------- /checkers/go/samesite_cookie.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/samesite_cookie.test.go -------------------------------------------------------------------------------- /checkers/go/samesite_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/samesite_cookie.yml -------------------------------------------------------------------------------- /checkers/go/sha1_weak_hash.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/sha1_weak_hash.test.go -------------------------------------------------------------------------------- /checkers/go/sha1_weak_hash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/sha1_weak_hash.yml -------------------------------------------------------------------------------- /checkers/go/tls_config_minver.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/tls_config_minver.test.go -------------------------------------------------------------------------------- /checkers/go/tls_config_minver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/tls_config_minver.yml -------------------------------------------------------------------------------- /checkers/go/tls_insecure.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/tls_insecure.test.go -------------------------------------------------------------------------------- /checkers/go/tls_insecure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/tls_insecure.yml -------------------------------------------------------------------------------- /checkers/go/unsafe_pkg.test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/unsafe_pkg.test.go -------------------------------------------------------------------------------- /checkers/go/unsafe_pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/go/unsafe_pkg.yml -------------------------------------------------------------------------------- /checkers/java/cbc-padding-oracle.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/cbc-padding-oracle.test.java -------------------------------------------------------------------------------- /checkers/java/cbc-padding-oracle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/cbc-padding-oracle.yml -------------------------------------------------------------------------------- /checkers/java/custom-digests.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/custom-digests.test.java -------------------------------------------------------------------------------- /checkers/java/custom-digests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/custom-digests.yml -------------------------------------------------------------------------------- /checkers/java/deprecated-default-httpclient.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/deprecated-default-httpclient.test.java -------------------------------------------------------------------------------- /checkers/java/deprecated-default-httpclient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/deprecated-default-httpclient.yml -------------------------------------------------------------------------------- /checkers/java/deprecated-des.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/deprecated-des.test.java -------------------------------------------------------------------------------- /checkers/java/deprecated-des.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/deprecated-des.yml -------------------------------------------------------------------------------- /checkers/java/ecb-cipher.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/ecb-cipher.test.java -------------------------------------------------------------------------------- /checkers/java/ecb-cipher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/ecb-cipher.yml -------------------------------------------------------------------------------- /checkers/java/no-null-cipher.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/no-null-cipher.test.java -------------------------------------------------------------------------------- /checkers/java/no-null-cipher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/no-null-cipher.yml -------------------------------------------------------------------------------- /checkers/java/rsa-no-padding.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/rsa-no-padding.test.java -------------------------------------------------------------------------------- /checkers/java/rsa-no-padding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/rsa-no-padding.yml -------------------------------------------------------------------------------- /checkers/java/sha224-usage.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/sha224-usage.test.java -------------------------------------------------------------------------------- /checkers/java/sha224-usage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/sha224-usage.yml -------------------------------------------------------------------------------- /checkers/java/unsafe_path_traversal.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/unsafe_path_traversal.test.java -------------------------------------------------------------------------------- /checkers/java/unsafe_path_traversal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/unsafe_path_traversal.yml -------------------------------------------------------------------------------- /checkers/java/weak-ssl-context.test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/weak-ssl-context.test.java -------------------------------------------------------------------------------- /checkers/java/weak-ssl-context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/java/weak-ssl-context.yml -------------------------------------------------------------------------------- /checkers/javascript/js_alert_in_prod.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_alert_in_prod.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_alert_in_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_alert_in_prod.yml -------------------------------------------------------------------------------- /checkers/javascript/js_assigned_undefined.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_assigned_undefined.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_assigned_undefined.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_assigned_undefined.yml -------------------------------------------------------------------------------- /checkers/javascript/js_confirm_in_prod.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_confirm_in_prod.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_confirm_in_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_confirm_in_prod.yml -------------------------------------------------------------------------------- /checkers/javascript/js_dataflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_dataflow.go -------------------------------------------------------------------------------- /checkers/javascript/js_dataflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_dataflow_test.go -------------------------------------------------------------------------------- /checkers/javascript/js_debugger_in_prod.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_debugger_in_prod.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_debugger_in_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_debugger_in_prod.yml -------------------------------------------------------------------------------- /checkers/javascript/js_lazy_load_module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_lazy_load_module.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_lazy_load_module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_lazy_load_module.yml -------------------------------------------------------------------------------- /checkers/javascript/js_prompt_in_prod.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_prompt_in_prod.test.js -------------------------------------------------------------------------------- /checkers/javascript/js_prompt_in_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/js_prompt_in_prod.yml -------------------------------------------------------------------------------- /checkers/javascript/no_double_eq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/no_double_eq.go -------------------------------------------------------------------------------- /checkers/javascript/no_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/no_exec.go -------------------------------------------------------------------------------- /checkers/javascript/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/scope.go -------------------------------------------------------------------------------- /checkers/javascript/sha1_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/sha1_detector.go -------------------------------------------------------------------------------- /checkers/javascript/sql_injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/sql_injection.go -------------------------------------------------------------------------------- /checkers/javascript/testdata/no-double-eq.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/testdata/no-double-eq.test.js -------------------------------------------------------------------------------- /checkers/javascript/testdata/no_exec.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/testdata/no_exec.test.js -------------------------------------------------------------------------------- /checkers/javascript/testdata/sha1_detector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/testdata/sha1_detector.test.js -------------------------------------------------------------------------------- /checkers/javascript/testdata/sql_injection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/testdata/sql_injection.test.js -------------------------------------------------------------------------------- /checkers/javascript/testdata/unused-import.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/testdata/unused-import.test.js -------------------------------------------------------------------------------- /checkers/javascript/unused-import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/javascript/unused-import.go -------------------------------------------------------------------------------- /checkers/php/dangerous_eval.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/php/dangerous_eval.test.php -------------------------------------------------------------------------------- /checkers/php/dangerous_eval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/php/dangerous_eval.yml -------------------------------------------------------------------------------- /checkers/python/app-run-with-bad-host.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/app-run-with-bad-host.test.py -------------------------------------------------------------------------------- /checkers/python/app-run-with-bad-host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/app-run-with-bad-host.yml -------------------------------------------------------------------------------- /checkers/python/avoid-marksafe.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/avoid-marksafe.test.py -------------------------------------------------------------------------------- /checkers/python/avoid-marksafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/avoid-marksafe.yml -------------------------------------------------------------------------------- /checkers/python/avoid_assert.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/avoid_assert.test.py -------------------------------------------------------------------------------- /checkers/python/avoid_assert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/avoid_assert.yml -------------------------------------------------------------------------------- /checkers/python/aws-lambda-sqli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/aws-lambda-sqli.go -------------------------------------------------------------------------------- /checkers/python/context-autoescape-off.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/context-autoescape-off.test.py -------------------------------------------------------------------------------- /checkers/python/context-autoescape-off.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/context-autoescape-off.yml -------------------------------------------------------------------------------- /checkers/python/csrf-exempt.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/csrf-exempt.test.py -------------------------------------------------------------------------------- /checkers/python/csrf-exempt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/csrf-exempt.yml -------------------------------------------------------------------------------- /checkers/python/csv-writer-injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/csv-writer-injection.go -------------------------------------------------------------------------------- /checkers/python/dangerous-create-exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/dangerous-create-exec.go -------------------------------------------------------------------------------- /checkers/python/distributed-security-required-encryption.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/distributed-security-required-encryption.test.py -------------------------------------------------------------------------------- /checkers/python/distributed-security-required-encryption.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/distributed-security-required-encryption.yml -------------------------------------------------------------------------------- /checkers/python/django-class-custom-extends.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-class-custom-extends.test.py -------------------------------------------------------------------------------- /checkers/python/django-class-custom-extends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-class-custom-extends.yml -------------------------------------------------------------------------------- /checkers/python/django-insecure-pickle-deserialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-insecure-pickle-deserialize.go -------------------------------------------------------------------------------- /checkers/python/django-missing-throttle-config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-missing-throttle-config.go -------------------------------------------------------------------------------- /checkers/python/django-password-empty-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-password-empty-string.go -------------------------------------------------------------------------------- /checkers/python/django-request-data-write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-request-data-write.go -------------------------------------------------------------------------------- /checkers/python/django-request-httpresponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-request-httpresponse.go -------------------------------------------------------------------------------- /checkers/python/django-sql-injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-sql-injection.go -------------------------------------------------------------------------------- /checkers/python/django-ssrf-injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/django-ssrf-injection.go -------------------------------------------------------------------------------- /checkers/python/empty-aes-key.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/empty-aes-key.test.py -------------------------------------------------------------------------------- /checkers/python/empty-aes-key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/empty-aes-key.yml -------------------------------------------------------------------------------- /checkers/python/filter-issafe.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/filter-issafe.test.py -------------------------------------------------------------------------------- /checkers/python/filter-issafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/filter-issafe.yml -------------------------------------------------------------------------------- /checkers/python/flask-avoid-direct-app-run.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/flask-avoid-direct-app-run.test.py -------------------------------------------------------------------------------- /checkers/python/flask-avoid-direct-app-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/flask-avoid-direct-app-run.yml -------------------------------------------------------------------------------- /checkers/python/flask-debug-enabled.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/flask-debug-enabled.test.py -------------------------------------------------------------------------------- /checkers/python/flask-debug-enabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/flask-debug-enabled.yml -------------------------------------------------------------------------------- /checkers/python/flask-format-string-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/flask-format-string-return.go -------------------------------------------------------------------------------- /checkers/python/format-html-param.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/format-html-param.test.py -------------------------------------------------------------------------------- /checkers/python/format-html-param.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/format-html-param.yml -------------------------------------------------------------------------------- /checkers/python/globals-as-template-context.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/globals-as-template-context.test.py -------------------------------------------------------------------------------- /checkers/python/globals-as-template-context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/globals-as-template-context.yml -------------------------------------------------------------------------------- /checkers/python/hashid-with-django-secret.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/hashid-with-django-secret.test.py -------------------------------------------------------------------------------- /checkers/python/hashid-with-django-secret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/hashid-with-django-secret.yml -------------------------------------------------------------------------------- /checkers/python/insecure-cipher.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insecure-cipher.test.py -------------------------------------------------------------------------------- /checkers/python/insecure-cipher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insecure-cipher.yml -------------------------------------------------------------------------------- /checkers/python/insecure-hash-sha1.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insecure-hash-sha1.test.py -------------------------------------------------------------------------------- /checkers/python/insecure-hash-sha1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insecure-hash-sha1.yml -------------------------------------------------------------------------------- /checkers/python/insecure-urllib-ftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insecure-urllib-ftp.go -------------------------------------------------------------------------------- /checkers/python/insufficient-keysize.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insufficient-keysize.test.py -------------------------------------------------------------------------------- /checkers/python/insufficient-keysize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/insufficient-keysize.yml -------------------------------------------------------------------------------- /checkers/python/jwt-python-none-alg.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/jwt-python-none-alg.test.py -------------------------------------------------------------------------------- /checkers/python/jwt-python-none-alg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/jwt-python-none-alg.yml -------------------------------------------------------------------------------- /checkers/python/nan-injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/nan-injection.go -------------------------------------------------------------------------------- /checkers/python/os-system-injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/os-system-injection.go -------------------------------------------------------------------------------- /checkers/python/path-traversal-open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/path-traversal-open.go -------------------------------------------------------------------------------- /checkers/python/post-after-isvalid.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/post-after-isvalid.test.py -------------------------------------------------------------------------------- /checkers/python/post-after-isvalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/post-after-isvalid.yml -------------------------------------------------------------------------------- /checkers/python/query-set-extra.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/query-set-extra.test.py -------------------------------------------------------------------------------- /checkers/python/query-set-extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/query-set-extra.yml -------------------------------------------------------------------------------- /checkers/python/safe-string-extend.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/safe-string-extend.test.py -------------------------------------------------------------------------------- /checkers/python/safe-string-extend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/safe-string-extend.yml -------------------------------------------------------------------------------- /checkers/python/tainted-pickle-deserialize.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/tainted-pickle-deserialize.test.py -------------------------------------------------------------------------------- /checkers/python/tainted-pickle-deserialize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/tainted-pickle-deserialize.yml -------------------------------------------------------------------------------- /checkers/python/testdata/aws-lambda-sqli.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/aws-lambda-sqli.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/csv-writer-injection.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/csv-writer-injection.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/dangerous-create-exec.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/dangerous-create-exec.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-insecure-pickle-deserialize.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-insecure-pickle-deserialize.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-missing-throttle-config.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-missing-throttle-config.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-password-empty-string.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-password-empty-string.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-request-data-write.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-request-data-write.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-request-httpresponse.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-request-httpresponse.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-sql-injection.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-sql-injection.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/django-ssrf-injection.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/django-ssrf-injection.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/flask-format-string-return.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/flask-format-string-return.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/insecure-urllib-ftp.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/insecure-urllib-ftp.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/nan-injection.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/nan-injection.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/os-system-injection.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/os-system-injection.test.py -------------------------------------------------------------------------------- /checkers/python/testdata/path-traversal-open.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/testdata/path-traversal-open.test.py -------------------------------------------------------------------------------- /checkers/python/use-ftp-tls.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/use-ftp-tls.test.py -------------------------------------------------------------------------------- /checkers/python/use-ftp-tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/use-ftp-tls.yml -------------------------------------------------------------------------------- /checkers/python/weak-ssl-version.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/weak-ssl-version.test.py -------------------------------------------------------------------------------- /checkers/python/weak-ssl-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/python/weak-ssl-version.yml -------------------------------------------------------------------------------- /checkers/ruby/blowfish_weak_crypto.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/blowfish_weak_crypto.test.rb -------------------------------------------------------------------------------- /checkers/ruby/blowfish_weak_crypto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/blowfish_weak_crypto.yml -------------------------------------------------------------------------------- /checkers/ruby/dsa_weak_crypto.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/dsa_weak_crypto.test.rb -------------------------------------------------------------------------------- /checkers/ruby/dsa_weak_crypto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/dsa_weak_crypto.yml -------------------------------------------------------------------------------- /checkers/ruby/eval_method.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/eval_method.test.rb -------------------------------------------------------------------------------- /checkers/ruby/eval_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/eval_method.yml -------------------------------------------------------------------------------- /checkers/ruby/md5_weak_hash.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/md5_weak_hash.test.rb -------------------------------------------------------------------------------- /checkers/ruby/md5_weak_hash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/md5_weak_hash.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_force_ssl.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_force_ssl.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_force_ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_force_ssl.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_http_hardcoded_passwd.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_http_hardcoded_passwd.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_http_hardcoded_passwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_http_hardcoded_passwd.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_httponly_cookie.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_httponly_cookie.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_httponly_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_httponly_cookie.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_insecure_smtp.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_insecure_smtp.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_insecure_smtp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_insecure_smtp.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_samesite_cookie.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_samesite_cookie.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_samesite_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_samesite_cookie.yml -------------------------------------------------------------------------------- /checkers/ruby/rails_unsafe_direct_assignment.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_unsafe_direct_assignment.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rails_unsafe_direct_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rails_unsafe_direct_assignment.yml -------------------------------------------------------------------------------- /checkers/ruby/rsa_weak_crypto.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rsa_weak_crypto.test.rb -------------------------------------------------------------------------------- /checkers/ruby/rsa_weak_crypto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/rsa_weak_crypto.yml -------------------------------------------------------------------------------- /checkers/ruby/sha1_weak_hash.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/sha1_weak_hash.test.rb -------------------------------------------------------------------------------- /checkers/ruby/sha1_weak_hash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/sha1_weak_hash.yml -------------------------------------------------------------------------------- /checkers/ruby/skip_authorization.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/skip_authorization.test.rb -------------------------------------------------------------------------------- /checkers/ruby/skip_authorization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/skip_authorization.yml -------------------------------------------------------------------------------- /checkers/ruby/ssl_no_verify.test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/ssl_no_verify.test.rb -------------------------------------------------------------------------------- /checkers/ruby/ssl_no_verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/ruby/ssl_no_verify.yml -------------------------------------------------------------------------------- /checkers/rust/avoid_unwrap.test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/rust/avoid_unwrap.test.rs -------------------------------------------------------------------------------- /checkers/rust/avoid_unwrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/checkers/rust/avoid_unwrap.yml -------------------------------------------------------------------------------- /cmd/genregistry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/cmd/genregistry/main.go -------------------------------------------------------------------------------- /cmd/globstar/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/cmd/globstar/main.go -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/GlobstarAnimation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/theme/GlobstarAnimation.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/theme/Layout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/theme/components.d.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/ci-cd-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/ci-cd-integration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/examples/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/examples/javascript.md -------------------------------------------------------------------------------- /docs/examples/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/examples/python.md -------------------------------------------------------------------------------- /docs/guides/contributing-built-in-checkers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/guides/contributing-built-in-checkers.md -------------------------------------------------------------------------------- /docs/guides/cross-file-analysis.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/scope-resolution.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/writing-go-checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/guides/writing-go-checker.md -------------------------------------------------------------------------------- /docs/guides/writing-yaml-checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/guides/writing-yaml-checker.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/icon/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/battery.svg -------------------------------------------------------------------------------- /docs/public/icon/blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/blocks.svg -------------------------------------------------------------------------------- /docs/public/icon/fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/fast.svg -------------------------------------------------------------------------------- /docs/public/icon/oss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/oss.svg -------------------------------------------------------------------------------- /docs/public/icon/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/star.svg -------------------------------------------------------------------------------- /docs/public/icon/yml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/icon/yml.svg -------------------------------------------------------------------------------- /docs/public/img/globstar-promo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/globstar-promo-dark.png -------------------------------------------------------------------------------- /docs/public/img/globstar-promo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/globstar-promo-light.png -------------------------------------------------------------------------------- /docs/public/img/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/logo-dark.svg -------------------------------------------------------------------------------- /docs/public/img/logo-wordmark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/logo-wordmark-dark.svg -------------------------------------------------------------------------------- /docs/public/img/logo-wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/logo-wordmark.svg -------------------------------------------------------------------------------- /docs/public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/logo.svg -------------------------------------------------------------------------------- /docs/public/img/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/img/meta.png -------------------------------------------------------------------------------- /docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/site.webmanifest -------------------------------------------------------------------------------- /docs/public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /docs/public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/reference/checker-go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/reference/checker-go.md -------------------------------------------------------------------------------- /docs/reference/checker-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/reference/checker-yaml.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/reference/configuration.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/supported-languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/supported-languages.md -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/docs/vercel.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/go.sum -------------------------------------------------------------------------------- /goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/goreleaser.yaml -------------------------------------------------------------------------------- /pkg/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/pkg/cli/cli.go -------------------------------------------------------------------------------- /pkg/cli/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/pkg/cli/git.go -------------------------------------------------------------------------------- /pkg/cli/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/pkg/cli/git_test.go -------------------------------------------------------------------------------- /pkg/cli/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | .git -------------------------------------------------------------------------------- /pkg/cli/testdata/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/cli/testdata/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/pkg/cli/version.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /util/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/globstar/HEAD/util/cmd.go --------------------------------------------------------------------------------