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 /
mime /
[ HOME SHELL ]
Name
Size
Permission
Action
types
[ DIR ]
drwxr-xr-x
LICENSE
1.07
KB
-rw-r--r--
Mime.js
2.82
KB
-rw-r--r--
cli.js
1.17
KB
-rw-r--r--
index.js
127
B
-rw-r--r--
lite.js
101
B
-rw-r--r--
package.json
2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cli.js
#!/usr/bin/env node 'use strict'; process.title = 'mime'; let mime = require('.'); let pkg = require('./package.json'); let args = process.argv.splice(2); if (args.includes('--version') || args.includes('-v') || args.includes('--v')) { console.log(pkg.version); process.exit(0); } else if (args.includes('--name') || args.includes('-n') || args.includes('--n')) { console.log(pkg.name); process.exit(0); } else if (args.includes('--help') || args.includes('-h') || args.includes('--h')) { console.log(pkg.name + ' - ' + pkg.description + '\n'); console.log(`Usage: mime [flags] [path_or_extension] Flags: --help, -h Show this message --version, -v Display the version --name, -n Print the name of the program Note: the command will exit after it executes if a command is specified The path_or_extension is the path to the file or the extension of the file. Examples: mime --help mime --version mime --name mime -v mime src/log.js mime new.py mime foo.sh `); process.exit(0); } let file = args[0]; let type = mime.getType(file); process.stdout.write(type + '\n');
Close