cisagov / RedEye
- понедельник, 17 октября 2022 г. в 00:33:26
RedEye is a visual analytic tool supporting Red & Blue Team operations
Red Team C2 Log Visualization
RedEye is an open-source analytic tool developed by CISA and DOE’s Pacific Northwest National Laboratory to assist Red Teams with visualizing and reporting command and control activities. This tool, released in October 2022 on GitHub, allows an operator to assess and display complex data, evaluate mitigation strategies, and enable effective decision making in response to a Red Team assessment. The tool parses logs, such as those from Cobalt Strike, and presents the data in an easily digestible format. The users can then tag and add comments to activities displayed within the tool. The operators can use the RedEye’s presentation mode to present findings and workflow to stakeholders.
RedEye can assist an operator to efficiently:
The fastest way to get up and running is by downloading the latest RedEye
binaries for your operating system in the Releases section on GitHub.
RedEye currently supports uploading Cobalt Strike logs and offers both Red Team and Blue Team modes.
SERVER_BLUE_TEAM=false
environment variable or the
--redTeam
argument.Note: Both Red and Blue Team modes can be started from the same RedEye
application binary.
The Blue Team version can be run by double-clicking the RedEye
application binary.
RedEye
runs by default at http://127.0.0.1:4000
and will automatically open your default browser.
If a campaigns
folder is located in the same directory as the RedEye
application, RedEye will attempt to import any .redeye
campaign files within. Campaign files can be exported in the "Red Team" version.
To prepare a version for the Blue Team, follow these two steps:
RedEye
application binary to an empty folder.campaigns
folder in the same directory and place the .redeye
campaign files you want to send inside.The Red Team version comes in two parts:
RedEye
application binary andparsers
folder containing the cs-parser
Cobalt Strike log parser binary.There are two options to run RedEye:
AUTHENTICATION_PASSWORD=<your_password> ./RedEye --redTeam
.The application runs by default at http://127.0.0.1:4000
.
ARM support is experimental
Note: For Mac users, when first running the RedEye
application (and cs-parser
if using the Red Team version), you must go to "System Preferences" then "Security & Privacy" and click "Open Anyway".
Node.js >= v16
Install yarn: npm install -g yarn
Run: yarn install
// Installs all packages
Run either:
yarn release:all
to build a binary for Linux, macOS, and Windowsyarn release --platform (mac|win|linux)
to build for a specific platform.npm install -g yarn
yarn install
// Installs all packagesRuns the project in development mode
yarn run start
It is recommended to run the server and client in two separate terminals
yarn run start:client
yarn run start:server
yarn build:all
to build all applications and their dependent libraries
AUTHENTICATION_PASSWORD=937038570
AUTHENTICATION_SECRET=supertopsecretdonttellanyone
DATABASE_MODE=DEV_PERSIST
SERVER_BLUE_TEAM=false
SERVER_PRODUCTION=false