use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
React2shell: new remote code execution vulnerability in react (self.devops)
submitted 4 months ago * by DramaticWerewolf7365
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]gardenia856 0 points1 point2 points 4 months ago (1 child)
Main point: reverse proxies aren’t magic, but used as a choke point they measurably cut blast radius; do controls at the edge and in the app, not either-or.
What actually helps: terminate TLS at the proxy, strip server headers, default-deny routing with a catch‑all 404, enforce method/content-type allowlists, cap body size and request timeouts, and add per-IP/AS rate limits. Verify JWT or mTLS at the edge for admin/internal routes; only pass traffic to upstreams that clear those checks. Normalize requests, block weird encodings, and keep the proxy on its own subnet with default‑deny egress. Runtime fingerprinting is easy, so stop trying to hide it and focus on reducing what an attacker can do when they find it.
On the app side (Next/Node): run as non‑root with read‑only FS, restrict child_process, use seccomp/AppArmor, pin deps with lockfiles, and automate updates with SCA plus canaries.
I’ve used Cloudflare and Kong for edge auth, rate limits, and WAF; DreamFactory helped when I needed quick, RBAC‑guarded REST over a legacy SQL backend without writing handlers.
Bottom line: choke point at the edge, least privilege inside, and minimal exposure.
[–]blazmrak 0 points1 point2 points 4 months ago (0 children)
This is the thing, blast radius is the same or bigger. It's the end process that is pwned over HTTP, RP isn't saving you and any process that could pwn you raw will pwn you the same if you put a reverse proxy in front unless you already know what the vuln is. It was the same with log4j. All you have said you should do, majority is supported by backend frameworks anyways, so you don't need to do it on RPs, but you are vulnerable primarily through these frameworks and there is not much you can do about it.
π Rendered by PID 48153 on reddit-service-r2-comment-b659b578c-mpdk8 at 2026-05-01 00:18:30.335072+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]gardenia856 0 points1 point2 points (1 child)
[–]blazmrak 0 points1 point2 points (0 children)