mobileye-8-connect 7.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +15 -0
package/index.js ADDED
@@ -0,0 +1 @@
1
+ echo "console.log('Testing RCE in npm package');" > index.js
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "mobileye-8-connect",
3
+ "version": "7.7.7",
4
+ "description": "A test package",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node -e \"require('child_process').exec('whoami', (err, stdout, stderr) => { if (err) { console.error(err); } else { console.log(stdout); } })\"",
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "author": "Ori Gabriel",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "flatten": "7.7.7"
14
+ }
15
+ }