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.1
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
/
var /
www /
html /
quiz1 /
node_modules /
react-dev-utils /
[ HOME SHELL ]
Name
Size
Permission
Action
node_modules
[ DIR ]
dr-xr-xr-x
FileSizeReporter.js
4.5
KB
-rw-rw-rw-
ForkTsCheckerWarningWebpackPlu...
823
B
-rw-rw-rw-
ForkTsCheckerWebpackPlugin.js
321
B
-rw-rw-rw-
InlineChunkHtmlPlugin.js
1.88
KB
-rw-rw-rw-
InterpolateHtmlPlugin.js
1.41
KB
-rw-rw-rw-
LICENSE
1.05
KB
-rw-rw-rw-
ModuleNotFoundPlugin.js
4.19
KB
-rw-rw-rw-
ModuleScopePlugin.js
3.39
KB
-rw-rw-rw-
README.md
13.27
KB
-rw-rw-rw-
WebpackDevServerUtils.js
13.12
KB
-rw-rw-rw-
browsersHelper.js
2.45
KB
-rw-rw-rw-
chalk.js
254
B
-rw-rw-rw-
checkRequiredFiles.js
856
B
-rw-rw-rw-
clearConsole.js
365
B
-rw-rw-rw-
crossSpawn.js
270
B
-rw-rw-rw-
errorOverlayMiddleware.js
732
B
-rw-rw-rw-
eslintFormatter.js
2.74
KB
-rw-rw-rw-
evalSourceMapMiddleware.js
1.52
KB
-rw-rw-rw-
formatWebpackMessages.js
4.17
KB
-rw-rw-rw-
getCSSModuleLocalIdent.js
1.24
KB
-rw-rw-rw-
getCacheIdentifier.js
584
B
-rw-rw-rw-
getProcessForPort.js
1.98
KB
-rw-rw-rw-
getPublicUrlOrPath.js
2.02
KB
-rw-rw-rw-
globby.js
257
B
-rw-rw-rw-
ignoredFiles.js
467
B
-rw-rw-rw-
immer.js
254
B
-rw-rw-rw-
launchEditor.js
19.02
KB
-rw-rw-rw-
launchEditorEndpoint.js
330
B
-rw-rw-rw-
noopServiceWorkerMiddleware.js
1.33
KB
-rw-rw-rw-
openBrowser.js
4.32
KB
-rw-rw-rw-
openChrome.applescript
2.59
KB
-rw-rw-rw-
package.json
2.31
KB
-rw-rw-rw-
printBuildError.js
1.2
KB
-rw-rw-rw-
printHostingInstructions.js
3.62
KB
-rw-rw-rw-
redirectServedPathMiddleware.j...
747
B
-rw-rw-rw-
refreshOverlayInterop.js
447
B
-rw-rw-rw-
webpackHotDevClient.js
8.67
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ModuleNotFoundPlugin.js
/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; const chalk = require('chalk'); const findUp = require('find-up'); const path = require('path'); class ModuleNotFoundPlugin { constructor(appPath, yarnLockFile) { this.appPath = appPath; this.yarnLockFile = yarnLockFile; this.useYarnCommand = this.useYarnCommand.bind(this); this.getRelativePath = this.getRelativePath.bind(this); this.prettierError = this.prettierError.bind(this); } useYarnCommand() { try { return findUp.sync('yarn.lock', { cwd: this.appPath }) != null; } catch (_) { return false; } } getRelativePath(_file) { let file = path.relative(this.appPath, _file); if (file.startsWith('..')) { file = _file; } else if (!file.startsWith('.')) { file = '.' + path.sep + file; } return file; } prettierError(err) { let { details: _details = '', origin } = err; if (origin == null) { const caseSensitivity = err.message && /\[CaseSensitivePathsPlugin\] `(.*?)` .* `(.*?)`/.exec(err.message); if (caseSensitivity) { const [, incorrectPath, actualName] = caseSensitivity; const actualFile = this.getRelativePath( path.join(path.dirname(incorrectPath), actualName) ); const incorrectName = path.basename(incorrectPath); err.message = `Cannot find file: '${incorrectName}' does not match the corresponding name on disk: '${actualFile}'.`; } return err; } const file = this.getRelativePath(origin.resource); let details = _details.split('\n'); const request = /resolve '(.*?)' in '(.*?)'/.exec(details); if (request) { const isModule = details[1] && details[1].includes('module'); const isFile = details[1] && details[1].includes('file'); let [, target, context] = request; context = this.getRelativePath(context); if (isModule) { const isYarn = this.useYarnCommand(); details = [ `Cannot find module: '${target}'. Make sure this package is installed.`, '', 'You can install this package by running: ' + (isYarn ? chalk.bold(`yarn add ${target}`) : chalk.bold(`npm install ${target}`)) + '.', ]; } else if (isFile) { details = [`Cannot find file '${target}' in '${context}'.`]; } else { details = [err.message]; } } else { details = [err.message]; } err.message = [file, ...details].join('\n').replace('Error: ', ''); const isModuleScopePluginError = err.error && err.error.__module_scope_plugin; if (isModuleScopePluginError) { err.message = err.message.replace('Module not found: ', ''); } return err; } apply(compiler) { const { prettierError } = this; compiler.hooks.make.intercept({ register(tap) { if (!(tap.name === 'MultiEntryPlugin' || tap.name === 'EntryPlugin')) { return tap; } return Object.assign({}, tap, { fn: (compilation, callback) => { tap.fn(compilation, (err, ...args) => { if (err && err.name === 'ModuleNotFoundError') { err = prettierError(err); } callback(err, ...args); }); }, }); }, }); compiler.hooks.normalModuleFactory.tap('ModuleNotFoundPlugin', nmf => { nmf.hooks.afterResolve.intercept({ register(tap) { if (tap.name !== 'CaseSensitivePathsPlugin') { return tap; } return Object.assign({}, tap, { fn: (compilation, callback) => { tap.fn(compilation, (err, ...args) => { if ( err && err.message && err.message.includes('CaseSensitivePathsPlugin') ) { err = prettierError(err); } callback(err, ...args); }); }, }); }, }); }); } } module.exports = ModuleNotFoundPlugin;
Close