SX Corrects Climate Change by Hacking Weather Dominator


We're proud to announce that after years of research, we've finally utilized our backdoor into Cobra's network to hack the SCADA system that controls their weather dominator. As such, we've decided to use this hack to correct climate change - effective immediately. You're welcome.

Note: Cobra Commander could not be reached for comment.

Call For Testing: Cross-DSO CFI in HardenedBSD

Over the past year, HardenedBSD has been hard at work in integrating the Cross-DSO CFI implementation in llvm. We have reached a point where we can release an early (pre-alpha) public Call For Testing (CFT) of this work.

For reasons which will be described below, we recommend this CFT be used by those using root-on-ZFS with boot environments. We recommend testing in a dedicated boot environment.

This initial round of testing is best suited for development server installations. Production servers and desktops/laptops are not advised for testing at this time. We're looking for feedback on what works and doesn't work.

Introduction

Control Flow Integrity, or CFI, is an exploit mitigation that aims to make it harder for an attacker to hijack the control flow of an executable image. llvm's CFI implementation provides forward-edge protection, meaning it protects call sites and non-return code branches. llvm includes basic and incomplete backward-edge protection via SafeStack.

CFI in llvm consists of two flavors:

1. Non-Cross-DSO CFI
2. Cross-DSO CFI

For over a year now, HardenedBSD has adopted non-Cross-DSO CFI in 12-CURRENT/amd64. Support for non-Cross-DSO CFI was added for 12-CURRENT/arm64 on 01 July 2018. Non-Cross-DSO CFI applies CFI to the applications themselves, but not on the shared objects they depend on. Cross-DSO CFI applies CFI to both applications and shared objects, enforcing CFI across shared object boundaries.

When an application or shared object is compiled, its source files typically get compiled first to intermediate object files. Enabling Cross-DSO CFI requires compiling and linking both static and shared libraries with Link Time Optimization (LTO). When LTO is enabled, these object files are no longer ELF object files, but rather LLVM IR bitcode object files.

SX at Defcon 26 and Mojave Phone Booth

As usual, many of the crew members of soldierx.com will be at Defcon 26. Blake has also informed me that the chat software (for anonymous conversations) that is heavily used by folks at Defcon is feature complete. There's more information about this at https://en.wikipedia.org/wiki/Mojave_phone_booth. I would like to point out that the Mojave Phone Booth is in no way ran by soldierx.com despite some of the rumors online. The only relationship is that one of our crew members, Blake, wrote the software that powers the SMS and Signal portions of it. If you want to join it, please send SUBSCRIBE <ALIAS> to 760-733-9969 via SMS or Signal. <ALIAS> should be replaced with your desired alias.

If you're going to Defcon 26 and you'd like to meet up with members of soldierx.com, please follow this. You can also track us down in IRC and get more information that way. We look forward to seeing new and old faces in the desert this year.

Durandal Spotted Trying to Pick Up Kids Dressed as Pickle Surprise

Yesterday afternoon, children at a mall in Ohio where shocked to find that instead of the Easter Bunny - they found a man dressed as the pickle from the now infamous Pickle Surprise video (directed by Tom Rubnitz) was waiting for them. For a ten minute period, the individual, who has since been identified as Durandal, did nothing but yell "Pickle Surprise" and "HAI2U" at the children. He was also offering "free candy" before he fled the facility once mall security arrived. When asked about the incident, mall-goer Chad Newsom stated that, "I had no clue what was going on and thought it had something to do with Adult Swim." Currently, no charges are planned on being filed as despite the disturbing event that took place, no children were abducted thanks to mall security. A photo was captured of Durandal in his getup, which can be seen below:

If you happen to see him in your area, please contact the local authorities.

lattera to speak at Thotcon 0x9

My Thotcon presentation has been accepted! Below is the presentation abstract:

Without exploit mitigations and with an insecure-by-default design, writing malware for FreeBSD is a fun task, taking us back to 1999-era Linux exploit authorship.

Several members of FreeBSD's development team have claimed that Capsicum, a capabilities/sandboxing framework, prevents exploitation of applications. Our in-depth analysis of the topics below will show that in order to be effective, applying Capsicum to existing complex codebases lends itself to wrapper-style sandboxing. Wrapper-style sandbox is a technique whereby privileged operations get wrapped and passed to a segregated process, which performs the operation on behalf of the capsicumized process. With a new libhijack payload, we will demonstrate that wrapper-style sandboxing requires ASLR and CFI for effectiveness. FreeBSD supports neither ASLR nor CFI.

Tying into the wrapper-style Capsicum defeat, we'll talk about advances being made with libhijack, a tool announced at Thotcon 0x4. The payload developed in the Capsicum discussion will be used with libhijack, thus making it easy to extend.

We will also learn the Mandatory Access Control (MAC) framework in FreeBSD. The MAC framework places hooks into several key places in the kernel. We'll learn how to abuse the MAC framework for writing efficient rootkits.

Attendees of this presentation should walk away with the knowledge to skillfully and artfully write offensive code targeting both the FreeBSD userland and the kernel.

This presentation dives in depth regarding:
1) defeating wrapper-style Capsicum sandboxing with ret2sandbox_open (re-usable template exploit provided)
2) easy runtime process infection on amd64 and arm64
3) abusing the MAC framework to write rootkits (rootkit code will be released)

libhijack in PoC||GTFO 0x17!

It is with pride and pleasure that SoldierX's libhijack was featured in PoC||GTFO 0x17. Shawn Webb, the author of both libhijack and the article, spent months writing the article and going through a private peer review process.

The unedited version is posted below. The full issue can be found here (warning: large polyglot PDF). I hope you enjoy the article.

Hijacking Your Free Beasties
============================

In the land of red devils known as Beasties exists a system devoid of
meaningful exploit mitigations. As we explore this vast land of
opportunity, we will meet our ELFish friends, [p]tracing their very
moves in order to hijack them. Since unprivileged process debugging is
enabled by default on FreeBSD, we can abuse PTrace to create anonymous
memory mappings, inject code into them, and overwrite PLT/GOT entries.
We will revive a tool called libhijack to make our nefarious
activities of hijacking ELFs via PTrace relatively easy.

Nothing presented here is technically new. However, this type of work
has not been documented in this much detail, tying it all into one
cohesive work. In Phrack 56, Silvio Cesare taught us ELF research
enthusiasts how to hook the PLT/GOT. The Phrack 59 article on Runtime
Process Infection briefly introduces the concept of injecting shared
objects by injecting shellcode via PTrace that calls dlopen(). No
other piece of research, however, has discovered the joys of forcing
the application to create anonymous memory mappings in which to inject
code.

This is only part one of a series of planned articles that will follow
libhijack's development. The end goal is to be able to anonymously
inject shared objects. The libhijack project is maintained by the
SoldierX community.
Syndicate content