CyberChef-server
CyberChef-server copied to clipboard
A server providing RESTful access to CyberChef
Bumps [express](https://github.com/expressjs/express) from 4.16.4 to 4.17.3. Release notes Sourced from express's releases. 4.17.3 deps: accepts@~1.3.8 deps: mime-types@~2.1.34 deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps:...
Fixes the following issue: `npm ERR! could not detect node name from path or package`
In order to circumvent the problem that from version 15 of nodejs, npm install is triggered from root directory, a WORKDIR variable has to be used as explained in https://stackoverflow.com/questions/57534295/npm-err-tracker-idealtree-already-exists-while-creating-the-docker-image-for....
Example of a build process with an error: docker build -t cyberchef-server . Sending build context to Docker daemon 346.6kB Step 1/8 : FROM node:alpine3.10 ---> fd1f8547e2ff Step 2/8 :...
Add WORKDIR to avoid build errors
**Is your feature request related to a problem? Please describe.** Currently when you POST to `/bake` it returns a type and a value. If someone wanted to write the converted...
`outputType` is an optional parameter that can be specified when POSTing to `/bake`. When `outputType` is set as `"file"` or `7`, the application should return a file. **Describe the solution...
**Motivation: allow users to send files as part of multipart forms to cyberchef-server.** Features: - send input as "input" field in form: ``` curl -F "input= make it good" -...
Updated version of #17 that's based on the current master (as of submission). From there: > This is a straightforward change to add a /operations endpoint which can be used...
With this addition, you will be able to cpopy/paste deeplinks from the cyberchef UI (everything after the #) and paste it in as a query to `/bake` and it will...