
moved some events into socket/index.js to better organize code created session.ssh property for application session variables moved crypto algorithms to config.json and assigned to ..session.ssh.algorithms variable
41 lines
No EOL
623 B
JSON
41 lines
No EOL
623 B
JSON
{
|
|
"listen": {
|
|
"ip": "127.0.0.1",
|
|
"port": 2222
|
|
},
|
|
"user": {
|
|
"name": null,
|
|
"password": null
|
|
},
|
|
"ssh": {
|
|
"host": null,
|
|
"port": 22,
|
|
"term": "xterm-color"
|
|
},
|
|
"header": {
|
|
"text": "My Header",
|
|
"background": "green"
|
|
},
|
|
"session": {
|
|
"name": "WebSSH2",
|
|
"secret": "mysecret"
|
|
},
|
|
"options": {
|
|
"challengeButton": true
|
|
},
|
|
"algorithms": {
|
|
"cipher": [
|
|
"aes128-cbc",
|
|
"3des-cbc",
|
|
"aes256-cbc",
|
|
"aes128-ctr",
|
|
"aes192-ctr",
|
|
"aes256-ctr"
|
|
],
|
|
"hmac": [
|
|
"hmac-sha1",
|
|
"hmac-sha1-96",
|
|
"hmac-md5-96"
|
|
]
|
|
}
|
|
} |