sasqwatch / realm

Realm is a cross platform Red Team engagement platform with a focus on automation and reliability.

Home Page:https://docs.realm.pub/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Realm

test-status codecov Go Report Card Rust Report Card Docs

Realm is a cross platform Red Team engagement platform with a focus on automation and reliability.

realm-logo

Features

Agent (imix)

  • Written in rust with support for MacOS, Linux, and Windows.
  • Supports long running tasks by reading output from tasks in real time.
  • Interval callback times.
  • Simple file based configuration.
  • Embedded files.
  • Built-in interpreter.

Server (tavern)

  • Web interface.
  • Group actions.
  • graphql backend for easy API access.
  • OAuth login support.
  • Cloud native deployment with pre-made terraform for production deployments.

Built-in interpreter (eldritch)

Quickstart guide

To deploy a production ready instance see the tavern setup guide.

Start the server

git clone https://github.com/KCarretto/realm.git
cd realm
go run ./tavern

# If you'd like to test without deploying an agent use the test data.
ENABLE_TEST_DATA=1 go run ./tavern

Start the agent

git clone https://github.com/KCarretto/realm.git
cd realm/implants/imix

# Create the config file
cat <<EOF > /tmp/imix-config.json
{
    "service_configs": [],
    "target_forward_connect_ip": "127.0.0.1",
    "target_name": "test1234",
    "callback_config": {
        "interval": 4,
        "jitter": 1,
        "timeout": 4,
        "c2_configs": [
        {
            "priority": 1,
            "uri": "http://127.0.0.1/graphql"
        }
        ]
    }
}
EOF

cargo run -- -c /tmp/imix-config.json

Want to contribute start here

https://docs.realm.pub/dev-guide/introduction

About

Realm is a cross platform Red Team engagement platform with a focus on automation and reliability.

https://docs.realm.pub/

License:GNU General Public License v3.0


Languages

Language:Rust 49.7%Language:Go 22.1%Language:TypeScript 20.2%Language:Shell 6.0%Language:HCL 0.9%Language:Dockerfile 0.5%Language:HTML 0.5%Language:CSS 0.1%Language:JavaScript 0.0%Language:Batchfile 0.0%