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 /
loader-utils /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
hash
[ DIR ]
dr-xr-xr-x
getCurrentRequest.js
359
B
-rw-rw-rw-
getHashDigest.js
2.15
KB
-rw-rw-rw-
getOptions.js
398
B
-rw-rw-rw-
getRemainingRequest.js
371
B
-rw-rw-rw-
index.js
926
B
-rw-rw-rw-
interpolateName.js
3.69
KB
-rw-rw-rw-
isUrlRequest.js
709
B
-rw-rw-rw-
parseQuery.js
1.5
KB
-rw-rw-rw-
parseString.js
436
B
-rw-rw-rw-
stringifyRequest.js
1.64
KB
-rw-rw-rw-
urlToRequest.js
1.66
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stringifyRequest.js
'use strict'; const path = require('path'); const matchRelativePath = /^\.\.?[/\\]/; function isAbsolutePath(str) { return path.posix.isAbsolute(str) || path.win32.isAbsolute(str); } function isRelativePath(str) { return matchRelativePath.test(str); } function stringifyRequest(loaderContext, request) { const splitted = request.split('!'); const context = loaderContext.context || (loaderContext.options && loaderContext.options.context); return JSON.stringify( splitted .map((part) => { // First, separate singlePath from query, because the query might contain paths again const splittedPart = part.match(/^(.*?)(\?.*)/); const query = splittedPart ? splittedPart[2] : ''; let singlePath = splittedPart ? splittedPart[1] : part; if (isAbsolutePath(singlePath) && context) { singlePath = path.relative(context, singlePath); if (isAbsolutePath(singlePath)) { // If singlePath still matches an absolute path, singlePath was on a different drive than context. // In this case, we leave the path platform-specific without replacing any separators. // @see https://github.com/webpack/loader-utils/pull/14 return singlePath + query; } if (isRelativePath(singlePath) === false) { // Ensure that the relative path starts at least with ./ otherwise it would be a request into the modules directory (like node_modules). singlePath = './' + singlePath; } } return singlePath.replace(/\\/g, '/') + query; }) .join('!') ); } module.exports = stringifyRequest;
Close