Figuring Out Where Appsec Fits When Starting a Cybersecurity Program – Tyler VonMoll – ASW #277
Full Audio
View Show IndexSegments
1. Figuring Out Where Appsec Fits When Starting a Cybersecurity Program – Tyler VonMoll – ASW #277
Lots of companies need cybersecurity programs, as do non-profits. Tyler Von Moll talks about how to get small organizations started on security and how to prioritize initial investments. While an appsec program likely isn't going to be one of the first steps, it's going to be an early one. What decisions can you make at the start that will benefit the program in the years that follow? What does an appsec program look like at a small scale?
Segment Resources:
Announcements
We're always looking for great guests for all of the Security Weekly shows! Submit your suggestions by visiting https://securityweekly.com/guests and completing the form!
Guest
Tyler is a cloud technology and cybersecurity leader who has a passion for helping people navigate the world of secure cloud computing and secure software delivery chains. He has been helping companies large and small across many different industries achieve operational excellence for over a decade. Beyond the laptop screen, he is also an avid vegetable gardener, and he truly treasures any time spent with a good book.
Hosts
2. Vulns in Smart Locks, FCC labels for IoT, ZAP’s New Home – ASW #277
Insecure defaults and insecure design in smart locks, FCC adopts Cyber Trust Mark labels for IoT devices, the ZAP project gets a new home, and more!
Announcements
Security Weekly listeners save $100 on their RSA Conference 2024 Full Conference Pass! RSA Conference will take place May 6 to May 9 in San Francisco and on demand. To register using our discount code, please visit securityweekly.com/rsac24 and use the code 54USECWEEKLY! We hope to see you there!
Hosts
- 1. Massively Popular Safe Locks Have Secret Backdoor Codes
A big part of this is a matter of transparency and design. There are use cases for a lock to support "manager" codes. However, the presence of such codes needs to be disclosed to users so those who don't need that support can disable it. This also means that a lock should support disabling such codes or, for a better default, require it to be explicitly enabled by the user.
Pushing for this type of transparency and secure defaults would be something we'd hope to see in the Cyber Trust Mark effort.
- 2. Sceiner firmware locks and associated devices are vulnerable to encryption downgrade and arbitrary file upload attacks
Here's a second smart lock article for this week. The other was more about failures in transparency and secure defaults, while this one looks more like failures in secure design.
The list of vulns reads like basic flaws that should have been discussed and addressed in its design. Why is an unencrypted connection possible? Why is downgrading the encryption of a connection possible? Why aren't keys deleted from the client and the lock?
Again, I'm curious how this situation would play with a Cyber Trust Mark. I wouldn't advocate revoking a label because a vuln exists, but when a vuln points to an underlying weak design (as opposed to an implementation error) I'd hope the mark would be revoked.
- 3. Vulnerability Reward Program: 2023 Year in Review
You probably know my stance by now on these kinds of articles -- big company spends lots of money on finding bugs. I would love to see how much money they spent on fixing the bugs, including changing processes and tooling to find not only the reported bug, but any similar ones.
However! There's a nice point in here about how the recent release of MiraclePtr in Chrome has both raised the difficulty of use-after-free exploits and reduced the rewards for bugs mitigated by it. (There are still hefty rewards for bypassing it.) That kind of secure design is what bug bounty programs should be driving.
We talked more about MiraclePtr back in episode 271.
This also linked to a Bughuners Blog that's worth following if you're interested in keeping up secure design concepts. That's much more interesting than how much money they spent.
- 4. Welcome ZAP to the Open Source Fellowship
Last year ZAP shifted from being an OWASP project to one within the OpenSSF. But...that OpenSSF funding dried up. Luckily, it's found a new home at Crash Override. What's notable about this is the funding model that Crash Override is using and their criteria for finding projects to support.
Be sure to check out episode 254, where we spoke with Simon Bennetts about how he came to create ZAP and his vision for its future.
- 5. FCC adopts voluntary ‘Cyber Trust Mark’ labeling rule for IoT devices
The FCC initially announced this IoT mark back in August 2023. Now they've adopted it, along with a preview of its logo. You can find the press release and more details of the program here.
As an aside, one thing I disliked about the press release was its emphasis on number of attacks when the underlying problem is the amount of vulns in these devices from insecure designs and insecure default configurations. The attacks are a byproduct of that and, of course, successful exploitation has a lot of negative impact to user's privacy and safety. I would have liked to see stronger language about vendor failures, but I suppose there needs to be a balance in the framing when an effort like this is purely voluntary.
- 6. Product security: barking up the wrong tree
This article is more of a reminder about how orgs are compromised and that enterprise security needs to mature to what's essentially a zero-trust model, such as token-based authentication, identification and access boundaries at the device layer, and pervasive observability.
It seems to be more optimistic about the state of appsec than I am. But the major point is that protecting an org (or even protecting a product and its ecosystem within an org) is more about familiar basics of asset inventory and strong authentication than it is any top ten list.
- 7. FYI: Participate in Our Survey on Secure Software Development Education!
OpenSSF is running a survey about secure software development education. This is a topic we talk about quite a bit, which also means we should reach out to the organizers and have them on the show to talk about the results. Go fill out the survey so we have something to talk about!
- 1. Another speculative execution vulnerability: Ghostrace
Vusec performed speculative execution research against the "common" synchronizations primitives such as mutexes and spinlocks, and found that on Linux these are implemented through conditional branch logic. This means that these primitives are vulnerable to spectre-style speculative execution attacks no matter the CPU architecture.
Since Spectre first came out, lots of research has also been done on more efficient ways to mitigate this class of attack. See https://www.comp.nus.edu.sg/~tcarlson/pdfs/pashrashid2023hemocsathr.pdf or https://ittc.ku.edu/~heechul/papers/spectreguard-dac2019-camera.pdf as two examples.
- 2. [Deep Thought] What if the OS was the Database?
Interesting piece in The Next Platform: When we compute at Scale nowdays, we're looking at 1000+ node clusters with terrrabytes of memory and disk. Really, this is not something most modern operating systems were build to handle tracking state and scheduling tasks for. Kubernetes and other do it at a higher level...but what if instead of putting a database on top of the OS, we replace the OS with the db?
What does that mean for security?