Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
home /
amatya /
quiz1 /
node_modules /
eslint /
lib /
shared /
[ HOME SHELL ]
Name
Size
Permission
Action
ajv.js
993
B
-rw-rw-rw-
ast-utils.js
910
B
-rw-rw-rw-
config-validator.js
11.32
KB
-rw-rw-rw-
deprecation-warnings.js
1.89
KB
-rw-rw-rw-
directives.js
414
B
-rw-rw-rw-
logging.js
538
B
-rw-rw-rw-
relative-module-resolver.js
1.73
KB
-rw-rw-rw-
runtime-info.js
5.41
KB
-rw-rw-rw-
severity.js
1.23
KB
-rw-rw-rw-
string-utils.js
1.59
KB
-rw-rw-rw-
traverser.js
5.35
KB
-rw-rw-rw-
types.js
10.42
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : deprecation-warnings.js
/** * @fileoverview Provide the function that emits deprecation warnings. * @author Toru Nagashima <http://github.com/mysticatea> */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const path = require("path"); //------------------------------------------------------------------------------ // Private //------------------------------------------------------------------------------ // Definitions for deprecation warnings. const deprecationWarningMessages = { ESLINT_LEGACY_ECMAFEATURES: "The 'ecmaFeatures' config file property is deprecated and has no effect." }; const sourceFileErrorCache = new Set(); /** * Emits a deprecation warning containing a given filepath. A new deprecation warning is emitted * for each unique file path, but repeated invocations with the same file path have no effect. * No warnings are emitted if the `--no-deprecation` or `--no-warnings` Node runtime flags are active. * @param {string} source The name of the configuration source to report the warning for. * @param {string} errorCode The warning message to show. * @returns {void} */ function emitDeprecationWarning(source, errorCode) { const cacheKey = JSON.stringify({ source, errorCode }); if (sourceFileErrorCache.has(cacheKey)) { return; } sourceFileErrorCache.add(cacheKey); const rel = path.relative(process.cwd(), source); const message = deprecationWarningMessages[errorCode]; process.emitWarning( `${message} (found in "${rel}")`, "DeprecationWarning", errorCode ); } //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ module.exports = { emitDeprecationWarning };
Close