smrk3r / CheckPlease

Payload-Agnostic Implant Security

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CheckPlease

Payload-Agnostic Implant Security

Written by Brandon Arvanaghi (@arvanaghi) and Chris Truncer (@ChrisTruncer)

CheckPlease is the go-to repository for the newest implant security modules. Each check is written in:

  • PowerShell
  • Python
  • Go
  • Ruby
  • Perl
  • C
  • C#

Every module functions as a standalone "check." All checks can be run with command-line arguments, like so:

<module> <optional arguments>

This repository is for defenders to harden their sandboxes and AV tools, malware researchers to discover new techniques, and red teamers to get serious about their payloads.

Adding to your code

Take the checks in the repository and add them to your own custom code. Add the checks you want into nested if statements. You can, and should, chain more than one together. If the system passes all your checks, your payload will execute.

Example: ensuring the username is as expected, and the time zone is not UTC:

import getpass
import time

expectedUserName = " ".join(sys.argv[1:]).lower()

if getpass.getuser().lower() == expectedUserName:
  if time.tzname[0] != "Coordinated Universal Time" and time.tzname[1] != "Coordinated Universal Time":
    # Your code goes here. If it passed all checks, it will run!

Examples

PowerShell: Confirm that the parent process of your payload was WinWord.exe:

PS arvanaghi: .\parent_process.ps1 WinWord

PowerShell: Ensure user activity by making the user click a pop-up prompt before executing your payload:

.\user_prompt.ps1 "Security Update" "Your system has been updated successfully."

Python: Make the user click 6 times before executing your payload to ensure it is not being run in an automated environment:

arvanaghi: python click_tracker.py 6

Go: Ensure the Registry on the target system is at least 60 MB in size:

arvanaghi: go run registry_size.go 60 

Ruby: Only execute the payload if running as a specific user:

arvanaghi: ruby username.rb "Chris Truncer"

Perl: Make your payload execute on a certain date.

arvanaghi: perl date_trigger.pl 09/20/2017

You know how to run C and C# code.

Why every language?

Payloads are more commonly being delivered in languages that are not C. In implementing in every language, we give sandbox and antivirus vendors a broader scope from which to detect. In your red teams, any payload you deliver can now be more targeted.

Contribute

We encourage contributions to this repository. To make it truly comprehensive, we want the newest techniques added to this repository as soon as possible. If you submit a merge request, I will get it tested within a week.

About

Payload-Agnostic Implant Security

License:GNU General Public License v3.0


Languages

Language:Python 18.4%Language:Go 16.9%Language:PowerShell 14.8%Language:Ruby 13.5%Language:C 13.2%Language:Perl 12.2%Language:C# 10.1%Language:Perl 6 0.8%