@contrast/agent 4.3.1-0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +10 -10
- package/README.md +86 -57
- package/agent-loader.js +14 -0
- package/bin/VERSION +1 -0
- package/bin/linux/contrast-service +0 -0
- package/bin/mac/contrast-service +0 -0
- package/bin/windows/contrast-service.exe +0 -0
- package/bootstrap.js +14 -0
- package/cli-rewriter.js +14 -0
- package/cli.js +14 -0
- package/esm.mjs +14 -0
- package/lib/agent-emitter.js +14 -0
- package/lib/agent.js +14 -0
- package/lib/app-info.js +14 -0
- package/lib/assess/deadzones/index.js +14 -0
- package/lib/assess/deadzones/rewrite.js +14 -0
- package/lib/assess/express/index.js +14 -0
- package/lib/assess/express/route-coverage.js +14 -0
- package/lib/assess/express/sinks/index.js +14 -0
- package/lib/assess/express/sinks/xss.js +14 -0
- package/lib/assess/express/sources.js +14 -0
- package/lib/assess/fastify/index.js +14 -0
- package/lib/assess/fastify/route-coverage.js +14 -0
- package/lib/assess/fastify/sinks/index.js +14 -0
- package/lib/assess/fastify/sinks/response-scanning.js +14 -0
- package/lib/assess/fastify/sinks/unvalidated-redirect.js +14 -0
- package/lib/assess/fastify/sinks/xss.js +14 -0
- package/lib/assess/fastify/sources.js +14 -0
- package/lib/assess/hapi/index.js +14 -0
- package/lib/assess/hapi/route-coverage.js +17 -3
- package/lib/assess/hapi/sinks/index.js +14 -0
- package/lib/assess/hapi/sinks/response-scanning.js +14 -0
- package/lib/assess/hapi/sinks/session.js +14 -0
- package/lib/assess/hapi/sinks/unvalidated-redirect.js +14 -0
- package/lib/assess/hapi/sinks/xss.js +14 -0
- package/lib/assess/hapi/sources.js +14 -0
- package/lib/assess/index.js +14 -0
- package/lib/assess/koa/index.js +14 -0
- package/lib/assess/koa/route-coverage.js +14 -0
- package/lib/assess/koa/sinks/index.js +14 -0
- package/lib/assess/koa/sinks/response-scanning.js +14 -0
- package/lib/assess/koa/sinks/unvalidated-redirect.js +14 -0
- package/lib/assess/koa/sinks/xss.js +14 -0
- package/lib/assess/koa/sources.js +14 -0
- package/lib/assess/loopback4/index.js +14 -0
- package/lib/assess/loopback4/route-coverage.js +14 -0
- package/lib/assess/loopback4/sinks/index.js +14 -0
- package/lib/assess/loopback4/sinks/response-scanning.js +14 -0
- package/lib/assess/loopback4/sinks/xss.js +14 -0
- package/lib/assess/loopback4/sources.js +14 -0
- package/lib/assess/membrane/debraner.js +14 -0
- package/lib/assess/membrane/deserialization-membrane.js +14 -0
- package/lib/assess/membrane/index.js +16 -8
- package/lib/assess/membrane/source-membrane.js +17 -4
- package/lib/assess/models/base-event.js +16 -2
- package/lib/assess/models/call-context.js +14 -3
- package/lib/assess/models/index.js +14 -0
- package/lib/assess/models/propagation-event.js +14 -0
- package/lib/assess/models/signature.js +14 -0
- package/lib/assess/models/sink-event.js +14 -0
- package/lib/assess/models/source-event.js +14 -0
- package/lib/assess/models/tag-range/index.js +20 -16
- package/lib/assess/models/tag-range/relationships.js +14 -0
- package/lib/assess/models/tag-range/util.js +14 -0
- package/lib/assess/policy/index.js +14 -0
- package/lib/assess/policy/init.js +14 -0
- package/lib/assess/policy/signatures.json +95 -0
- package/lib/assess/policy/util.js +23 -2
- package/lib/assess/propagators/JSON/parse.js +14 -0
- package/lib/assess/propagators/JSON/stringify.js +14 -0
- package/lib/assess/propagators/ajv/conditionals.js +14 -0
- package/lib/assess/propagators/ajv/evaluator-shim.js +14 -0
- package/lib/assess/propagators/ajv/index.js +14 -0
- package/lib/assess/propagators/ajv/json-schema-type-evaluators.js +14 -0
- package/lib/assess/propagators/ajv/object-walk.js +14 -0
- package/lib/assess/propagators/ajv/refs.js +14 -0
- package/lib/assess/propagators/ajv/schema-context.js +14 -0
- package/lib/assess/propagators/array-prototype-join.js +14 -0
- package/lib/assess/propagators/common.js +14 -0
- package/lib/assess/propagators/ejs-template-generate-source.js +14 -0
- package/lib/assess/propagators/handlebars-compile.js +14 -0
- package/lib/assess/propagators/handlebars-escape-expresssion.js +14 -0
- package/lib/assess/propagators/index.js +14 -0
- package/lib/assess/propagators/joi/boolean.js +14 -0
- package/lib/assess/propagators/joi/expression.js +14 -0
- package/lib/assess/propagators/joi/index.js +14 -0
- package/lib/assess/propagators/joi/number.js +14 -0
- package/lib/assess/propagators/joi/string-base.js +14 -0
- package/lib/assess/propagators/joi/string-schema.js +14 -0
- package/lib/assess/propagators/joi/values.js +14 -0
- package/lib/assess/propagators/manager.js +31 -3
- package/lib/assess/propagators/object.js +14 -0
- package/lib/assess/propagators/path/basename.js +14 -0
- package/lib/assess/propagators/path/common.js +47 -13
- package/lib/assess/propagators/path/dirname.js +14 -0
- package/lib/assess/propagators/path/extname.js +14 -0
- package/lib/assess/propagators/path/format.js +14 -0
- package/lib/assess/propagators/path/join.js +14 -0
- package/lib/assess/propagators/path/normalize.js +20 -1
- package/lib/assess/propagators/path/parse.js +14 -0
- package/lib/assess/propagators/path/relative.js +14 -0
- package/lib/assess/propagators/path/resolve.js +14 -0
- package/lib/assess/propagators/path/to-namespaced-path.js +14 -0
- package/lib/assess/propagators/pug-compile.js +14 -0
- package/lib/assess/propagators/querystring/escape.js +14 -0
- package/lib/assess/propagators/querystring/parse.js +14 -0
- package/lib/assess/propagators/querystring/stringify.js +14 -0
- package/lib/assess/propagators/querystring/unescape.js +14 -0
- package/lib/assess/propagators/querystring/utils.js +14 -0
- package/lib/assess/propagators/sequelize/sql-string-escape.js +14 -0
- package/lib/assess/propagators/sequelize/sql-string-format-named-parameters.js +14 -0
- package/lib/assess/propagators/sequelize/sql-string-format.js +14 -0
- package/lib/assess/propagators/sequelize/utils.js +14 -0
- package/lib/assess/propagators/string-prototype-replace.js +14 -0
- package/lib/assess/propagators/string-prototype-split.js +14 -0
- package/lib/assess/propagators/string-prototype-trim.js +14 -0
- package/lib/assess/propagators/string.js +14 -0
- package/lib/assess/propagators/templates.js +14 -0
- package/lib/assess/propagators/url/url-prototype-parse.js +14 -0
- package/lib/assess/propagators/url/url-url.js +14 -0
- package/lib/assess/propagators/url/utils.js +14 -0
- package/lib/assess/propagators/util/format.js +14 -0
- package/lib/assess/propagators/utils.js +14 -0
- package/lib/assess/propagators/v8/init-hooks.js +14 -0
- package/lib/assess/propagators/validator/init-hooks.js +14 -0
- package/lib/assess/propagators/validator/validator-methods.js +14 -0
- package/lib/assess/response-scanning/app-activity.js +14 -0
- package/lib/assess/response-scanning/autocomplete-missing.js +14 -2
- package/lib/assess/response-scanning/cache-controls-missing.js +14 -0
- package/lib/assess/response-scanning/clickjacking-control-missing.js +14 -0
- package/lib/assess/response-scanning/common.js +14 -0
- package/lib/assess/response-scanning/cookies/common.js +14 -0
- package/lib/assess/response-scanning/cookies/events.js +14 -0
- package/lib/assess/response-scanning/cookies/httponly.js +14 -0
- package/lib/assess/response-scanning/cookies/secure-flag-missing.js +14 -0
- package/lib/assess/response-scanning/headers/csp-header-insecure.js +14 -0
- package/lib/assess/response-scanning/headers/csp-header-missing.js +14 -0
- package/lib/assess/response-scanning/headers/csp-utils.js +14 -0
- package/lib/assess/response-scanning/headers/hsts-header-missing.js +14 -0
- package/lib/assess/response-scanning/headers/powered-by.js +14 -0
- package/lib/assess/response-scanning/headers/xcontenttype-header-missing.js +14 -0
- package/lib/assess/response-scanning/headers/xxssprotection-header-disabled.js +14 -0
- package/lib/assess/response-scanning/parameter-pollution.js +14 -2
- package/lib/assess/response-scanning/parseable-response-emitter.js +14 -0
- package/lib/assess/restify/index.js +14 -0
- package/lib/assess/restify/route-coverage.js +14 -0
- package/lib/assess/restify/session.js +14 -0
- package/lib/assess/restify/sinks/index.js +14 -0
- package/lib/assess/restify/sinks/response-scanning.js +14 -0
- package/lib/assess/restify/sinks/unvalidated-redirect.js +14 -0
- package/lib/assess/restify/sinks/xss.js +14 -0
- package/lib/assess/restify/sources.js +14 -0
- package/lib/assess/sinks/common.js +14 -0
- package/lib/assess/sinks/dynamo.js +14 -0
- package/lib/assess/sinks/hapi-16-xss.js +14 -0
- package/lib/assess/sinks/index.js +14 -0
- package/lib/assess/sinks/libxmljs-xxe.js +14 -0
- package/lib/assess/sinks/mongodb.js +25 -7
- package/lib/assess/sinks/ssrf-url.js +14 -0
- package/lib/assess/sources/formidable.js +14 -0
- package/lib/assess/sources/index.js +14 -0
- package/lib/assess/static/hardcoded.js +14 -0
- package/lib/assess/technologies/index.js +14 -0
- package/lib/assess/utils.js +14 -0
- package/lib/cli-rewriter/index.js +14 -0
- package/lib/constants.js +14 -0
- package/lib/contrast.js +18 -5
- package/lib/core/arch-components/dynamodb.js +14 -0
- package/lib/core/arch-components/index.js +14 -0
- package/lib/core/arch-components/mongodb.js +14 -0
- package/lib/core/arch-components/mysql.js +14 -0
- package/lib/core/arch-components/postgres.js +14 -0
- package/lib/core/arch-components/sqlite3.js +14 -0
- package/lib/core/async-storage/context.js +14 -0
- package/lib/core/async-storage/hooks/bluebird.js +34 -0
- package/lib/core/async-storage/hooks/mongodb-core.js +14 -0
- package/lib/core/async-storage/hooks/mysql.js +14 -0
- package/lib/core/async-storage/hooks/redis.js +14 -0
- package/lib/core/async-storage/hooks/utils.js +14 -0
- package/lib/core/async-storage/index.js +14 -0
- package/lib/core/async-storage/scopes/index.js +14 -0
- package/lib/core/common/formidable.js +14 -0
- package/lib/core/common/index.js +14 -0
- package/lib/core/config/options.js +14 -0
- package/lib/core/config/util.js +14 -0
- package/lib/core/exclusions/exclusion-factory.js +14 -0
- package/lib/core/exclusions/exclusion.js +14 -0
- package/lib/core/exclusions/input.js +14 -0
- package/lib/core/exclusions/url.js +14 -0
- package/lib/core/express/index.js +14 -0
- package/lib/core/express/utils.js +15 -1
- package/lib/core/fastify/index.js +14 -0
- package/lib/core/fastify/utils.js +14 -0
- package/lib/core/hapi/index.js +14 -0
- package/lib/core/hapi/utils.js +14 -0
- package/lib/core/index.js +14 -0
- package/lib/core/koa/index.js +14 -0
- package/lib/core/koa/utils.js +14 -0
- package/lib/core/logger/daily-rotate-file.js +14 -0
- package/lib/core/logger/dataflow-monitor.js +14 -0
- package/lib/core/logger/debug-logger.js +29 -17
- package/lib/core/logger/index.js +14 -0
- package/lib/core/logger/perf-logger.js +14 -0
- package/lib/core/logger/umbrella-logger.js +14 -0
- package/lib/core/loopback4/index.js +14 -0
- package/lib/core/metrics/index.js +14 -0
- package/lib/core/restify/index.js +14 -0
- package/lib/core/restify/utils.js +14 -0
- package/lib/core/rewrite/assignment-expression.js +14 -0
- package/lib/core/rewrite/binary-expression.js +14 -0
- package/lib/core/rewrite/call-expression.js +14 -0
- package/lib/core/rewrite/callees.js +14 -0
- package/lib/core/rewrite/catch-clause.js +14 -0
- package/lib/core/rewrite/function-wrap.js +14 -0
- package/lib/core/rewrite/index.js +14 -0
- package/lib/core/rewrite/injections.js +14 -0
- package/lib/core/rewrite/is-contrast-method.js +14 -0
- package/lib/core/rewrite/log.js +14 -0
- package/lib/core/rewrite/member-expression.js +14 -0
- package/lib/core/rewrite/object-property.js +14 -0
- package/lib/core/rewrite/prepend-globals.js +14 -0
- package/lib/core/rewrite/rewrite-log.js +14 -0
- package/lib/core/rewrite/switch-statement.js +14 -0
- package/lib/core/rewrite/template-literal.js +14 -0
- package/lib/core/stacktrace.js +15 -3
- package/lib/coverage.js +14 -0
- package/lib/feature-set.js +16 -1
- package/lib/generator-function.js +14 -0
- package/lib/hooks/array.js +14 -0
- package/lib/hooks/cluster.js +14 -0
- package/lib/hooks/dataflow-monitor.js +14 -0
- package/lib/hooks/encoding.js +15 -1
- package/lib/hooks/express-fileupload.js +14 -0
- package/lib/hooks/express-session.js +14 -0
- package/lib/hooks/fn-to-string.js +14 -0
- package/lib/hooks/frameworks/base.js +14 -0
- package/lib/hooks/frameworks/common.js +14 -0
- package/lib/hooks/frameworks/hapi16.js +14 -0
- package/lib/hooks/frameworks/http.js +14 -0
- package/lib/hooks/frameworks/https.js +14 -0
- package/lib/hooks/frameworks/index.js +14 -0
- package/lib/hooks/hapi-16-reply.js +14 -0
- package/lib/hooks/hapi-16-session.js +14 -0
- package/lib/hooks/http.js +14 -0
- package/lib/hooks/module/extensions.js +14 -0
- package/lib/hooks/module/helpers.js +14 -0
- package/lib/hooks/module/index.js +14 -0
- package/lib/hooks/newrelic.js +14 -0
- package/lib/hooks/object-is.js +14 -0
- package/lib/hooks/object-to-primitive.js +14 -0
- package/lib/hooks/patcher.js +28 -24
- package/lib/hooks/require.js +14 -0
- package/lib/hooks/stealthy-require.js +14 -0
- package/lib/instrumentation.js +14 -0
- package/lib/libraries.js +21 -3
- package/lib/library-usage.js +14 -0
- package/lib/list-installed.js +14 -0
- package/lib/protect/analysis/aho-corasick.js +27 -30
- package/lib/protect/analysis/dfsa-analyzer.js +14 -0
- package/lib/protect/errors/handler.js +14 -0
- package/lib/protect/errors/security-exception.js +14 -0
- package/lib/protect/express/index.js +14 -0
- package/lib/protect/express/sinks.js +14 -0
- package/lib/protect/express/sources.js +14 -0
- package/lib/protect/fastify/index.js +14 -0
- package/lib/protect/fastify/sinks.js +14 -0
- package/lib/protect/fastify/sources.js +14 -0
- package/lib/protect/hapi/error-handler.js +14 -0
- package/lib/protect/hapi/index.js +14 -0
- package/lib/protect/hapi/sinks.js +14 -0
- package/lib/protect/hapi/sources.js +14 -0
- package/lib/protect/index.js +14 -0
- package/lib/protect/input-analysis.js +14 -0
- package/lib/protect/koa/index.js +14 -0
- package/lib/protect/koa/sinks.js +14 -0
- package/lib/protect/koa/sources.js +14 -0
- package/lib/protect/listeners.js +14 -0
- package/lib/protect/loopback4/index.js +14 -0
- package/lib/protect/loopback4/sources.js +14 -0
- package/lib/protect/models/application-context.js +14 -0
- package/lib/protect/models/sink-event.js +14 -0
- package/lib/protect/models/source-event.js +14 -0
- package/lib/protect/restify/index.js +14 -0
- package/lib/protect/restify/sinks.js +14 -0
- package/lib/protect/restify/sources.js +14 -0
- package/lib/protect/rules/assessment.js +14 -0
- package/lib/protect/rules/attack-patterns.js +14 -0
- package/lib/protect/rules/base-scanner/index.js +14 -0
- package/lib/protect/rules/base-scanner/java-script-scanner.js +14 -0
- package/lib/protect/rules/base-scanner/postgresqlscanner.js +14 -0
- package/lib/protect/rules/base-scanner/scan-state.js +14 -0
- package/lib/protect/rules/base-scanner/substring-finder.js +14 -0
- package/lib/protect/rules/base-scanner/token-sequence.js +14 -0
- package/lib/protect/rules/bot-blocker/bot-blocker-rule.js +14 -0
- package/lib/protect/rules/bot-blocker/index.js +14 -0
- package/lib/protect/rules/cmd-injection/cmdinjection-rule.js +14 -0
- package/lib/protect/rules/cmd-injection-command-backdoors/backdoor-detector.js +17 -3
- package/lib/protect/rules/cmd-injection-command-backdoors/cmd-injection-command-backdoors-rule.js +14 -0
- package/lib/protect/rules/cmd-injection-semantic-chained-commands/chained-command-scanner.js +14 -0
- package/lib/protect/rules/cmd-injection-semantic-chained-commands/cmd-injection-semantic-chained-commands-rule.js +14 -0
- package/lib/protect/rules/cmd-injection-semantic-dangerous-paths/cmd-injection-semantic-dangerous-paths-rule.js +14 -0
- package/lib/protect/rules/cmd-injection-semantic-dangerous-paths/dangerous-paths-scanner.js +14 -0
- package/lib/protect/rules/common.js +14 -0
- package/lib/protect/rules/index.js +14 -0
- package/lib/protect/rules/ip-denylist/ip-denylist-rule.js +14 -0
- package/lib/protect/rules/method-tampering/evaluator.js +14 -0
- package/lib/protect/rules/method-tampering/method-tampering-rule.js +14 -0
- package/lib/protect/rules/nosqli/no-sql-injection-rule.js +14 -0
- package/lib/protect/rules/nosqli/nosql-scanner/index.js +14 -0
- package/lib/protect/rules/nosqli/nosql-scanner/mongodbscanner.js +14 -0
- package/lib/protect/rules/path-traversal/path-traversal-rule.js +14 -0
- package/lib/protect/rules/rule-factory.js +14 -0
- package/lib/protect/rules/signatures/cmd-injection/custom-searchers/chained-command-searcher.js +14 -0
- package/lib/protect/rules/signatures/cmd-injection/custom-searchers/index.js +14 -0
- package/lib/protect/rules/signatures/cmd-injection/index.js +14 -0
- package/lib/protect/rules/signatures/evaluator.js +14 -0
- package/lib/protect/rules/signatures/index.js +14 -0
- package/lib/protect/rules/signatures/nosql-injection/custom-searchers/index.js +14 -0
- package/lib/protect/rules/signatures/nosql-injection/custom-searchers/nosql-comment-searcher.js +14 -0
- package/lib/protect/rules/signatures/nosql-injection/custom-searchers/simple-or-searcher.js +14 -0
- package/lib/protect/rules/signatures/nosql-injection/index.js +14 -0
- package/lib/protect/rules/signatures/path-traversal/index.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/behavior-url-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/function-definition-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/immediate-function-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/index.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/link-and-src-target-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/location-set-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/map-access-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/native-function-execution-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/no-alnum-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/redefined-function-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/style-url-injection-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/custom-searchers/variable-assignment-searcher.js +14 -0
- package/lib/protect/rules/signatures/reflected-xss/helpers/function-call.js +15 -1
- package/lib/protect/rules/signatures/reflected-xss/index.js +14 -0
- package/lib/protect/rules/signatures/signature.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/if-else-drop-searcher.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/index.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/simple-or-searcher.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/sql-comment-searcher.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/time-function-searcher.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/custom-searchers/tsql-exec-searcher.js +14 -0
- package/lib/protect/rules/signatures/sql-injection/index.js +14 -0
- package/lib/protect/rules/signatures/ssjs-injection/index.js +14 -0
- package/lib/protect/rules/signatures/unsafe-file-upload/index.js +14 -0
- package/lib/protect/rules/signatures/untrusted-deserialization/index.js +14 -0
- package/lib/protect/rules/sqli/generic-complicated.js +14 -0
- package/lib/protect/rules/sqli/sql-injection-rule.js +14 -0
- package/lib/protect/rules/sqli/sql-scanner/index.js +14 -0
- package/lib/protect/rules/sqli/sql-scanner/mysql-scanner.js +14 -0
- package/lib/protect/rules/ssjs-injection/evaluator.js +14 -0
- package/lib/protect/rules/ssjs-injection/ssjsinjection-rule.js +14 -0
- package/lib/protect/rules/unsafe-file-upload/unsafe-file-upload-rule.js +14 -0
- package/lib/protect/rules/untrusted-deserialization/untrusted-deserialization-rule.js +14 -0
- package/lib/protect/rules/virtual-patch/index.js +14 -0
- package/lib/protect/rules/virtual-patch/utils.js +14 -0
- package/lib/protect/rules/virtual-patch/virtual-patch-rule.js +14 -0
- package/lib/protect/rules/xss/helpers/function-call.js +15 -1
- package/lib/protect/rules/xss/reflected-xss-rule.js +14 -0
- package/lib/protect/rules/xxe/xxerule.js +14 -0
- package/lib/protect/sample-aggregator.js +14 -0
- package/lib/protect/samples.js +14 -0
- package/lib/protect/service.js +14 -0
- package/lib/protect/sinks/child-process.js +14 -0
- package/lib/protect/sinks/eval.js +14 -0
- package/lib/protect/sinks/fs.js +14 -0
- package/lib/protect/sinks/function.js +14 -0
- package/lib/protect/sinks/index.js +14 -0
- package/lib/protect/sinks/libxmljs.js +14 -0
- package/lib/protect/sinks/mongodb.js +14 -0
- package/lib/protect/sinks/mysql.js +14 -0
- package/lib/protect/sinks/node-serialize.js +14 -0
- package/lib/protect/sinks/postgres.js +14 -0
- package/lib/protect/sinks/sequelize.js +14 -0
- package/lib/protect/sinks/sqlite3.js +14 -0
- package/lib/protect/sinks/vm.js +14 -0
- package/lib/protect/sources/busboy.js +14 -0
- package/lib/protect/sources/formidable.js +14 -0
- package/lib/protect/sources/index.js +14 -0
- package/lib/protect/validators/authorization.js +14 -0
- package/lib/protect/validators/common.js +14 -0
- package/lib/protect/validators/connection.js +14 -0
- package/lib/protect/validators/content-length.js +14 -0
- package/lib/protect/validators/host.js +14 -0
- package/lib/protect/validators/if-none-match.js +14 -0
- package/lib/protect/validators/index.js +14 -0
- package/lib/protect/validators/origin.js +14 -0
- package/lib/reporter/app-activity-queue.js +14 -0
- package/lib/reporter/grpc-client.js +14 -0
- package/lib/reporter/messages/speedracer/activity.js +14 -0
- package/lib/reporter/messages/speedracer/application-create.js +14 -0
- package/lib/reporter/messages/speedracer/application-update.js +14 -0
- package/lib/reporter/messages/speedracer/base.js +14 -0
- package/lib/reporter/messages/speedracer/index.js +14 -0
- package/lib/reporter/messages/speedracer/observed-route.js +14 -0
- package/lib/reporter/messages/speedracer/poll.js +14 -0
- package/lib/reporter/messages/speedracer/request.js +14 -0
- package/lib/reporter/messages/speedracer/startup.js +14 -0
- package/lib/reporter/messaging-router.js +14 -0
- package/lib/reporter/models/app-activity/app-activity.js +14 -0
- package/lib/reporter/models/app-activity/attacker-activity.js +14 -0
- package/lib/reporter/models/app-activity/defend.js +14 -0
- package/lib/reporter/models/app-activity/inventory.js +14 -0
- package/lib/reporter/models/app-activity/protection-rule-activity.js +14 -0
- package/lib/reporter/models/app-activity/rule-events.js +14 -0
- package/lib/reporter/models/app-activity/sample.js +14 -0
- package/lib/reporter/models/app-activity/source.js +14 -0
- package/lib/reporter/models/app-activity/user-input.js +14 -0
- package/lib/reporter/models/app-create.js +14 -0
- package/lib/reporter/models/app-update/index.js +16 -4
- package/lib/reporter/models/app-update/library-manifest.js +14 -0
- package/lib/reporter/models/app-update/library-usage.js +14 -0
- package/lib/reporter/models/app-update/library.js +14 -0
- package/lib/reporter/models/event-tag.js +14 -0
- package/lib/reporter/models/finding/event.js +14 -0
- package/lib/reporter/models/finding/finding.js +14 -0
- package/lib/reporter/models/frameworks/express-request.js +14 -0
- package/lib/reporter/models/frameworks/fastify-request.js +14 -0
- package/lib/reporter/models/frameworks/hapi-request.js +14 -0
- package/lib/reporter/models/frameworks/index.js +14 -0
- package/lib/reporter/models/frameworks/koa-request.js +14 -0
- package/lib/reporter/models/frameworks/restify-request.js +14 -0
- package/lib/reporter/models/observed-route.js +14 -0
- package/lib/reporter/models/request.js +14 -0
- package/lib/reporter/models/route-coverage.js +14 -0
- package/lib/reporter/models/startup.js +14 -0
- package/lib/reporter/models/trace-event-source.js +14 -0
- package/lib/reporter/models/utils/request-factory.js +14 -0
- package/lib/reporter/models/utils/user-input-factory.js +14 -0
- package/lib/reporter/models/utils/user-input-kit.js +14 -0
- package/lib/reporter/mq-client.js +14 -0
- package/lib/reporter/server-activity-queue.js +14 -0
- package/lib/reporter/socket-client.js +14 -0
- package/lib/reporter/speedracer/base-connection-state.js +14 -0
- package/lib/reporter/speedracer/constants.js +14 -0
- package/lib/reporter/speedracer/failure-connection-state.js +14 -0
- package/lib/reporter/speedracer/index.js +14 -0
- package/lib/reporter/speedracer/success-connection-state.js +14 -0
- package/lib/reporter/speedracer/unknown-connection-state.js +14 -0
- package/lib/reporter/translations/enums.js +14 -0
- package/lib/reporter/translations/helpers.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/activity.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/address.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/agent-startup.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/application-create.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/application-update.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/architecture-component.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/attack-result.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/bot-blocker-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/cmd-injection-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/cmd-injection-semantic-analysis-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/finding.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/http-method-tampering-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/http-request.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/index.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/ip-denylist-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/library-usage-update.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/no-sql-injection-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/observed-route.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/pair.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/path-traversal-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/poll.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/rasp-rule-sample.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/raw-request.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/route-coverage.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/simple-pair.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/sql-injection-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/ssjs-injection-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/stack-trace-element.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/action.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/index.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/parent-object-id.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/trace-event-object.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/trace-event-signature.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/trace-event-source.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/trace-stack.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/trace-taint-range.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/trace-event/type.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/untrusted-deserialization-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/user-input.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/virtual-patch-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/xss-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/dtm/xxe-details.js +14 -0
- package/lib/reporter/translations/to-protobuf/index.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/application-settings.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/assess-features.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/auth.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/bot-blocker.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/custom-rule-feature.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/defend-features.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/exclusions.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/index.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/input-analysis-result.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/inventory-features.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/ip-filter.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/log-enhancer.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/protection-rule.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/reaction.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/rule-definition.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/sampling.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/server-features.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/syslog.js +14 -0
- package/lib/reporter/translations/to-protobuf/settings/virtual-patch.js +14 -0
- package/lib/reporter/ts-reporter.js +14 -0
- package/lib/tracker.js +14 -0
- package/lib/util/base64.js +14 -0
- package/lib/util/bitset.js +14 -0
- package/lib/util/block-request.js +14 -0
- package/lib/util/callback-resolver.js +14 -0
- package/lib/util/clean-stack.js +15 -1
- package/lib/util/clean-string/brackets.js +17 -3
- package/lib/util/clean-string/clean-string-base.js +14 -0
- package/lib/util/clean-string/comments.js +14 -0
- package/lib/util/clean-string/concatenations.js +15 -1
- package/lib/util/clean-string/jsclean-string.js +14 -0
- package/lib/util/clean-string/placeholders.js +14 -0
- package/lib/util/clean-string/util.js +15 -2
- package/lib/util/colors.js +14 -0
- package/lib/util/file-finder.js +14 -0
- package/lib/util/heap-dump.js +14 -0
- package/lib/util/html-util.js +14 -0
- package/lib/util/ip-analyzer.js +15 -1
- package/lib/util/is-agent-path.js +14 -0
- package/lib/util/is-contrast-error.js +14 -0
- package/lib/util/is-piped-to-dev.js +14 -0
- package/lib/util/is-string.js +14 -0
- package/lib/util/partial.js +14 -0
- package/lib/util/pkg-name.js +14 -0
- package/lib/util/request-util.js +14 -0
- package/lib/util/resolve-obj.js +14 -0
- package/lib/util/route-info.js +14 -0
- package/lib/util/source-map.js +14 -0
- package/lib/util/static-rules.js +14 -0
- package/lib/util/trace-util.js +14 -0
- package/lib/util/traverse.js +14 -0
- package/lib/util/user-input-evaluator.js +14 -0
- package/lib/util/xml-analyzer/external-entity-finder.js +15 -1
- package/node_modules/bindings/LICENSE.md +22 -0
- package/node_modules/bindings/README.md +98 -0
- package/node_modules/bindings/bindings.js +221 -0
- package/node_modules/bindings/package.json +32 -0
- package/node_modules/file-uri-to-path/.npmignore +1 -0
- package/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/node_modules/file-uri-to-path/History.md +21 -0
- package/node_modules/file-uri-to-path/LICENSE +20 -0
- package/node_modules/file-uri-to-path/README.md +74 -0
- package/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/node_modules/file-uri-to-path/index.js +66 -0
- package/node_modules/file-uri-to-path/package.json +36 -0
- package/node_modules/file-uri-to-path/test/test.js +24 -0
- package/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/node_modules/nan/CHANGELOG.md +537 -0
- package/node_modules/nan/LICENSE.md +13 -0
- package/node_modules/nan/README.md +455 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +664 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +38 -0
- package/node_modules/nan/doc/string_bytes.md +62 -0
- package/node_modules/nan/doc/v8_internals.md +199 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +2898 -0
- package/node_modules/nan/nan_callbacks.h +88 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +514 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +437 -0
- package/node_modules/nan/package.json +41 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/node_modules/unix-dgram/LICENSE +13 -0
- package/node_modules/unix-dgram/README.md +107 -0
- package/node_modules/unix-dgram/binding.gyp +20 -0
- package/node_modules/unix-dgram/build/Makefile +324 -0
- package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram/src/unix_dgram.o.d +58 -0
- package/node_modules/unix-dgram/build/Release/.deps/Release/obj.target/unix_dgram.node.d +1 -0
- package/node_modules/unix-dgram/build/Release/.deps/Release/unix_dgram.node.d +1 -0
- package/node_modules/unix-dgram/build/Release/obj.target/unix_dgram/src/unix_dgram.o +0 -0
- package/node_modules/unix-dgram/build/Release/obj.target/unix_dgram.node +0 -0
- package/node_modules/unix-dgram/build/Release/unix_dgram.node +0 -0
- package/node_modules/unix-dgram/build/binding.Makefile +6 -0
- package/node_modules/unix-dgram/build/config.gypi +213 -0
- package/node_modules/unix-dgram/build/unix_dgram.target.mk +159 -0
- package/node_modules/unix-dgram/lib/unix_dgram.js +168 -0
- package/node_modules/unix-dgram/package.json +36 -0
- package/node_modules/unix-dgram/src/unix_dgram.cc +404 -0
- package/node_modules/unix-dgram/src/win_dummy.cc +7 -0
- package/node_modules/unix-dgram/test/test-connect-callback.js +68 -0
- package/node_modules/unix-dgram/test/test-connect.js +53 -0
- package/node_modules/unix-dgram/test/test-dgram-unix.js +58 -0
- package/node_modules/unix-dgram/test/test-send-error.js +26 -0
- package/package.json +3 -2
- package/perf-logs.js +14 -0
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
},
|
|
123
123
|
"express-session": {
|
|
124
124
|
"moduleName": "express-session",
|
|
125
|
+
"version": ">=1.16.0",
|
|
125
126
|
"methodName": "",
|
|
126
127
|
"isModule": true
|
|
127
128
|
},
|
|
@@ -132,12 +133,14 @@
|
|
|
132
133
|
},
|
|
133
134
|
"pg.Connection.prototype.query": {
|
|
134
135
|
"moduleName": "pg",
|
|
136
|
+
"version": ">=7.5.0",
|
|
135
137
|
"methodName": "Connection.prototype.query",
|
|
136
138
|
"isModule": true
|
|
137
139
|
},
|
|
138
140
|
"pg/lib/client.prototype.query": {
|
|
139
141
|
"fileName": "lib/client.js",
|
|
140
142
|
"moduleName": "pg",
|
|
143
|
+
"version": ">=7.5.0",
|
|
141
144
|
"methodName": "prototype.query",
|
|
142
145
|
"isModule": true
|
|
143
146
|
},
|
|
@@ -165,31 +168,37 @@
|
|
|
165
168
|
},
|
|
166
169
|
"sequelize.prototype.query": {
|
|
167
170
|
"moduleName": "sequelize",
|
|
171
|
+
"version": ">=5.0.0",
|
|
168
172
|
"methodName": "prototype.query",
|
|
169
173
|
"isModule": true
|
|
170
174
|
},
|
|
171
175
|
"sequelize/lib/sql-string.escape": {
|
|
172
176
|
"moduleName": "sequelize",
|
|
177
|
+
"version": ">=5.0.0",
|
|
173
178
|
"methodName": "escape",
|
|
174
179
|
"isModule": true
|
|
175
180
|
},
|
|
176
181
|
"sequelize/lib/sql-string.format": {
|
|
177
182
|
"moduleName": "sequelize",
|
|
183
|
+
"version": ">=5.0.0",
|
|
178
184
|
"methodName": "format",
|
|
179
185
|
"isModule": true
|
|
180
186
|
},
|
|
181
187
|
"sequelize/lib/sql-string.formatNamedParameters": {
|
|
182
188
|
"moduleName": "sequelize",
|
|
189
|
+
"version": ">=5.0.0",
|
|
183
190
|
"methodName": "formatNamedParameters",
|
|
184
191
|
"isModule": true
|
|
185
192
|
},
|
|
186
193
|
"mongodb.Db.prototype.eval": {
|
|
187
194
|
"moduleName": "mongodb",
|
|
195
|
+
"version": ">=3.5.0",
|
|
188
196
|
"methodName": "Db.prototype.eval",
|
|
189
197
|
"isModule": true
|
|
190
198
|
},
|
|
191
199
|
"mongodb.Collection.prototype.rename": {
|
|
192
200
|
"moduleName": "mongodb",
|
|
201
|
+
"version": ">=3.5.0",
|
|
193
202
|
"methodName": "Collection.prototype.rename",
|
|
194
203
|
"isModule": true
|
|
195
204
|
},
|
|
@@ -215,6 +224,7 @@
|
|
|
215
224
|
},
|
|
216
225
|
"express.response.json": {
|
|
217
226
|
"moduleName": "express",
|
|
227
|
+
"version": ">=4.0.0",
|
|
218
228
|
"methodName": "response.json",
|
|
219
229
|
"isModule": true
|
|
220
230
|
},
|
|
@@ -225,31 +235,37 @@
|
|
|
225
235
|
},
|
|
226
236
|
"express.response.send": {
|
|
227
237
|
"moduleName": "express",
|
|
238
|
+
"version": ">=4.0.0",
|
|
228
239
|
"methodName": "response.send",
|
|
229
240
|
"isModule": true
|
|
230
241
|
},
|
|
231
242
|
"express.response.set": {
|
|
232
243
|
"moduleName": "express",
|
|
244
|
+
"version": ">=4.0.0",
|
|
233
245
|
"methodName": "response.set",
|
|
234
246
|
"isModule": true
|
|
235
247
|
},
|
|
236
248
|
"express.response.setHeaders": {
|
|
237
249
|
"moduleName": "express",
|
|
250
|
+
"version": ">=4.0.0",
|
|
238
251
|
"methodName": "response.setHeaders",
|
|
239
252
|
"isModule": true
|
|
240
253
|
},
|
|
241
254
|
"express.response.append": {
|
|
242
255
|
"moduleName": "express",
|
|
256
|
+
"version": ">=4.0.0",
|
|
243
257
|
"methodName": "response.append",
|
|
244
258
|
"isModule": true
|
|
245
259
|
},
|
|
246
260
|
"express.response.redirect": {
|
|
247
261
|
"moduleName": "express",
|
|
262
|
+
"version": ">=4.0.0",
|
|
248
263
|
"methodName": "response.redirect",
|
|
249
264
|
"isModule": true
|
|
250
265
|
},
|
|
251
266
|
"express.response.location": {
|
|
252
267
|
"moduleName": "express",
|
|
268
|
+
"version": ">=4.0.0",
|
|
253
269
|
"methodName": "response.location",
|
|
254
270
|
"isModule": true
|
|
255
271
|
},
|
|
@@ -387,21 +403,25 @@
|
|
|
387
403
|
},
|
|
388
404
|
"handlebars/dist/cjs/handlebars/utils.escapeExpression": {
|
|
389
405
|
"moduleName": "handlebars",
|
|
406
|
+
"version": ">=4.0.0",
|
|
390
407
|
"methodName": "utils.escapeExpression",
|
|
391
408
|
"isModule": true
|
|
392
409
|
},
|
|
393
410
|
"handlebars.Utils.escapeExpression": {
|
|
394
411
|
"moduleName": "handlebars",
|
|
412
|
+
"version": ">=4.0.0",
|
|
395
413
|
"methodName": "Utils.escapeExpression",
|
|
396
414
|
"isModule": true
|
|
397
415
|
},
|
|
398
416
|
"ejs.Template.prototype.generateSource": {
|
|
399
417
|
"moduleName": "ejs",
|
|
418
|
+
"version": ">=2.6.2",
|
|
400
419
|
"methodName": "Template.prototype.generateSource",
|
|
401
420
|
"isModule": true
|
|
402
421
|
},
|
|
403
422
|
"ejs.utils.escapeXML": {
|
|
404
423
|
"moduleName": "ejs",
|
|
424
|
+
"version": ">=2.6.2",
|
|
405
425
|
"fileName": "lib/utils.js",
|
|
406
426
|
"methodName": "escapeXML",
|
|
407
427
|
"isModule": true
|
|
@@ -533,31 +553,37 @@
|
|
|
533
553
|
},
|
|
534
554
|
"sqlite3.Database.prototype.all": {
|
|
535
555
|
"moduleName": "sqlite3",
|
|
556
|
+
"version": ">=4.0.0",
|
|
536
557
|
"methodName": "Database.prototype.all",
|
|
537
558
|
"isModule": true
|
|
538
559
|
},
|
|
539
560
|
"sqlite3.Database.prototype.run": {
|
|
540
561
|
"moduleName": "sqlite3",
|
|
562
|
+
"version": ">=4.0.0",
|
|
541
563
|
"methodName": "Database.prototype.run",
|
|
542
564
|
"isModule": true
|
|
543
565
|
},
|
|
544
566
|
"sqlite3.Database.prototype.get": {
|
|
545
567
|
"moduleName": "sqlite3",
|
|
568
|
+
"version": ">=4.0.0",
|
|
546
569
|
"methodName": "Database.prototype.get",
|
|
547
570
|
"isModule": true
|
|
548
571
|
},
|
|
549
572
|
"sqlite3.Database.prototype.each": {
|
|
550
573
|
"moduleName": "sqlite3",
|
|
574
|
+
"version": ">=4.0.0",
|
|
551
575
|
"methodName": "Database.prototype.each",
|
|
552
576
|
"isModule": true
|
|
553
577
|
},
|
|
554
578
|
"sqlite3.Database.prototype.exec": {
|
|
555
579
|
"moduleName": "sqlite3",
|
|
580
|
+
"version": ">=4.0.0",
|
|
556
581
|
"methodName": "Database.prototype.exec",
|
|
557
582
|
"isModule": true
|
|
558
583
|
},
|
|
559
584
|
"sqlite3.Database.prototype.prepare": {
|
|
560
585
|
"moduleName": "sqlite3",
|
|
586
|
+
"version": ">=4.0.0",
|
|
561
587
|
"methodName": "Database.prototype.prepare",
|
|
562
588
|
"isModule": true
|
|
563
589
|
},
|
|
@@ -853,6 +879,7 @@
|
|
|
853
879
|
},
|
|
854
880
|
"pug.compile": {
|
|
855
881
|
"moduleName": "pug",
|
|
882
|
+
"version": ">=3.0.0",
|
|
856
883
|
"fileName": "lib/index.js",
|
|
857
884
|
"methodName": "compile",
|
|
858
885
|
"isModule": true
|
|
@@ -864,342 +891,410 @@
|
|
|
864
891
|
},
|
|
865
892
|
"handlebars.JavaScriptCompiler.compile": {
|
|
866
893
|
"moduleName": "handlebars",
|
|
894
|
+
"version": ">=4.0.0",
|
|
867
895
|
"fileName": "dist/cjs/handlebars/compiler/javascript-compiler.js",
|
|
868
896
|
"methodName": "prototype.compile",
|
|
869
897
|
"isModule": true
|
|
870
898
|
},
|
|
871
899
|
"validator.isAfter": {
|
|
872
900
|
"moduleName": "validator",
|
|
901
|
+
"version": ">=13.0.0",
|
|
873
902
|
"methodName": "isAfter",
|
|
874
903
|
"isModule": true
|
|
875
904
|
},
|
|
876
905
|
"validator.isAlpha": {
|
|
877
906
|
"moduleName": "validator",
|
|
907
|
+
"version": ">=13.0.0",
|
|
878
908
|
"methodName": "isAlpha",
|
|
879
909
|
"isModule": true
|
|
880
910
|
},
|
|
881
911
|
"validator.isAlphanumeric": {
|
|
882
912
|
"moduleName": "validator",
|
|
913
|
+
"version": ">=13.0.0",
|
|
883
914
|
"methodName": "isAlphanumeric",
|
|
884
915
|
"isModule": true
|
|
885
916
|
},
|
|
886
917
|
"validator.isBase32": {
|
|
887
918
|
"moduleName": "validator",
|
|
919
|
+
"version": ">=13.0.0",
|
|
888
920
|
"methodName": "isBase32",
|
|
889
921
|
"isModule": true
|
|
890
922
|
},
|
|
891
923
|
"validator.isBase58": {
|
|
892
924
|
"moduleName": "validator",
|
|
925
|
+
"version": ">=13.0.0",
|
|
893
926
|
"methodName": "isBase58",
|
|
894
927
|
"isModule": true
|
|
895
928
|
},
|
|
896
929
|
"validator.isBefore": {
|
|
897
930
|
"moduleName": "validator",
|
|
931
|
+
"version": ">=13.0.0",
|
|
898
932
|
"methodName": "isBefore",
|
|
899
933
|
"isModule": true
|
|
900
934
|
},
|
|
901
935
|
"validator.isBIC": {
|
|
902
936
|
"moduleName": "validator",
|
|
937
|
+
"version": ">=13.0.0",
|
|
903
938
|
"methodName": "isBIC",
|
|
904
939
|
"isModule": true
|
|
905
940
|
},
|
|
906
941
|
"validator.isBoolean": {
|
|
907
942
|
"moduleName": "validator",
|
|
943
|
+
"version": ">=13.0.0",
|
|
908
944
|
"methodName": "isBoolean",
|
|
909
945
|
"isModule": true
|
|
910
946
|
},
|
|
911
947
|
"validator.isBtcAddress": {
|
|
912
948
|
"moduleName": "validator",
|
|
949
|
+
"version": ">=13.0.0",
|
|
913
950
|
"methodName": "isBtcAddress",
|
|
914
951
|
"isModule": true
|
|
915
952
|
},
|
|
916
953
|
"validator.isCreditCard": {
|
|
917
954
|
"moduleName": "validator",
|
|
955
|
+
"version": ">=13.0.0",
|
|
918
956
|
"methodName": "isCreditCard",
|
|
919
957
|
"isModule": true
|
|
920
958
|
},
|
|
921
959
|
"validator.isDecimal": {
|
|
922
960
|
"moduleName": "validator",
|
|
961
|
+
"version": ">=13.0.0",
|
|
923
962
|
"methodName": "isDecimal",
|
|
924
963
|
"isModule": true
|
|
925
964
|
},
|
|
926
965
|
"validator.isDivisibleBy": {
|
|
927
966
|
"moduleName": "validator",
|
|
967
|
+
"version": ">=13.0.0",
|
|
928
968
|
"methodName": "isDivisibleBy",
|
|
929
969
|
"isModule": true
|
|
930
970
|
},
|
|
931
971
|
"validator.isEAN": {
|
|
932
972
|
"moduleName": "validator",
|
|
973
|
+
"version": ">=13.0.0",
|
|
933
974
|
"methodName": "isEAN",
|
|
934
975
|
"isModule": true
|
|
935
976
|
},
|
|
936
977
|
"validator.isEthereumAddress": {
|
|
937
978
|
"moduleName": "validator",
|
|
979
|
+
"version": ">=13.0.0",
|
|
938
980
|
"methodName": "isEthereumAddress",
|
|
939
981
|
"isModule": true
|
|
940
982
|
},
|
|
941
983
|
"validator.isFloat": {
|
|
942
984
|
"moduleName": "validator",
|
|
985
|
+
"version": ">=13.0.0",
|
|
943
986
|
"methodName": "isFloat",
|
|
944
987
|
"isModule": true
|
|
945
988
|
},
|
|
946
989
|
"validator.isHash": {
|
|
947
990
|
"moduleName": "validator",
|
|
991
|
+
"version": ">=13.0.0",
|
|
948
992
|
"methodName": "isHash",
|
|
949
993
|
"isModule": true
|
|
950
994
|
},
|
|
951
995
|
"validator.isHexadecimal": {
|
|
952
996
|
"moduleName": "validator",
|
|
997
|
+
"version": ">=13.0.0",
|
|
953
998
|
"methodName": "isHexadecimal",
|
|
954
999
|
"isModule": true
|
|
955
1000
|
},
|
|
956
1001
|
"validator.isHexColor": {
|
|
957
1002
|
"moduleName": "validator",
|
|
1003
|
+
"version": ">=13.0.0",
|
|
958
1004
|
"methodName": "isHexColor",
|
|
959
1005
|
"isModule": true
|
|
960
1006
|
},
|
|
961
1007
|
"validator.isHSL": {
|
|
962
1008
|
"moduleName": "validator",
|
|
1009
|
+
"version": ">=13.0.0",
|
|
963
1010
|
"methodName": "isHSL",
|
|
964
1011
|
"isModule": true
|
|
965
1012
|
},
|
|
966
1013
|
"validator.isIBAN": {
|
|
967
1014
|
"moduleName": "validator",
|
|
1015
|
+
"version": ">=13.0.0",
|
|
968
1016
|
"methodName": "isIBAN",
|
|
969
1017
|
"isModule": true
|
|
970
1018
|
},
|
|
971
1019
|
"validator.isIdentityCard": {
|
|
972
1020
|
"moduleName": "validator",
|
|
1021
|
+
"version": ">=13.0.0",
|
|
973
1022
|
"methodName": "isIdentityCard",
|
|
974
1023
|
"isModule": true
|
|
975
1024
|
},
|
|
976
1025
|
"validator.isIMEI": {
|
|
977
1026
|
"moduleName": "validator",
|
|
1027
|
+
"version": ">=13.0.0",
|
|
978
1028
|
"methodName": "isIMEI",
|
|
979
1029
|
"isModule": true
|
|
980
1030
|
},
|
|
981
1031
|
"validator.isInt": {
|
|
982
1032
|
"moduleName": "validator",
|
|
1033
|
+
"version": ">=13.0.0",
|
|
983
1034
|
"methodName": "isInt",
|
|
984
1035
|
"isModule": true
|
|
985
1036
|
},
|
|
986
1037
|
"validator.isIP": {
|
|
987
1038
|
"moduleName": "validator",
|
|
1039
|
+
"version": ">=13.0.0",
|
|
988
1040
|
"methodName": "isIP",
|
|
989
1041
|
"isModule": true
|
|
990
1042
|
},
|
|
991
1043
|
"validator.isIPRange": {
|
|
992
1044
|
"moduleName": "validator",
|
|
1045
|
+
"version": ">=13.0.0",
|
|
993
1046
|
"methodName": "isIPRange",
|
|
994
1047
|
"isModule": true
|
|
995
1048
|
},
|
|
996
1049
|
"validator.isISBN": {
|
|
997
1050
|
"moduleName": "validator",
|
|
1051
|
+
"version": ">=13.0.0",
|
|
998
1052
|
"methodName": "isISBN",
|
|
999
1053
|
"isModule": true
|
|
1000
1054
|
},
|
|
1001
1055
|
"validator.isISIN": {
|
|
1002
1056
|
"moduleName": "validator",
|
|
1057
|
+
"version": ">=13.0.0",
|
|
1003
1058
|
"methodName": "isISIN",
|
|
1004
1059
|
"isModule": true
|
|
1005
1060
|
},
|
|
1006
1061
|
"validator.isISO8601": {
|
|
1007
1062
|
"moduleName": "validator",
|
|
1063
|
+
"version": ">=13.0.0",
|
|
1008
1064
|
"methodName": "isISO8601",
|
|
1009
1065
|
"isModule": true
|
|
1010
1066
|
},
|
|
1011
1067
|
"validator.isISO31661Alpha2": {
|
|
1012
1068
|
"moduleName": "validator",
|
|
1069
|
+
"version": ">=13.0.0",
|
|
1013
1070
|
"methodName": "isISO31661Alpha2",
|
|
1014
1071
|
"isModule": true
|
|
1015
1072
|
},
|
|
1016
1073
|
"validator.isISO31661Alpha3": {
|
|
1017
1074
|
"moduleName": "validator",
|
|
1075
|
+
"version": ">=13.0.0",
|
|
1018
1076
|
"methodName": "isISO31661Alpha3",
|
|
1019
1077
|
"isModule": true
|
|
1020
1078
|
},
|
|
1021
1079
|
"validator.isISRC": {
|
|
1022
1080
|
"moduleName": "validator",
|
|
1081
|
+
"version": ">=13.0.0",
|
|
1023
1082
|
"methodName": "isISRC",
|
|
1024
1083
|
"isModule": true
|
|
1025
1084
|
},
|
|
1026
1085
|
"validator.isISSN": {
|
|
1027
1086
|
"moduleName": "validator",
|
|
1087
|
+
"version": ">=13.0.0",
|
|
1028
1088
|
"methodName": "isISSN",
|
|
1029
1089
|
"isModule": true
|
|
1030
1090
|
},
|
|
1031
1091
|
"validator.isJWT": {
|
|
1032
1092
|
"moduleName": "validator",
|
|
1093
|
+
"version": ">=13.0.0",
|
|
1033
1094
|
"methodName": "isJWT",
|
|
1034
1095
|
"isModule": true
|
|
1035
1096
|
},
|
|
1036
1097
|
"validator.isLatLong": {
|
|
1037
1098
|
"moduleName": "validator",
|
|
1099
|
+
"version": ">=13.0.0",
|
|
1038
1100
|
"methodName": "isLatLong",
|
|
1039
1101
|
"isModule": true
|
|
1040
1102
|
},
|
|
1041
1103
|
"validator.isLicensePlate": {
|
|
1042
1104
|
"moduleName": "validator",
|
|
1105
|
+
"version": ">=13.0.0",
|
|
1043
1106
|
"methodName": "isLicensePlate",
|
|
1044
1107
|
"isModule": true
|
|
1045
1108
|
},
|
|
1046
1109
|
"validator.isMACAddress": {
|
|
1047
1110
|
"moduleName": "validator",
|
|
1111
|
+
"version": ">=13.0.0",
|
|
1048
1112
|
"methodName": "isMACAddress",
|
|
1049
1113
|
"isModule": true
|
|
1050
1114
|
},
|
|
1051
1115
|
"validator.isMagnetURI": {
|
|
1052
1116
|
"moduleName": "validator",
|
|
1117
|
+
"version": ">=13.0.0",
|
|
1053
1118
|
"methodName": "isMagnetURI",
|
|
1054
1119
|
"isModule": true
|
|
1055
1120
|
},
|
|
1056
1121
|
"validator.isMD5": {
|
|
1057
1122
|
"moduleName": "validator",
|
|
1123
|
+
"version": ">=13.0.0",
|
|
1058
1124
|
"methodName": "isMD5",
|
|
1059
1125
|
"isModule": true
|
|
1060
1126
|
},
|
|
1061
1127
|
"validator.isMobilePhone": {
|
|
1062
1128
|
"moduleName": "validator",
|
|
1129
|
+
"version": ">=13.0.0",
|
|
1063
1130
|
"methodName": "isMobilePhone",
|
|
1064
1131
|
"isModule": true
|
|
1065
1132
|
},
|
|
1066
1133
|
"validator.isMongoId": {
|
|
1067
1134
|
"moduleName": "validator",
|
|
1135
|
+
"version": ">=13.0.0",
|
|
1068
1136
|
"methodName": "isMongoId",
|
|
1069
1137
|
"isModule": true
|
|
1070
1138
|
},
|
|
1071
1139
|
"validator.isNumeric": {
|
|
1072
1140
|
"moduleName": "validator",
|
|
1141
|
+
"version": ">=13.0.0",
|
|
1073
1142
|
"methodName": "isNumeric",
|
|
1074
1143
|
"isModule": true
|
|
1075
1144
|
},
|
|
1076
1145
|
"validator.isOctal": {
|
|
1077
1146
|
"moduleName": "validator",
|
|
1147
|
+
"version": ">=13.0.0",
|
|
1078
1148
|
"methodName": "isOctal",
|
|
1079
1149
|
"isModule": true
|
|
1080
1150
|
},
|
|
1081
1151
|
"validator.isPassportNumber": {
|
|
1082
1152
|
"moduleName": "validator",
|
|
1153
|
+
"version": ">=13.0.0",
|
|
1083
1154
|
"methodName": "isPassportNumber",
|
|
1084
1155
|
"isModule": true
|
|
1085
1156
|
},
|
|
1086
1157
|
"validator.isPort": {
|
|
1087
1158
|
"moduleName": "validator",
|
|
1159
|
+
"version": ">=13.0.0",
|
|
1088
1160
|
"methodName": "isPort",
|
|
1089
1161
|
"isModule": true
|
|
1090
1162
|
},
|
|
1091
1163
|
"validator.isPostalCode": {
|
|
1092
1164
|
"moduleName": "validator",
|
|
1165
|
+
"version": ">=13.0.0",
|
|
1093
1166
|
"methodName": "isPostalCode",
|
|
1094
1167
|
"isModule": true
|
|
1095
1168
|
},
|
|
1096
1169
|
"validator.isSemVer": {
|
|
1097
1170
|
"moduleName": "validator",
|
|
1171
|
+
"version": ">=13.0.0",
|
|
1098
1172
|
"methodName": "isSemVer",
|
|
1099
1173
|
"isModule": true
|
|
1100
1174
|
},
|
|
1101
1175
|
"validator.isTaxID": {
|
|
1102
1176
|
"moduleName": "validator",
|
|
1177
|
+
"version": ">=13.0.0",
|
|
1103
1178
|
"methodName": "isTaxID",
|
|
1104
1179
|
"isModule": true
|
|
1105
1180
|
},
|
|
1106
1181
|
"validator.isUUID": {
|
|
1107
1182
|
"moduleName": "validator",
|
|
1183
|
+
"version": ">=13.0.0",
|
|
1108
1184
|
"methodName": "isUUID",
|
|
1109
1185
|
"isModule": true
|
|
1110
1186
|
},
|
|
1111
1187
|
"validator.isVAT": {
|
|
1112
1188
|
"moduleName": "validator",
|
|
1189
|
+
"version": ">=13.0.0",
|
|
1113
1190
|
"methodName": "isVAT",
|
|
1114
1191
|
"isModule": true
|
|
1115
1192
|
},
|
|
1116
1193
|
"validator.escape": {
|
|
1117
1194
|
"moduleName": "validator",
|
|
1195
|
+
"version": ">=13.0.0",
|
|
1118
1196
|
"methodName": "escape",
|
|
1119
1197
|
"isModule": true
|
|
1120
1198
|
},
|
|
1121
1199
|
"validator.isIn": {
|
|
1122
1200
|
"moduleName": "validator",
|
|
1201
|
+
"version": ">=13.0.0",
|
|
1123
1202
|
"methodName": "isIn",
|
|
1124
1203
|
"isModule": true
|
|
1125
1204
|
},
|
|
1126
1205
|
"validator.isMimeType": {
|
|
1127
1206
|
"moduleName": "validator",
|
|
1207
|
+
"version": ">=13.0.0",
|
|
1128
1208
|
"methodName": "isMimeType",
|
|
1129
1209
|
"isModule": true
|
|
1130
1210
|
},
|
|
1131
1211
|
"validator.isRFC3339": {
|
|
1132
1212
|
"moduleName": "validator",
|
|
1213
|
+
"version": ">=13.0.0",
|
|
1133
1214
|
"methodName": "isRFC3339",
|
|
1134
1215
|
"isModule": true
|
|
1135
1216
|
},
|
|
1136
1217
|
"joi.boolean.coerce": {
|
|
1137
1218
|
"moduleName": "joi",
|
|
1219
|
+
"version": ">=17.0.0",
|
|
1138
1220
|
"methodName": "boolean.coerce",
|
|
1139
1221
|
"isModule": true
|
|
1140
1222
|
},
|
|
1141
1223
|
"joi.number.coerce": {
|
|
1142
1224
|
"moduleName": "joi",
|
|
1225
|
+
"version": ">=17.0.0",
|
|
1143
1226
|
"methodName": "number.coerce",
|
|
1144
1227
|
"isModule": true
|
|
1145
1228
|
},
|
|
1146
1229
|
"joi.string.validate": {
|
|
1147
1230
|
"moduleName": "joi",
|
|
1231
|
+
"version": ">=17.0.0",
|
|
1148
1232
|
"methodName": "string.validate",
|
|
1149
1233
|
"isModule": true
|
|
1150
1234
|
},
|
|
1151
1235
|
"joi.string.base64": {
|
|
1152
1236
|
"moduleName": "joi",
|
|
1237
|
+
"version": ">=17.0.0",
|
|
1153
1238
|
"methodName": "string.base64",
|
|
1154
1239
|
"isModule": true
|
|
1155
1240
|
},
|
|
1156
1241
|
"joi.string.guid": {
|
|
1157
1242
|
"moduleName": "joi",
|
|
1243
|
+
"version": ">=17.0.0",
|
|
1158
1244
|
"methodName": "string.guid",
|
|
1159
1245
|
"isModule": true
|
|
1160
1246
|
},
|
|
1161
1247
|
"joi.string.alphanum": {
|
|
1162
1248
|
"moduleName": "joi",
|
|
1249
|
+
"version": ">=17.0.0",
|
|
1163
1250
|
"methodName": "string.alphanum",
|
|
1164
1251
|
"isModule": true
|
|
1165
1252
|
},
|
|
1166
1253
|
"joi.string.hex": {
|
|
1167
1254
|
"moduleName": "joi",
|
|
1255
|
+
"version": ">=17.0.0",
|
|
1168
1256
|
"methodName": "string.hex",
|
|
1169
1257
|
"isModule": true
|
|
1170
1258
|
},
|
|
1171
1259
|
"joi.string.isoDate": {
|
|
1172
1260
|
"moduleName": "joi",
|
|
1261
|
+
"version": ">=17.0.0",
|
|
1173
1262
|
"methodName": "string.isoDate",
|
|
1174
1263
|
"isModule": true
|
|
1175
1264
|
},
|
|
1176
1265
|
"joi.string.isoDuration": {
|
|
1177
1266
|
"moduleName": "joi",
|
|
1267
|
+
"version": ">=17.0.0",
|
|
1178
1268
|
"methodName": "string.isoDuration",
|
|
1179
1269
|
"isModule": true
|
|
1180
1270
|
},
|
|
1181
1271
|
"joi.string.token": {
|
|
1182
1272
|
"moduleName": "joi",
|
|
1273
|
+
"version": ">=17.0.0",
|
|
1183
1274
|
"methodName": "string.token",
|
|
1184
1275
|
"isModule": true
|
|
1185
1276
|
},
|
|
1186
1277
|
"joi.string.creditCard": {
|
|
1187
1278
|
"moduleName": "joi",
|
|
1279
|
+
"version": ">=17.0.0",
|
|
1188
1280
|
"methodName": "string.creditCard",
|
|
1189
1281
|
"isModule": true
|
|
1190
1282
|
},
|
|
1191
1283
|
"joi.string.ip": {
|
|
1192
1284
|
"moduleName": "joi",
|
|
1285
|
+
"version": ">=17.0.0",
|
|
1193
1286
|
"methodName": "string.ip",
|
|
1194
1287
|
"isModule": true
|
|
1195
1288
|
},
|
|
1196
1289
|
"joi.string.hostname": {
|
|
1197
1290
|
"moduleName": "joi",
|
|
1291
|
+
"version": ">=17.0.0",
|
|
1198
1292
|
"methodName": "string.hostname",
|
|
1199
1293
|
"isModule": true
|
|
1200
1294
|
},
|
|
1201
1295
|
"joi.string.domain": {
|
|
1202
1296
|
"moduleName": "joi",
|
|
1297
|
+
"version": ">=17.0.0",
|
|
1203
1298
|
"methodName": "string.domain",
|
|
1204
1299
|
"isModule": true
|
|
1205
1300
|
},
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Copyright: 2021 Contrast Security, Inc
|
|
3
|
+
Contact: support@contrastsecurity.com
|
|
4
|
+
License: Commercial
|
|
5
|
+
|
|
6
|
+
NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
made available through public repositories, use of this Software is subject to
|
|
9
|
+
the applicable End User Licensing Agreement found at
|
|
10
|
+
https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
1
15
|
/**
|
|
2
16
|
* Contains helper functions used to manage the policy
|
|
3
17
|
* Management of hooked functions that are defined in assess policies(e.g. deadzone.json, propagators.json, rules.json)
|
|
@@ -358,12 +372,19 @@ utils.createHookFromSignature = function(signature, options, patchType) {
|
|
|
358
372
|
requireHook.resolve(
|
|
359
373
|
{
|
|
360
374
|
name: signature.moduleName,
|
|
361
|
-
file: signature.fileName
|
|
375
|
+
file: signature.fileName,
|
|
376
|
+
version: signature.version
|
|
362
377
|
},
|
|
363
378
|
requireCallback
|
|
364
379
|
);
|
|
365
380
|
} else {
|
|
366
|
-
requireHook.resolve(
|
|
381
|
+
requireHook.resolve(
|
|
382
|
+
{
|
|
383
|
+
name: signature.moduleName,
|
|
384
|
+
version: signature.version
|
|
385
|
+
},
|
|
386
|
+
requireCallback
|
|
387
|
+
);
|
|
367
388
|
}
|
|
368
389
|
} else {
|
|
369
390
|
const mod = global[signature.moduleName],
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Copyright: 2021 Contrast Security, Inc
|
|
3
|
+
Contact: support@contrastsecurity.com
|
|
4
|
+
License: Commercial
|
|
5
|
+
|
|
6
|
+
NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
made available through public repositories, use of this Software is subject to
|
|
9
|
+
the applicable End User Licensing Agreement found at
|
|
10
|
+
https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
1
15
|
/**
|
|
2
16
|
* JSON.parse Propagation Provider module.
|
|
3
17
|
* @module lib/assess/propagators/JSON.parse.js
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Copyright: 2021 Contrast Security, Inc
|
|
3
|
+
Contact: support@contrastsecurity.com
|
|
4
|
+
License: Commercial
|
|
5
|
+
|
|
6
|
+
NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
made available through public repositories, use of this Software is subject to
|
|
9
|
+
the applicable End User Licensing Agreement found at
|
|
10
|
+
https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
1
15
|
/**
|
|
2
16
|
* JSON.stringify Propagation Provider module.
|
|
3
17
|
* @module lib/assess/propagators/JSON/stringify.js
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Copyright: 2021 Contrast Security, Inc
|
|
3
|
+
Contact: support@contrastsecurity.com
|
|
4
|
+
License: Commercial
|
|
5
|
+
|
|
6
|
+
NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
made available through public repositories, use of this Software is subject to
|
|
9
|
+
the applicable End User Licensing Agreement found at
|
|
10
|
+
https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
1
15
|
'use strict';
|
|
2
16
|
|
|
3
17
|
/**
|