├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── auth.go ├── cryptography.go ├── data └── settings.json ├── database.go ├── docker-compose.yaml ├── expiration.go ├── fileWriters.go ├── go.mod ├── go.sum ├── handlers.go ├── main.go ├── random.go ├── settings.go ├── static ├── auth.html ├── helper.js ├── index.html ├── qrcode.js ├── script.js ├── style.css └── theme.css └── templates ├── authTemplate.html ├── notFound.html └── pasteTemplate.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.bat 3 | *.db 4 | .vscode 5 | .idea 6 | uploads/ 7 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/README.md -------------------------------------------------------------------------------- /auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/auth.go -------------------------------------------------------------------------------- /cryptography.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/cryptography.go -------------------------------------------------------------------------------- /data/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/data/settings.json -------------------------------------------------------------------------------- /database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/database.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /expiration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/expiration.go -------------------------------------------------------------------------------- /fileWriters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/fileWriters.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/go.sum -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/handlers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/main.go -------------------------------------------------------------------------------- /random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/random.go -------------------------------------------------------------------------------- /settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/settings.go -------------------------------------------------------------------------------- /static/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/auth.html -------------------------------------------------------------------------------- /static/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/helper.js -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/index.html -------------------------------------------------------------------------------- /static/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/qrcode.js -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/style.css -------------------------------------------------------------------------------- /static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/static/theme.css -------------------------------------------------------------------------------- /templates/authTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/templates/authTemplate.html -------------------------------------------------------------------------------- /templates/notFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/templates/notFound.html -------------------------------------------------------------------------------- /templates/pasteTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/SuperBin/HEAD/templates/pasteTemplate.html --------------------------------------------------------------------------------