http paste webserver in go
Go to file
2024-08-19 13:54:33 -03:00
.gitignore feat: add file uploading functionality 2024-08-19 13:54:33 -03:00
go.mod feat: add basic working server 2024-08-19 12:48:30 -03:00
LICENSE Initial commit 2024-08-19 11:55:06 -03:00
main.go feat: add file uploading functionality 2024-08-19 13:54:33 -03:00
README.md feat: add file uploading functionality 2024-08-19 13:54:33 -03:00

abyss

abyss is a basic http server made for uploading files (logs, images) and then sharing them to the internet

note: this is a project made for learning purposes, you should use other more mature projects if running in production

running:

  • edit consts in main.go to match your needs. (for example, on server, change $url so that the response will be nicely formatted)

  • to run it, either build with go build -o abyss && ./abyss or run it directly with:

go run ./main.go
  • then, simply upload your files with curl:
curl -X POST -F "file=@/path/to/file" http://localhost:8080/upload # default url:port

todo:

  • add upload of logs funcionality (like 0x0.st)
  • add docker easy setup
  • add db for tracking of file names
  • add file browser (like file://)