Show HN: Endpoints.dev – Pastebin for HTTP Requests
endpoints.dev
Show HN: Endpoints.dev – Pastebin for HTTP Requests
1–10 of 52 posts
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#2Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#3Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#4I've just released endpoints.dev - Use it to get a unique, private url that will store & display all http requests made to it. Use your unique URL with 3rd party tools to see what requests they are making, without needing to spin up a webserver. Or, use it for experimenting with XXS, phone-home, and other http based pen-testing.
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#5Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#6Great project! There is also alternative site that I used before - https://webhook.site/
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#7How do you generate that unique endpoint? Do you have some worker that generates https config? Whats your magic ?
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#8I've just released endpoints.dev - Use it to get a unique, private url that will store & display all http requests made to it. Use your unique URL with 3rd party tools to see what requests they are making, without needing to spin up a webserver. Or, use it for experimenting with XXS, phone-home, and other http based pen-testing.
Any advantages over http://requestbin.net/ ?
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#9How do you generate that unique endpoint? Do you have some worker that generates https config? Whats your magic ?
Not the author, but there's no config that needs to be generated. Just run a HTTPS server with a wildcard cert that serves all traffic from a wildcard 'vhost' *.example.com to your application code. Then, your application can just look at the Host header to see which 'endpoint' it should serve.
Re: Show HN: Endpoints.dev – Pastebin for HTTP Requests
#10Edit: Ahh, missed the JWT pairing. I read "Pastebin for" too literally.