diff options
author | root <root@krebs> | 2011-09-14 20:36:50 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-09-14 20:36:50 +0200 |
commit | 04af55a06ba25e669a705b3c32a16e91fac05125 (patch) | |
tree | 5ac1d5ccb62a18b4a056872b9864abd5ba92f83b /cholerab | |
parent | a8ab9dbc2de0ee3aa744485255360b5e5e8b45cd (diff) | |
parent | e087646763cefc3dae49530fba866aa2bb713f46 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'cholerab')
-rw-r--r-- | cholerab/reaktor/priviliged_functions | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cholerab/reaktor/priviliged_functions b/cholerab/reaktor/priviliged_functions new file mode 100644 index 00000000..a673267e --- /dev/null +++ b/cholerab/reaktor/priviliged_functions @@ -0,0 +1,24 @@ +Use Case 1: Request update on Host +================================= + +< user> bot: update +< bot> /whois user +< bot> /msg user [CHALLENGE] +< user> /msg bot [CHALLENGE-RESPONSE] +< bot> updating... +< bot> now on rev XXXXX + +Command Flow +---------------- +The bot has a locally stored list of [trusted] hosts along with their public +key, preferably from the tinc/retiolum directory. + +The bot encrypts a 1K Byte long message with the public key of the host +retrieved by the /whois command. + +This challenge is sent to the user requesting the command via private message. +The user then decrpyts the message with its own private key and sends the +decrpyted message to the bot. + +The bot then executes the requested command if the challenge is answered +correctly |