Skip to content

trustedsec/CS-Remote-OPs-BOF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Remote Operations BOF

This repo serves as an addition to our previously released SA repo. Our original stance was that we would not release our tooling that modified other systems, and we would only provide information gathering tooling in a ready to go format.

Over time, we have seen many other public security companies release their offensive facing tooling, and we now feel it is appropriate for us to release a portion of our offensive tooling.

Nothing in this repo is particularly special, it is basic Microsoft Windows operations in BOF form. These primitives can be used for a large variety of operations.

Injection BOF

We have decided to include the injection BOFs that we use when doing EDR detection testing. These BOFs are provided as is and will not be supported (everything under src/Injection and Injection/*)

You are welcome to use these, but issues opened related to these will be closed without review.

Available Remote Operations commands

Command Usage Notes
adcs_request adcs_request CA [opt:TEMPLATE] [opt:SUBJECT] [opt: ALTNAME] [opt: INSTALL] [opt:MACHINE] Request an enrollment certificate
adcs_request_on_behalf adcs_request_on_behalf [TEMPLATE] [REQUESTER] [ENROLLMENT_AGENT.pfx] [Download_Name] Request an enrollment certificate on behalf of another user
adduser adduser Add specified user to a machine
addusertogroup addusertogroup Add specified user to a group
chromeKey chromeKey Decrypt the provided base64 encoded Chrome key
enableuser enableuser Enable and unlock the specified user account
get_azure_token get_azure_token <browser (see below)> [opt: hint] [opt: browser_path] Attempts to complete an OAuth codeflow grant against azure using saved logins
get_priv get_priv Activate the specified token privledge, more for non-cobalt strike users
global_unprotect global_unprotect Locates and Decrypts GlobalProtect config files converted from: GlobalUnProtect
lastpass lastpass ,, ... Search Chrome, brave memory for LastPass passwords and data
make_token_cert make_token_cert <path to .pfx> [opt: password] Impersonates a user using the altname of a .pfx file
office_tokens office_tokens Collect Office JWT Tokens from any Office process
procdump procdump Dump the specified process to the specified output file
ProcessDestroy ProcessDestroy OPT:HANDLEID Close handle(s) in a process
ProcessListHandles ProcessListHandles List all open handles in a specified process
reg_delete reg_delete OPT:HOSTNAME OPT:REGVALUE Delete a registry key
reg_save reg_save Save a registry hive to disk
reg_set reg_set OPT:HOSTNAME Set / create a registry key
sc_config sc_config OPT:HOSTNAME Configure an existing service
sc_create sc_create OPT:TYPE OPT:HOSTNAME Create a new service
sc_delete sc_delete OPT:HOSTNAME Delete an existing service
sc_failure sc_failure OPT:HOSTNAME Configures the actions upon failure of an existing service
sc_description sc_description OPT:HOSTNAME Modify an existing services description
sc_start sc_start OPT:HOSTNAME Start an existing service
sc_stop sc_stop OPT:HOSTNAME Stop an existing service
schtaskscreate schtaskscreate OPT:HOSTNAME Create a new scheduled task (via xml definition)
schtasksdelete schtasksdelete OPT:HOSTNAME Delete an existing scheduled task
schtasksrun schtasksrun OPT:HOSTNAME Start a scheduled task
schtasksstop schtasksstop OPT:HOSTNAME Stop a running scheduled task
setuserpass setuserpass Set a user's password
shspawnas shspawnas <opt: shellcodefile> A misguided attempt at injecting code into a newly spawned process
shutdown shutdown "" Shutdown or reboot a local or remote computer, with or without a warning/message
slack_cookie slack_cookie Collect the Slack authentication cookie from a Slack process
unexpireuser unexpireuser Set a user account to never expire
ghost_task ghost_task <hostname/localhost> <time/second> Add/Delete a ghost task.

Contributing

This repo is intended for single task Windows primitives. That is to say, even if it takes multiple calls, creating a scheduled task is appropriate.

A command that would attempt to pre-generate an implant and perform automated movement using the BOFs in this repo would be awesome. But is not appropriate for submission to this repo directly.

Code expectations

  • Your code should compile without errors when using the default makefile
  • Any new BOF defines for resolving functions will be placed in src/common/bofdefs.h
  • Code will compile together using the default Makefile (single entry.c file)
  • Code will likewise be compatible with the existing toolchain (mingw)
  • Code will be written in C. This is to standardize and my personal confidence in validating the code.

What to expect as a contributor

After a pull request is received, it will receive an in-depth code review and testing.
After testing is completed, we will have zero or more rounds of change requests based on findings until there are no issues in the code. At that point it will be accepted into the repository, and your GitHub username will be added to our credit list. If you would prefer not to be added or some other handle to be used, just let me know.

Want to Learn More?

If you've found these beacon object files helpful and want to write some of your own bofs following a similar style we invite you to check out our Beacon Object File (BOF) Development course.
The course gives a breif overview of the history of beacon object files and then dives into a variety of challenge problems that aim to teach you how to leverage a variety of windows technologies when developing your own beacon object files.