@octo-kumo/payload 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@octo-kumo/payload",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "payload for ctf challenge",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
8
8
  },
9
9
  "author": "",
10
- "license": "ISC"
10
+ "license": "ISC",
11
+ "__proto__": {
12
+ "hey": "yes"
13
+ }
11
14
  }
package/payload.tsx ADDED
@@ -0,0 +1,7 @@
1
+ export const Page = (props: { title: string; children: unknown }) => {
2
+ return (
3
+ <html>
4
+ Payload Engaged
5
+ </html>
6
+ )
7
+ }
package/payload.ts DELETED
@@ -1,3 +0,0 @@
1
- export function handler(arg) {
2
- console.log("Hello, world!");
3
- }