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 /
QuantumSeminar-main /
node_modules /
mz /
[ HOME SHELL ]
Name
Size
Permission
Action
HISTORY.md
1.11
KB
-rw-rw-r--
LICENSE
1.09
KB
-rw-rw-r--
README.md
2.83
KB
-rw-rw-r--
child_process.js
113
B
-rw-rw-r--
crypto.js
135
B
-rw-rw-r--
dns.js
240
B
-rw-rw-r--
fs.js
1.02
KB
-rw-rw-r--
index.js
206
B
-rw-rw-r--
package.json
1012
B
-rw-rw-r--
readline.js
1.64
KB
-rw-rw-r--
zlib.js
181
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fs.js
var Promise = require('any-promise') var fs try { fs = require('graceful-fs') } catch(err) { fs = require('fs') } var api = [ 'appendFile', 'chmod', 'chown', 'close', 'fchmod', 'fchown', 'fdatasync', 'fstat', 'fsync', 'ftruncate', 'futimes', 'lchown', 'link', 'lstat', 'mkdir', 'open', 'read', 'readFile', 'readdir', 'readlink', 'realpath', 'rename', 'rmdir', 'stat', 'symlink', 'truncate', 'unlink', 'utimes', 'write', 'writeFile' ] typeof fs.access === 'function' && api.push('access') typeof fs.copyFile === 'function' && api.push('copyFile') typeof fs.mkdtemp === 'function' && api.push('mkdtemp') require('thenify-all').withCallback(fs, exports, api) exports.exists = function (filename, callback) { // callback if (typeof callback === 'function') { return fs.stat(filename, function (err) { callback(null, !err); }) } // or promise return new Promise(function (resolve) { fs.stat(filename, function (err) { resolve(!err) }) }) }
Close