TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

The latest OpenSSL vulns were added fairly recently

179 pointsby pentestercrabover 2 years ago

13 comments

repyorgover 2 years ago
A lot of Linux people have the impression that LibreSSL is largely incompatible with OpenSSL (not true), that the ABI breaks every six months (not true), or that it requires heavy patching of downstream software work to maintain (not true anymore).<p>Here&#x27;s a recent presentation about LibreSSL and some of those points: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=bF1d_aCSzS0" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=bF1d_aCSzS0</a><p>Years ago there was also a big article from Alpine, one of the distros that tried to switch to it and had to switch back. The now-outdated article seems to be the main citation for those opposed to even giving LibreSSL a chance now. In fact Alpine is reconsidering a switch back from OpenSSL after the 3.x branch was shown to be such a disaster.<p>One of the LibreSSL developers summarized this recent OpenSSL issue in a commit message worth reading: <a href="https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-ports-cvs&amp;m=166731803502387&amp;w=2" rel="nofollow">https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-ports-cvs&amp;m=166731803502387&amp;w=2</a>
评论 #33438545 未加载
评论 #33445290 未加载
bell-cotover 2 years ago
If I recall, back when HeartBleed hit, the OpenSSL Project only had 1 FTE worth of paid developers &amp; managers working on their code.<p>Wikipedia claims that (<i>as of 2019</i>) they have 2 FTE&#x27;s worth, plus a dozen or so volunteers...who are a big overlap with their management committee. And their total budget is &lt; $1M&#x2F;year.<p>Not to suggest that volunteer coders are automatically lesser coders...but for widely-used, uber-critical, uber-complex code, that sounds pretty profoundly under-resourced.<p>Edit: Adding the full quote from Wikipedia: &quot;As of May 2019,[7] the OpenSSL management committee consisted of 7 people[8] and there are 17 developers[9] with commit access (many of whom are also part of the OpenSSL management committee). There are only two full-time employees (fellows) and the remainder are volunteers.&quot;
评论 #33444559 未加载
评论 #33440050 未加载
评论 #33442639 未加载
评论 #33438532 未加载
评论 #33446354 未加载
nooberminover 2 years ago
I haven&#x27;t really stayed up to date, but I recall the primary issue with openssl at the time of heartbleed was that it was basically a poorly manned project with little funding, yet billions of people rely on it daily. Has that situation changed at all since? It&#x27;s ironic the OP laments them &quot;not learning lessons&quot; since heartbleed, but if there was any lesson to learn it is that if everyone is going to rely on a piece of software it should get some love from the broader community. It&#x27;s good he found it but his harsh scolding tone is unfair given the situation...unless openssl has multiple SV salaried employees working full-time on it by now.
评论 #33439159 未加载
评论 #33438457 未加载
评论 #33438658 未加载
spullaraover 2 years ago
I find it odd that Google&#x27;s oss-fuzz didn&#x27;t find this a long time ago.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;google&#x2F;oss-fuzz&#x2F;blob&#x2F;master&#x2F;projects&#x2F;openssl&#x2F;build.sh" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;google&#x2F;oss-fuzz&#x2F;blob&#x2F;master&#x2F;projects&#x2F;open...</a>
concernedctznover 2 years ago
ASAN really is a blessing, any modern C code should at least give it a test run
lizardactivistover 2 years ago
A bit funny, a software library focused on cryptography, where security is an afterthought rather than proactive effort.<p>I would consider the alternatives before going to OpenSSL.
评论 #33437749 未加载
评论 #33444295 未加载
rebelwebmasterover 2 years ago
Isn&#x27;t openssl included in the oss-fuzz project? If hanno caught it this quickly with his fuzzer, would seem to be surprising if they didn&#x27;t also.
评论 #33441863 未加载
评论 #33439931 未加载
77pt77over 2 years ago
Developers at FAANG making half a million a yer, yet they can&#x27;t invest in the most critical library they use...
评论 #33441254 未加载
dingosityover 2 years ago
I&#x27;m reminded of ESR&#x27;s quip &quot;given enough eyeballs, all bugs are shallow.&quot; And that&#x27;s often true for projects that have obvious functionality and for which you&#x27;re not worried about cross cutting concerns like security or safety. I just remember a decade of working with federal contractors trying to disabuse them of the idea that they could just grab some random code off the internet and assume it was coded well enough to avoid simple, impactful vulnerabilities.
评论 #33440802 未加载
maximilianburkeover 2 years ago
I wonder if using WUFFS for certificate parsing is something that&#x27;d help keep these vulnerabilities at bay?
mbrodersenover 2 years ago
An example of proven correct networking code:<p><a href="https:&#x2F;&#x2F;www.microsoft.com&#x2F;en-us&#x2F;research&#x2F;blog&#x2F;project-everest-advancing-the-science-of-program-proof&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.microsoft.com&#x2F;en-us&#x2F;research&#x2F;blog&#x2F;project-everes...</a><p>This is the future.
Asookaover 2 years ago
I once added a &quot;very simple&quot; string manipulation utility function that was &quot;obviously correct&quot; and &quot;didn&#x27;t need any tests&quot;, then pushed directly to master. Suffice to say I don&#x27;t do that any more.
评论 #33441793 未加载
mrjinover 2 years ago
What if it was meant to?