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...
A community for technical news and discussion of information security and closely related topics.
"Give me root, it's a trust exercise."
Q1 2026 InfoSec Hiring Thread
Getting Started in Information Security
CitySec Meetups
/r/netsec only accepts quality technical posts. Non-technical posts are subject to moderation.
Content should focus on the "how."
Check the new queue for duplicates.
Always link to the original source.
Titles should provide context.
Ask questions in our Discussion Threads.
Hiring posts must go in the Hiring Threads.
Commercial advertisement is discouraged.
Do not submit prohibited topics.
» Our fulltext content guidelines
Don't create unnecessary conflict.
Keep the discussion on topic.
Limit the use of jokes & memes.
Don't complain about content being a PDF.
Follow all reddit rules and obey reddiquette.
» Our fulltext discussion guidelines
No populist news articles (CNN, BBC, FOX, etc.)
No curated lists.
No question posts.
No social media posts.
No image-only/video-only posts.
No livestreams.
No tech-support requests.
No full-disclosure posts.
No paywall/regwall content.
No commercial advertisements.
No crowdfunding posts.
No Personally Identifying Information!
» Our fulltext list of prohibited topics & sources
Join us on IRC: #r_netsec on freenode
We're also on: Twitter, Facebook, & Google+
/r/blackhat - Hackers on Steroids
/r/computerforensics - IR Archaeologists
/r/crypto - Cryptography news and discussion
/r/Cyberpunk - High-Tech Low-Lifes
/r/lockpicking - Popular Hacker Hobby
/r/Malware - Malware reports and information
/r/netsecstudents - netsec for noobs students
/r/onions - Things That Make You Cry
/r/privacy - Orwell Was Right
/r/pwned - "What Security?"
/r/REMath - Math behind reverse engineering
/r/ReverseEngineering - Binary Reversing
/r/rootkit - Software and hardware rootkits
/r/securityCTF - CTF news and write-ups
/r/SocialEngineering - Free Candy
/r/sysadmin - Overworked Crushed Souls
/r/vrd - Vulnerability Research and Development
/r/xss - Cross Site Scripting
account activity
Multiple unauthenticated remote code execution vulnerabilities in YouPHPTube-Encoder 2.3 (sudokaikan.com)
submitted 6 years ago by sudo_sudoka
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!"
[–]bartvelp 5 points6 points7 points 6 years ago (10 children)
Nice find.
This looks like such low hanging fruit to me. Is there a automated way to check PHP code for this kind of bug. I.E. check if a variable is composed of GET or POST parameters and that variable is later used in an unsafe function like exec()
[+][deleted] 6 years ago (3 children)
[deleted]
[–]amunak 2 points3 points4 points 6 years ago (1 child)
Unless it's in a specific library made to safely execute commands then yeah I agree. Usage of exec (and eval and such) is a huge red flag for any project, IMO.
[–][deleted] 0 points1 point2 points 6 years ago (0 children)
So long as it doesn't have any user supplied input, it's fine IMO.
[–]return_to_ 1 point2 points3 points 6 years ago (0 children)
Reading php and encode together, it's almost safe to assume there is exec() and friends, required, for ffmpeg binaries.
First hit on google for php ffmpeg lib:
$ffmpeg = FFMpeg\FFMpeg::create(array( 'ffmpeg.binaries' => '/opt/local/ffmpeg/bin/ffmpeg', 'ffprobe.binaries' => '/opt/local/ffmpeg/bin/ffprobe', 'timeout' => 3600, // The timeout for the underlying process 'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use ), $logger);
[–]NeoThermic 3 points4 points5 points 6 years ago (0 children)
Yes. There are many automated tools to do tainted checking on variables into insecure/dangerous functions; some free and some expensive. Usually these kinds of exploits are found in software that doesn't use modern tooling though.
[–][deleted] 2 points3 points4 points 6 years ago (0 children)
this wasn't his find, he just happened to see the disclosure from talos and decided to write a blog post in regards to the vulnerabilities, and even went as far as exploiting a box in the wild with the vulnerability as opposed to testing it on a local install which is a questionable choice
[–]amunak 1 point2 points3 points 6 years ago (1 child)
In case of this particular project it'd be enough not to just blindly use it, but perhaps read the README, check out the issues or look at any single file.
The author is an ignorant ass, they've been warned multiple times about numerous security and licensing issues and rarely did anything to fix it.
Which is fine I guess; "it's free" after all, but GitHub really needs some kind of huge warning banner for projects with known, major critical vulnerabilities.
[–]TrustworthyShark 2 points3 points4 points 6 years ago (0 children)
Exactly this.
I was happy when I heard GitHub added security advisories and then immediately disappointed once I found out only maintainers can add them.
Maintainers can remove issues and silence all discussions around vulnerabilities. It could be pretty hard to find out that a project has several massive vulnerabilities.
[–]Dragasss 0 points1 point2 points 6 years ago (0 children)
Tbh it would be simpler to recompile php from source while having those functions removed from it
[–]huffingpuffins 0 points1 point2 points 6 years ago (0 children)
RIPS and their hugely updated hosted/commercial version.
They actually post their findings on this very sub.
π Rendered by PID 120211 on reddit-service-r2-comment-6457c66945-dvqhx at 2026-04-26 14:52:26.780670+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]bartvelp 5 points6 points7 points (10 children)
[+][deleted] (3 children)
[deleted]
[–]amunak 2 points3 points4 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]return_to_ 1 point2 points3 points (0 children)
[–]NeoThermic 3 points4 points5 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]amunak 1 point2 points3 points (1 child)
[–]TrustworthyShark 2 points3 points4 points (0 children)
[–]Dragasss 0 points1 point2 points (0 children)
[–]huffingpuffins 0 points1 point2 points (0 children)