All Projects → alcohol → pastebin-php

alcohol / pastebin-php

Licence: MIT license
a simple pastebin implement in php

Programming Languages

PHP
23972 projects - #3 most used programming language
Makefile
30231 projects
Twig
543 projects
Dockerfile
14818 projects
CSS
56736 projects

Projects that are alternatives of or similar to pastebin-php

nnmm
A super tiny pastebin/url minifier "microservice"
Stars: ✭ 77 (+208%)
Mutual labels:  pastebin
shelf.gg
A pastebin to find and share useful resources 📚
Stars: ✭ 29 (+16%)
Mutual labels:  pastebin
omnibin
Android client for different bins like dogbin. Previous dogbin mobile.
Stars: ✭ 19 (-24%)
Mutual labels:  pastebin
piu.clj
Simple pastebin
Stars: ✭ 14 (-44%)
Mutual labels:  pastebin
dpaste
The Django project driving dpaste.org
Stars: ✭ 424 (+1596%)
Mutual labels:  pastebin
pastelyst
A Web Paste Tool built with Cutelyst and KDE Frameworks
Stars: ✭ 19 (-24%)
Mutual labels:  pastebin
EMAGNET
Automated hacking tool that will find leaked databases with 97.1% accurate to grab mail + password together from recent uploads from https://pastebin.com. Bruteforce support for spotify accounts, instagram accounts, ssh servers, microsoft rdp clients and gmail accounts
Stars: ✭ 1,427 (+5608%)
Mutual labels:  pastebin
jot
📝 A server-less pastebin app for short messages. Data is stored within the URL.
Stars: ✭ 33 (+32%)
Mutual labels:  pastebin
bin
highly opinionated, minimal pastebin
Stars: ✭ 97 (+288%)
Mutual labels:  pastebin
CryptDown
client-side AES-encrypted Markdown pastebin clone
Stars: ✭ 47 (+88%)
Mutual labels:  pastebin
binnit
minimal no-fuss pastebin service clone in golang
Stars: ✭ 27 (+8%)
Mutual labels:  pastebin
Jawbreaker
A Python obfuscator using HTTP Requests and Hastebin.
Stars: ✭ 50 (+100%)
Mutual labels:  pastebin
local-paste
Lightweight pastebin for home network which may or may not be connected to the internet.
Stars: ✭ 24 (-4%)
Mutual labels:  pastebin
uranus
[W.I.P] An ecosystem of crawlers for detecting: leaks, sensitive data exposure and attempts exfiltration of data
Stars: ✭ 22 (-12%)
Mutual labels:  pastebin
simple-pastebin-monitor
A simple pastebin monitor using the scraping API
Stars: ✭ 34 (+36%)
Mutual labels:  pastebin
Pastebin
Modern pastebin written in golang
Stars: ✭ 111 (+344%)
Mutual labels:  pastebin
PasteBinApp
iOS app for PasteBin
Stars: ✭ 27 (+8%)
Mutual labels:  pastebin
mathb
MathB.in - Mathematics Pastebin Written in Common Lisp
Stars: ✭ 203 (+712%)
Mutual labels:  pastebin
paste
paste is a simple web app for writing & sharing code.
Stars: ✭ 62 (+148%)
Mutual labels:  pastebin
pastebin-api
A very simple pastebin npm package to interact with the pastebin api!
Stars: ✭ 20 (-20%)
Mutual labels:  pastebin

alcohol/pastebin-php

I mostly use this demo application to keep myself up to date with the various changes introduced by new (major) Symfony releases.

Build Status codecov

Dependencies (external)

  • redis-server (production environment)

Testing

vendor/bin/phpunit

cURL examples

$ curl -X POST --data-binary 'Lorem ipsum' http://pastebin.tld
# 201 Created
# Location: /54ae
# X-Paste-Token: 99d6a7cb2f
http://pastebin.tld/54ae

$ curl http://pastebin.tld/54ae
# 200 OK
Lorem ipsum

$ curl -H 'X-Paste-Token: 99d6a7cb2f' -X PUT --data-binary 'Lipsum lorem' \
    http://pastebin.tld/54ae
# 204 No Content

$ curl http://pastebin.tld/54ae
# 200 OK
Lipsum lorem

$ curl -H 'X-Paste-Token: 99d6a7cb2f' -X DELETE \
    http://pastebin.tld/54ae
# 204 No Content

Contributing

Feel free to submit a pull request or create an issue.

License

alcohol/pastebin-php is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].