From 4a152aca63c1262b9c22f2dfd39695ca9d277fc6 Mon Sep 17 00:00:00 2001 From: haskal Date: Fri, 25 Sep 2020 02:07:44 -0400 Subject: [PATCH] change default command --- stream-ciphers/epic_drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream-ciphers/epic_drm.c b/stream-ciphers/epic_drm.c index 5ece5c3..3eb820b 100644 --- a/stream-ciphers/epic_drm.c +++ b/stream-ciphers/epic_drm.c @@ -13,7 +13,7 @@ */ void get_cmd(struct command_channel* chan, const uint8_t* key) { log("sending encrypted DRM command"); - uint8_t cmd[CMD_SIZE] = "echo 'sharks'"; + uint8_t cmd[CMD_SIZE] = "echo 'this shell command has been protected with Epic DRM(tm)'"; getrandom(chan->data.nonce, 24, 0); crypto_lock(chan->data.mac, chan->data.exec_cmd, key, chan->data.nonce, cmd, CMD_SIZE); chan->command = SUCCESS;