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.137.152.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
uglify-js /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
extract-props.js
1.94
KB
-rw-r--r--
2017-06-14 03:17
uglifyjs
20.92
KB
-rwxr-xr-x
2017-06-14 03:17
Save
Rename
#! /usr/bin/env node "use strict"; var U2 = require("../tools/node"); var fs = require("fs"); var yargs = require("yargs"); var ARGS = yargs .describe("o", "Output file") .argv; var files = ARGS._.slice(); var output = { vars: {}, props: {} }; if (ARGS.o) try { output = JSON.parse(fs.readFileSync(ARGS.o, "utf8")); } catch(ex) {} files.forEach(getProps); if (ARGS.o) { fs.writeFileSync(ARGS.o, JSON.stringify(output, null, 2), "utf8"); } else { console.log("%s", JSON.stringify(output, null, 2)); } function getProps(filename) { var code = fs.readFileSync(filename, "utf8"); var ast = U2.parse(code); ast.walk(new U2.TreeWalker(function(node){ if (node instanceof U2.AST_ObjectKeyVal) { add(node.key); } else if (node instanceof U2.AST_ObjectProperty) { add(node.key.name); } else if (node instanceof U2.AST_Dot) { add(node.property); } else if (node instanceof U2.AST_Sub) { addStrings(node.property); } })); function addStrings(node) { var out = {}; try { (function walk(node){ node.walk(new U2.TreeWalker(function(node){ if (node instanceof U2.AST_Seq) { walk(node.cdr); return true; } if (node instanceof U2.AST_String) { add(node.value); return true; } if (node instanceof U2.AST_Conditional) { walk(node.consequent); walk(node.alternative); return true; } throw out; })); })(node); } catch(ex) { if (ex !== out) throw ex; } } function add(name) { output.props[name] = true; } }