=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== uap-core-0.10.0/docs/specification.md-24- uap-core-0.10.0/docs/specification.md:25:Each parser contains a list of regular-expressions which are named `regex`. For each `regex` replacements specific to the parser can be named to attribute or change information. A replacement may require a match from the regular-expression which is extracted by an expression enclosed in normal brackets `"()"`. Each match can be addressed with `$1` to `$9` and used in a parser specific replacement. uap-core-0.10.0/docs/specification.md-26- ############################################## uap-core-0.10.0/docs/specification.md-52-As placeholder for inserting matched characters use within uap-core-0.10.0/docs/specification.md:53:* `family_replacement`: `$1` uap-core-0.10.0/docs/specification.md:54:* `v1_replacement`: `$2` uap-core-0.10.0/docs/specification.md:55:* `v2_replacement`: `$3` uap-core-0.10.0/docs/specification.md:56:* `v3_replacement`: `$4` uap-core-0.10.0/docs/specification.md-57- ############################################## uap-core-0.10.0/docs/specification.md-103-As placeholder for inserting matched characters use within uap-core-0.10.0/docs/specification.md:104:* `os_replacement`: `$1` uap-core-0.10.0/docs/specification.md:105:* `os_v1_replacement`: `$2` uap-core-0.10.0/docs/specification.md:106:* `os_v2_replacement`: `$3` uap-core-0.10.0/docs/specification.md:107:* `os_v3_replacement`: `$4` uap-core-0.10.0/docs/specification.md:108:* `os_v4_replacement`: `$5` uap-core-0.10.0/docs/specification.md-109- ############################################## uap-core-0.10.0/docs/specification.md-152- uap-core-0.10.0/docs/specification.md:153:As placeholder for inserting matched characters `$1` to `$9` can be used to insert the matched characters from the regex into the replacement string. uap-core-0.10.0/docs/specification.md-154- ############################################## uap-core-0.10.0/tests/regexes.js-28- Object.keys(regexes).forEach(function (parser) { uap-core-0.10.0/tests/regexes.js:29: suite(`no reverse lookup in ${parser}`, function () { uap-core-0.10.0/tests/regexes.js-30- regexes[parser].forEach(function(item) {