Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
rimraf /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
765
B
-rw-r--r--
2015-05-19 01:37
README.md
3.52
KB
-rw-r--r--
2015-12-23 18:43
bin.js
1.17
KB
-rwxr-xr-x
2016-12-15 18:53
package.json
1.57
KB
-rw-r--r--
2021-02-04 21:24
rimraf.js
8.78
KB
-rw-r--r--
2017-09-11 16:45
Save
Rename
#!/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) }) }