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.15
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 /
share /
node-gyp /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
Find-VS2017.cs
9.34
KB
-rw-r--r--
build.js
7.24
KB
-rw-r--r--
clean.js
378
B
-rw-r--r--
configure.js
17.42
KB
-rw-r--r--
find-node-directory.js
2.33
KB
-rw-r--r--
find-vs2017.js
1.53
KB
-rw-r--r--
install.js
14.48
KB
-rw-r--r--
list.js
718
B
-rw-r--r--
node-gyp.js
4.76
KB
-rw-r--r--
process-release.js
5.99
KB
-rw-r--r--
rebuild.js
308
B
-rw-r--r--
remove.js
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remove.js
module.exports = exports = remove exports.usage = 'Removes the node development files for the specified version' /** * Module dependencies. */ var fs = require('fs') , rm = require('rimraf') , path = require('path') , log = require('npmlog') , semver = require('semver') function remove (gyp, argv, callback) { var devDir = gyp.devDir log.verbose('remove', 'using node-gyp dir:', devDir) // get the user-specified version to remove var version = argv[0] || gyp.opts.target log.verbose('remove', 'removing target version:', version) if (!version) { return callback(new Error('You must specify a version number to remove. Ex: "' + process.version + '"')) } var versionSemver = semver.parse(version) if (versionSemver) { // flatten the version Array into a String version = versionSemver.version } var versionPath = path.resolve(gyp.devDir, version) log.verbose('remove', 'removing development files for version:', version) // first check if its even installed fs.stat(versionPath, function (err, stat) { if (err) { if (err.code == 'ENOENT') { callback(null, 'version was already uninstalled: ' + version) } else { callback(err) } return } // Go ahead and delete the dir rm(versionPath, callback) }) }
Close