#brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2025-05-19

πŸ“’ Last week, Brown Secure Systems Lab (SSL, gitlab.com/brown-ssl/) was at the IEEE Symposium on Security and Privacy (S&P) 2025, where we presented our latest work on hardening OS kernels against attacks that (ab)use heap-based memory-safety vulnerabilities. #IUBIK leverages memory tagging (MTE) and pointer authentication (PA), available in #ARM CPUs, to efficiently and effectively isolate attacker-controlled input from security-critical data in the kernel heap.

πŸ‘ Kudos to Marius Momeu (leading author) who did a terrific job presenting our paper -- joint work with Alexander Gaidis (Brown University) and Jasper von der Heidt (Technical University of Munich).

✳️ Paper: cs.brown.edu/~vpk/papers/iubik

πŸ’Ύ Code: github.com/tum-itsec/iubik (coming soon)

#iubik #mte #pac #acm #brownssl #browncs #ieeesp2025

Vasileios Kemerlisvkemerlis@infosec.exchange
2025-05-12

πŸ“’ Last week, I had the pleasure of visiting the beautiful University of Delaware to speak about supply chain security, and reconnect with friends and colleagues!

My talk, titled "Hardening the Software Supply Chain: Practical Post-Compilation Defenses", was part of the SAVES (Securing Autonomous Vehicle Ecosystems and Supply Chains) workshop at IEEE MOST (International Conference on Mobility: Operations, Services, and Technologies -- ieeemobility.org/MOST2025/). I discussed both the pressing open problems in this rapidly evolving field and the next-generation challenges of protecting critical infrastructure from software supply chain attacks.

I also shared a few highlights from our recent research efforts over the past five years re: supply-chain security:

✳️ BinWrap (ACM ASIACCS 2023, Distinguished Paper Award πŸ†: πŸ“„ cs.brown.edu/~vpk/papers/binwr, πŸ’Ύ github.com/atlas-brown/binwrap) -- HW-assisted (via Intel MPK) sandboxing of native Node.js add-ons.

✳️ sysfilter (RAID 2020: πŸ“„ cs.brown.edu/~vpk/papers/sysfi, πŸ’Ύ gitlab.com/brown-ssl/sysfilter) -- Automated system-call policy extraction and enforcement in binary-only applications.

✳️ Nibbler (ACSAC 2019: πŸ“„ cs.brown.edu/~vpk/papers/nibbl, πŸ’Ύ gitlab.com/brown-ssl/libfilter) -- Shared-library code debloating.

(Joint work with Nikos Vasilakis, Sotiris Ioannidis, Georgios Portokalidis, Rodrigo Fonseca, Di Jin, Grigoris Ntousakis, George Christou, David Williams-King, Ioannis Agadakos, and Nicholas DeMarinis.)

If this area of research interests you, you might also find our recent work on Quack (hardening PHP code against deserialization attacks, NDSS 2024: πŸ“„ cs.brown.edu/~vpk/papers/quack πŸ’Ύ github.com/columbia/quack) worth a look.

Thank you, Xing Gao and the University of Delaware CIS department for the warm welcome, thoughtful discussions, and the tour of the acclaimed CAR (thecarlab.org) lab!

#binwrap #sysfilter #nibbler #brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2025-04-06

πŸ“’ Honored to return to Yale University last week to speak at the Department of Computer Science colloquium on Operating Systems security -- exactly 10 years after my first talk there on the same topic!

In this "tin anniversary" edition, I reflected on how OS kernel exploitation and defense have evolved over the past decade, and shared highlights from some of our recent work in the field over the last five years:

✳️ xMP (IEEE S&P 2020: πŸ“„ cs.brown.edu/~vpk/papers/xmp.s, πŸ’Ύ github.com/virtsec/xmp) β€” Selective intra-kernel memory isolation using hardware-assisted virtualization.

✳️ SafeSLAB (ACM CCS 2024: πŸ“„ cs.brown.edu/~vpk/papers/safes, πŸ’Ύ github.com/tum-itsec/safeslab) β€” Kernel heap hardening through memory tagging.

✳️ EPF (USENIX ATC 2023: πŸ“„ cs.brown.edu/~vpk/papers/epf.a, πŸ’Ύ gitlab.com/brown-ssl/epf) β€” Exploiting the (e)BPF sub-system for bypassing modern protections and ways to fix this.

(Joint work with @mikepo, Marius Momeu, Vaggelis Atlidakis, @dijin, and Sergej Proskurin.)

If this area of research interests you, you might also find our recent work on BeeBox (strengthening eBPF against transient execution attacks, USENIX Security 2024: πŸ“„ cs.brown.edu/~vpk/papers/beebo, πŸ’Ύ gitlab.com/brown-ssl/beebox) and IUBIK (leveraging memory tagging and pointer authentication to isolate attacker-controlled data in kernel space, to appear in IEEE S&P 2025) worth a look.

It was a real pleasure catching up with friends, colleagues, and students. And with the spring weather fully cooperating, I couldn't resist snapping a few photos of Yale's beautiful campus in the early morning light.

Thank you to my host Charalampos Papamanthou and the Yale CS department for the warm welcome and thoughtful discussion!

#xmp #safeslab #epf #brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2025-01-09

As we welcome 2025, I'd like to take a moment to reflect on what an extraordinary year 2024 has been for Brown CS Secure Systems Lab (gitlab.com/brown-ssl/). It has been a year of innovation, creativity, and growthβ€”both for the lab and for me personally as its director. Witnessing the passion, dedication, and brilliance of our teamβ€”Neophytos Christou, Alexander Gaidis, Marius Momeu, @dijin, and Vaggelis Atlidakisβ€”has been truly fulfilling and inspiring!

In 2024, we tackled complex challenges and made significant strides in advancing our research on software hardening and OS kernel protection. Here are some highlights from this remarkable year:

✳️ Marius Momeu presented #SafeSlab at @acm_ccs #CCS2024. Safeslab hardens the Linux SLUB allocator against exploits that abuse use-after-free (#UaF) vulnerabilities, using #Intel #MPK. (Joint work with Technical University of Munich and @mikepo.)
πŸ“„ cs.brown.edu/~vpk/papers/safes
πŸ’Ύ github.com/tum-itsec/safeslab

✳️ Neophytos Christou presented #Eclipse at @acm_ccs #CCS2024. Eclipse is a compiler-assisted framework that propagates artificial data dependencies onto sensitive data, preventing the CPU from using attacker-controlled input during speculative execution.
πŸ“„ cs.brown.edu/~vpk/papers/eclip
πŸ’Ύ gitlab.com/brown-ssl/eclipse

✳️ Di Jin presented #BeeBox at the @usenixassociation Security Symposium 2024. BeeBox hardens #Linux BPF/eBPF against transient execution attacks. #usesec24
πŸ“„ cs.brown.edu/~vpk/papers/beebo
πŸ’Ύ gitlab.com/brown-ssl/beebox

✳️ Yaniv David presented #Quack at the NDSS Symposium 2024. Quack hardens PHP code against deserialization attacks using a novel (static) duck typing-based approach. (Joint work with Andreas D Kellas and Junfeng Yang.) #NDSSsymposium2024
πŸ“„ cs.brown.edu/~vpk/papers/quack
πŸ’Ύ github.com/columbia/quack

✳️ Marius Momeu presented #ISLAB at @ACM #ASIACCS24. ISLAB hardens SLAB-based (kernel) allocators, against memory errors, via SMAP-assisted isolation. (Joint work with Technical University of Munich and @mikepo.) #asiaccs
πŸ“„ cs.brown.edu/~vpk/papers/islab
πŸ’Ύ github.com/tum-itsec/islab

πŸ† #EPF (presented by Di Jin at @usenixassociation #ATC 2023) was the runner-up for the "Bug of the Year" award ("Weirdest Machine" category) at IEEE Symposium on Security and Privacy LangSec (Language-Theoretic Security) workshop 2024! #atc23 #LangSec
⌨️ langsec.org/spw24/bugs-of-the-
πŸ“„ cs.brown.edu/~vpk/papers/epf.a
πŸ’Ύ gitlab.com/brown-ssl/epf

πŸ… I am honored and delighted to have received the "Distinguished Reviewer Award" at @acm_ccs #CCS2024!

πŸ…Alexander Gaidis has been awarded the "Distinguished Artifact Reviewer" award at the @usenixassociation Security Symposium 2024!
cs.brown.edu/news/2024/09/20/b
#usesec24 #proudadvisor

πŸ“’ I had the great pleasure of discussing some of these works recently at the Computer Systems Seminar at Boston University!
πŸ“½οΈ bu.edu/rhcollab/events/bu-syst

#brownssl #browncs πŸš€

Vasileios Kemerlisvkemerlis@infosec.exchange
2024-10-15

πŸ“’ Off to #SaltLakeCity, #Utah for attending
@acm_ccs 2024! Brown Secure Systems Lab (gitlab.com/brown-ssl/) has a strong representation in #CCS2024:

* Marius Momeu will be presenting #SafeSlab: our work on hardening the Linux SLUB allocator, against exploits that abuse use-after-free (#UaF) vulnerabilities, using #Intel #MPK (Session 3-4, Software Security: Memory Safety and Error Detection) | cs.brown.edu/~vpk/papers/safes | github.com/tum-itsec/safeslab. (Joint work with Technical University of Munich and Stony Brook University.)

* Neophytos Christou will be talking about #Eclipse: a compiler-assisted framework for hardening C/C++ applications against speculative memory-error abuse attacks (Session 8-4, Software Security: Program Analysis and Security Enhancement) | cs.brown.edu/~vpk/papers/eclip | gitlab.com/brown-ssl/eclipse. (Joint work with Alexander Gaidis and Vaggelis Atlidakis.)

Brown CS participates in ACM CCS with five papers in total this year! In addition to the above, if interested, take a look at the following great (crypto/applied crypto) papers:

- PathGES: An Efficient and Secure Graph Encryption Scheme for Shortest Path Queries (Session 8-5, Applied Crypto: Crypto Applied to cloud computing and machine learning)

- Reconstructing with Even Less: Amplifying Leakage and Drawing Graphs (Session 9-6, Applied Crypto: Customized cryptographic solutions)

- RSA-Based Dynamic Accumulator without Hashing into Primes (Session 9-1, Applied Crypto: Integrity and Authentication)

#brownssl | #eclipse | #safeslab | #CCS2024

Vasileios Kemerlisvkemerlis@infosec.exchange
2024-08-13

πŸ“’ @dijin will be presenting our work on hardening #Linux (e)BPF against transient execution attacks at @usenixsecurity '24 tomorrow (Aug. 14, 1:45pm Track 2 -- "Side Channel I: Transient Execution")! Joint work with Alexander J. Gaidis. Paper: cs.brown.edu/~vpk/papers/beebo | Artifact: gitlab.com/brown-ssl/beebox | #brownssl #beebox #ebpf #bpf #usesec24

Vasileios Kemerlisvkemerlis@infosec.exchange
2024-07-08

EPF was the runner-up for the "Bug of the Year" award ("Weirdest Machine" category) at @ieeessp LangSec (Language-Theoretic Security workshop) 2024! langsec.org/spw24/bugs-of-the- | #brownssl #epf

Vasileios Kemerlisvkemerlis@infosec.exchange
2024-07-08

Marius Momeu at @ACM ASIA CCS 2024 presenting our work on hardening SLAB-based (kernel) allocators, against memory errors, via SMAP-assisted isolation -- joint work with @tu_muenchen, Sergej Proskurin, and @mikepo | cs.brown.edu/~vpk/papers/islab | #brownssl #islab

Vasileios Kemerlisvkemerlis@infosec.exchange
2024-05-29

It's official now, I got tenure 😎 🀘. I'm beyond grateful to all my students, collaborators, mentors, letter writers, and colleagues that made this happen -- thank you all!! #brownssl

cs.brown.edu/news/2024/05/20/v

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-11-26

πŸ“’ Off to #Copenhagen, #Denmark for #acm_ccs 2023! Alexander Gaidis will be presenting our work on adaptive system call filtering (SysXCHG) in session 6D (Kernel & Syscalls) -- Nov 28, 3PM-4PM. cs.brown.edu/~vpk/papers/sysxc | gitlab.com/brown-ssl/sysxchg | #brownssl #sysxchg

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-10-20

πŸ“’ Alexander Gaidis presented our (joint with Intel STORM team) work on FineIBT earlier this week at RAID 2023! FineIBT enhances forward-edge, hardware-assisted CFI schemes, like Intel IBT, with fine-grain enforcement capabilities. cs.brown.edu/~vpk/papers/finei | gitlab.com/brown-ssl/fineibt | #brownssl #fineibt

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-08-12

Brown Secure Systems Lab (gitlab.com/brown-ssl/) had a strong representation @usenixassociation sponsored events this year! Neophytos Christou presented IvySyn at USENIX Security Symposium (SEC) '23, while Di Jin talked about EPF at USENIX Annual Technical Conference (ATC) '23 earlier in July!

IvySyn fuzzes Deep Learning (DL) frameworks (TensorFlow, PyTorch) for memory-safety bugs and automatically synthesizes Python code snippets for triggering the respective vulnerabilities | usenix.org/.../usenixse.../pre | gitlab.com/brown-ssl/ivysyn

EPF (ab)uses the (e)BPF interpreter for bypassing various kernel hardening mechanisms in Linux -- we also introduce a set of lightweight defenses against EPF-style attacks | usenix.org/conference/atc23/pr | gitlab.com/brown-ssl/epf

#brownssl #ivysyn #epf #usenix #atc23 #usesec23

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-06-15

BinWrap won one of the Distinguished Paper awards at #ASIACCS 2023!! Extremely grateful to the technical program committee for this honor -- thank you, ASIACCS! #binwrap #brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-06-15

πŸ“’ Our work on abusing/hardening the #Linux BPF interpreter for/against kernel exploitation has been accepted at the 2023 @usenixassociation Annual Technical Conference (USENIX ATC)! Joint work with Di Jin and Vaggelis Atlidakis
| cs.brown.edu/~vpk/papers/epf.a | #epf #cbpf #ebpf #bpf #atc23 #brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-04-10

πŸ“’ Our work on hardening Node.js against memory-safety vulnerabilities in native (C/C++) add-ons has been accepted at #ASIACCS 2023! Joint work with Nikos Vasilakis, Sotiris Ioannidis, Aarno Labs, Grigoris Ntousakis, and George Christou! #binwrap #brownssl

Vasileios Kemerlisvkemerlis@infosec.exchange
2023-03-20

πŸ“’ Our work on automated discovery of memory safety vulnerabilities in Deep Learning (DL) frameworks has been accepted at USENIX Security
2023! Joint work with Neophytos Christou, Di Jin, Vaggelis Atlidakis, and Baishakhi Ray (Columbia) | arxiv.org/abs/2209.14921 | gitlab.com/brown-ssl/ivysyn | 39 CVEs 😎 🀘 πŸ’£ | #ivysyn #brownssl #usenixsecurity #usesec23

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst