Skip to content

Instantly share code, notes, and snippets.

@rc-abodkins
rc-abodkins / binary_analysis_hunting.py
Last active July 5, 2021 18:06
This script searches binaries within VMware Carbon Black EDR
import argparse
import os
import configparser
import csv
import sys
from os.path import exists
import requests
#Console Output coloring. Makes knowing if you have any errors/ warnings easier to identify
err_Col = '\033[91m'