Skip to content

A Go implementation of Cobalt Strike style BOF/COFF loaders.

License

Notifications You must be signed in to change notification settings

sliverarmory/goffloader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goffloader - A pure Go implementation of an in-memory COFFLoader (and PE loader)

Goffloader is a library that allows easy in-memory execution of Cobalt Strike BOFs and unmanaged PE files.

Example Usage

Goffloader is designed to make loading of BOFs or PE files as straightforward as possible by using the go:embed tag. For example, to run an embedded executable and display its console output the code is:

import "github.com/praetorian-inc/goffloader/src/pe"

//go:embed hello.exe
var helloBytes []byte

func main() {
	output, _ := pe.RunExecutable(helloBytes, []string{"Arg1", "Arg2", "Arg3"})
	fmt.Println(output)
}

Full examples for running BOFs or PE files can be found in the cmd folder. The ability to run PE files is enabled via the No-Consolation BOF, and an example of executing that can be seen here

Why?

Given that there's already a number of very excellent C implementations of this functionality, why do this in Go?

  1. Adding BOF loading to Go expands the number of open source security projects that can be used within Go security tooling. There are entire repositories of useful functionality that are now accessible for Go tools via this library.
  2. While you can technically just use a C implementation of COFF loaders (Sliver does this, for example), CGO is annoying.
  3. Go is a nice language for static signature evasion. You can see an example of us being able to run an embedded version of mimikatz without jumping through too many hoops.
  4. Our open-source breach & attack simulation tests are written in Go...and we wanted this functionality.

Limitations

  • Currently the COFFLoader implementation is only for x64 architecture. 32-bit support will be coming soon.
  • At the moment the PE execution is just loading a BOF with hard-coded arguments - eventually a few different approaches will be supported.
  • The Beacon* API implementation is partial - most BOFs don't use much beyond the arg parsing + output functions, but there's a chunk of beacon.h which still needs to be implemented. This will be done as useful BOFs are identified that rely on these APIs.
  • Using this library in its current state will NOT generate a 0/N detections file on VT. Right now it's 2 or 3 detections from the usual offender false+ mills, but users should be aware of this.

Acknowledgements

About

A Go implementation of Cobalt Strike style BOF/COFF loaders.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 99.4%
  • C 0.6%