iam facing the below error, is there a way to enable this or support this Kex ? "Server does not support diffie-hellman-groupl-shal for keyexchange"
Or is there any special version source available with anyone ?
Is poderosa 5.7.6 special version or any other special version source is available with anyone
Thanks Iwasa Kazmi.
Hi Iwasa Kazmi , Thanks very much for your response, this is working. I have printed all the parameters under conn.connectionparameters in the above code, but this is not printed, i understand from your explanation this is not going to print the referenced parameter names of Poderosa.Protocols.SSHLoginParameter and others. May i know is there any brute force to print any type of object, like console.dir(object) something in JSCRIPT
How to retrieve the password of an active session in macros ? active session is of type SSH2. i Have written a below script, but i dont see password getting printed for an active session, iam new to VB, kindly guide me if we can typecase ConnectionParameters to SSHConnectionParam and then retrieve password or something? Attached the list of parameters that are printed based on below script execution. import System; import Poderosa.Macro; var env = new Poderosa.Macro.Environment(); var conn = env.Connections.ActiveConnection;...
function ssh_connect() { var loopcnt = 0; var param = new SSHTerminalParam( ConnectionMethod.SSH2, host, account, password); param.Caption = title+host_name; param.Encoding = EncodingType.UTF8; // SJIS ???? EncodingType.SHIFT_JIS param.TerminalType = "VT100"; param.AuthType = AuthType.Password; var c = env.Connections.Open(param); r = c.ReceiveData(); while(r.indexOf(passwait1)==-1 && r.indexOf(passwait2)==-1 && r.indexOf(passwait3)==-1 && r.indexOf(account+"@")==-1 && loopcnt r = c.ReceiveData();...