No description
Find a file
2023-10-31 13:43:20 +00:00
deployments/docker update dependicies, fix profile page 2023-02-12 16:44:45 -05:00
public change watermark 2023-10-31 09:40:04 -04:00
src thiccer 2023-09-24 00:47:22 -04:00
.dockerignore docker 2023-01-28 13:14:53 -05:00
.gitignore gitignore 2023-01-31 22:22:32 -05:00
Cargo.lock websocket 2023-08-21 15:16:48 -04:00
Cargo.toml websocket 2023-08-21 15:16:48 -04:00
LICENSE docker 2023-01-28 13:14:53 -05:00
README.md Update 'README.md' 2023-10-31 13:43:20 +00:00

xssbook

description

who doesn't want to run non free javascript

now with xssbook you can run as much stallman disapprovement as you want

  • all inputs on the site are unfiltered
  • api calls dont care what you send them as long as they are valid strings
  • /console page to see everyones amazing api calls
  • /admin page for adnim things
  • /docs for api documentation

installation

The project is written in rust, so you can build it by running

cargo build --release

Next, make sure where you are runing the binary from, that you copy the sources public folder to the same directory. The public folder is needed to server html, css, js, and font files.

Next, the /admin page is protected by a set secret. By default this is set to admin, but you should change it by setting the SECRET environment variable.

Finally, the site runs on port 8080, so its recommended you put it behind a reverse proxy, or you could use a docker container and remap the outsite port (see below).

docker

If you want to run it in a docker container a premade dockerfile is here for you

docker build -f deployments/docker/Dockerfile -t xssbook .

There is also a docker-compose.yml file for your reference in the /deployments/docker folder.

There are two volumes you have to make for the container. First one for the database otherwise all data will be wiped upon container restart. You only should volume the database file so create the vollume with the directory below.

touch [your directory]/xssbook.db

-v [your directory]/xssbook.db:/data/xssbook.db

You have to create the database file beforehand because otherwise docker will create a folder there instead, and then the program will crash when it tries to load a folder as a database.

Finally, you have to make a volume to store custom user avatars and banners. Without this, this data too will be lost upon contaienr restart. To make the volume simply run this with your container.

-v [another directory]:/data/public/image/custom

reverse proxy

Finally if you are using docker by itself, a reverse proxy, or both, the ip send to the container likily will not be the correct ip. xssbook looks for headers x-forwarded-for, x-real-ip, and forwarded to check for proxies. So make sure to have those headers set. Or if your running just docker, you could also run the docker container on the host network instead of on the bridge network.

license

This amazing project is licensed under the WTFPL