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 : 18.218.60.55
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 /
node-gyp /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Find-VS2017.cs
9.34
KB
-rw-r--r--
1985-10-26 08:15
build.js
7.24
KB
-rw-r--r--
1985-10-26 08:15
clean.js
378
B
-rw-r--r--
1985-10-26 08:15
configure.js
17.29
KB
-rw-r--r--
1985-10-26 08:15
find-node-directory.js
2.33
KB
-rw-r--r--
1985-10-26 08:15
find-vs2017.js
1.53
KB
-rw-r--r--
1985-10-26 08:15
install.js
14.78
KB
-rw-r--r--
1985-10-26 08:15
list.js
718
B
-rw-r--r--
1985-10-26 08:15
node-gyp.js
4.76
KB
-rw-r--r--
1985-10-26 08:15
process-release.js
5.99
KB
-rw-r--r--
1985-10-26 08:15
rebuild.js
308
B
-rw-r--r--
1985-10-26 08:15
remove.js
1.29
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
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