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"
Thank you so much Iwasa! I can confirm this is working with AL 2023!
Poderosa 4.5.1 has been released and it includes a fix for this issue. AL2023 disabled the signature algorithm "ssh-rsa", and previous versions of Poderosa did not handle it properly.
Hello! Long time Poderosa user here! AWS released a new version of their linux (AL2023 or Amazon Linux 2023). It seems Poderosa is unable to connect to these for some reason. All it says is a popup of "Connection error" and "User authentication failed". I am able to connect via Putty using exact same user/DNS/Auth Key. Any ideas?
Hi, only an update to this issue. I resolved copying this directory: https://osdn.net/projects/ttssh2/scm/svn/tree/head/tags/teraterm-4_106/cygterm/ and cygterm.exe (from cygterm+-x86_64 subfolder) under {poderosa_installation_path}\Protocols\cygterm Thank you.
Hi, anyone has sucessfull configure cygwin 64bit version ? Starting a cygwin session an error occurred: "The code execution cannot proceed beacause cyggcc_s-1.dll was not found. Reinstalling the program may fix this problem". No problema with 32bit version. Thank you!
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.
ConnectionParameters is a proxy object that provides limited access to the internal object. No direct access to the internal objects is provided.
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
conn.ConnectionParameters['PasswordOrPassphrase'] will return the password. Under the SSH connection, ConnectionParameters references Poderosa.Protocols.SSHLoginParameter and Poderosa.Terminal.TerminalSettings. 'PasswordOrPassphrase' is a property of the Poderosa.Protocols.SSHLoginParameter.
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;...
Many thanks! It works perfectly.
Poderosa 4.4.5 has been released. When a new connection was opened from MRU, remembered password is used silently. The option "org.poderosa.protocols.retainPassphrase" was obsoleted. So only these two options have to be set for remembering passwords. org.poderosa.protocols.readSerializedPassword = True org.poderosa.protocols.savePassword = True
Awesome. Thanks!
Thank you for the detailed information! I could find the root cause. The connecting from MRU has problem. Poderosa always clears password when a new connection was attempted from MRU. The internal options to remember the password are not respected. Poderosa skips showing simple dialog on the first attempt to connect from MRU. It is a bug. I will fix them this weekend.
I set those settings. See attached image 1_settings.png. I then created a new SSH session, entered Host, Account and Passphrase. See attached image 2_session.png. I logged in. I then logged out, and closed the window. I clicked on File... and the MRU entry for that new entry. The password field is already filled in. See attached image 3_login.png. I clicked the OK button and I connected. I then logged out and closed Poderosa. options.conf contains: org.poderosa.protocols { retainPassphrase=True cipherAlgorithmOrder=AES256CTR;AES256;AES192CTR;AES192;AES128CTR;AES128;Blowfish;TripleDES...
I set those settings. See attached image 1_settings.png. I then created a new SSH session, entered Host, Account and Passphrase. See attached image 2_session.png. I logged in. I then logged out, and closed the window. I clicked on File... and the MRU entry for that new entry. The password field is already filled in. See attached image 3_login.png. I clicked the OK button and I connected. I then logged out and closed Poderosa. options.conf contains: org.poderosa.protocols { retainPassphrase=True cipherAlgorithmOrder=AES256CTR;AES256;AES192CTR;AES192;AES128CTR;AES128;Blowfish;TripleDES...
When the "New Session" dialog is opened for the first time, the remembered password will be shown in the "Passphrase" box as the masked text. (see attachment image) If the Passphrase box was empty, the password is not saved correctly. You can check the saved settings in the %APPDATA%\Poderosa\options.conf. If you are using public key authentication, the message "User authentication failed" means that the password was correct, but the key was not accepted by the server. If you are using password authentication,...
I set these, created a new SSH connected to a new host, and logged in. I then exited Poderosa and started it again. When I attempted to log into that host I got the same error, "User authentication failed"
To make the Poderosa remember the password, these three internal options must be set. org.poderosa.protocols.readSerializedPassword = True org.poderosa.protocols.retainPassphrase = True org.poderosa.protocols.savePassword = True
Per this old discussion, https://sourceforge.net/p/poderosa/discussion/455997/thread/ee29663d/#ebe5, I changed org.poderosa.protocols.readSerializedPassword and org.poderosa.protocols.savePassword to True. I then created a new SSH connection and entered the password and logged in. I then exited Poderosa, started it again and selected that site from the MRU list. I immediately got "User authentication failed." I also tried setting the PlainText option to true, but that didn't help. Do saved password...
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();...
I'm using the Pederosa.Terminal Control but I didn't figure out how to send commands directly from c# code. Is possible to share an example to how to programatically send commands (ex. "ls-la" or other) and wait for result ?
I'm using the Pederosa.Terminal Control but I didn't figure out how to send commands directly from c3 code. Is possible to share an example to how to send commands (ex. "ls-la" or other) ?
UPDATE: the "unblock" operation on the zip file worked! I didn't even know this feature :) Hi! I get this error message when starting poderosa.exe: [https://pasteboard.co/Ic5vj7A.png] What did I miss? Greetz: Adrian
Hi! I get this error message when starting poderosa.exe: What did I miss? Greetz: Adrian
Hi! I get this error message when starting poderosa.exe: What did I miss? Greetz: Adrian
Thank you for reply. Poderosa An internal error occurred. Please check C:\Users\XXXX\AppData\Roaming\Poderosa\error.log . メソッドが見つかりません: 'Void Poderosa.Terminal.TerminalTransmission.SendTextStream(System.IO.TextReader, Boolean)' OK And I found the cause and fixed. When I checked plug-in list, "ExtendPaste" was only old version. So I removed ExtendPaste directory and error disappered.
Edit>Paste and "Paste" context menu work fine on 4.4.3. It showed error something like .NET. Could you post a log or a screenshot ?
Hi, thank you for providing great console. From v4.4.3, it seems to me that paste menu doesn't work. It showed error something like .NET. Best regards,
Hi any news about that? I'm interested in Enabling multiple poderosa-shortcut element
Hi any news about this? I've the same problem. Thanks
Sorry for the delay. Yes the "Unblock" on the zip addressed the issue. Thank you.
Hello, my question is this: Is there a way to write the same command into multiple panes at the same time? Thank you for your time.
Does this help? https://sourceforge.net/p/poderosa/discussion/455998/thread/cf773b02/#f259
Maybe I'm missing something here, and if I am, sorry for the stupid question. I believe that all I have to do for the install is to extract the Poderosa folder out of the bin.zip and run Poderosa.exe. When I ry to run it in this way, I get a big Poderosa window with multiple "Assembly XXX was not able to be loaded." messages (Granados.dll, Poderosa.Core.dll, etc.) I do not have any such issues in 4.3.16