Skip to content
/ realm Public
forked from spellshift/realm

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

License

Notifications You must be signed in to change notification settings

killvxk/realm

 
 

Repository files navigation

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/spellshift/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/spellshift/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/grpc/"
        }
        ]
    }
}
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.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 50.1%
  • Go 22.5%
  • TypeScript 21.5%
  • Shell 4.2%
  • HCL 0.6%
  • Dockerfile 0.4%
  • Other 0.7%