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 /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
config-loader.js
27.34
KB
-rw-r--r--
config.js
18.57
KB
-rw-r--r--
default-config.js
1.66
KB
-rw-r--r--
flat-config-array.js
6.59
KB
-rw-r--r--
flat-config-schema.js
15.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : default-config.js
/** * @fileoverview Default configuration * @author Nicholas C. Zakas */ "use strict"; //----------------------------------------------------------------------------- // Requirements //----------------------------------------------------------------------------- const Rules = require("../rules"); //----------------------------------------------------------------------------- // Helpers //----------------------------------------------------------------------------- const sharedDefaultConfig = [ // intentionally empty config to ensure these files are globbed by default { files: ["**/*.js", "**/*.mjs"], }, { files: ["**/*.cjs"], languageOptions: { sourceType: "commonjs", ecmaVersion: "latest", }, }, ]; exports.defaultConfig = Object.freeze([ { plugins: { "@": { languages: { js: require("../languages/js"), }, /* * Because we try to delay loading rules until absolutely * necessary, a proxy allows us to hook into the lazy-loading * aspect of the rules map while still keeping all of the * relevant configuration inside of the config array. */ rules: new Proxy( {}, { get(target, property) { return Rules.get(property); }, has(target, property) { return Rules.has(property); }, }, ), }, }, language: "@/js", linterOptions: { reportUnusedDisableDirectives: 1, }, }, // default ignores are listed here { ignores: ["**/node_modules/", ".git/"], }, ...sharedDefaultConfig, ]); exports.defaultRuleTesterConfig = Object.freeze([ { files: ["**"] }, // Make sure the default config matches for all files ...sharedDefaultConfig, ]);
Close