Activity for BVRDE

  • Balazs Szekely Balazs Szekely posted a comment on ticket #77

    Hello The VS2008 redistributables are included in the zip, in the \Redist directory. The shared version contains all my improvements for the last 14+ years, on top of original version 1.4, as I've already mentioned in https://sourceforge.net/p/bvrde/discussion/373758/thread/121f949328/

  • Amar Panda Amar Panda posted a comment on discussion Open Discussion

    I was able to Resolve my Connection issues in BVRDE by following up the Discussion on ticket #77 https://sourceforge.net/p/bvrde/bugs/77/. All Credit goes to Mr Balazs Szekely. Thank you Sir...

  • Amar Panda Amar Panda posted a comment on ticket #77

    Thank you so much Sir...I tried your version of BVRDE from the above link and it Works just fine without any SSH issues. Thank you once again...Just to let everyone else know that you need to Install MS Visual C++ 2008 SP1 (Redistributable) package for this version of BVRDE to work on Windows 10.

  • Balazs Szekely Balazs Szekely posted a comment on ticket #77

    Try with this version shared at https://drive.google.com/drive/folders/1wg6NccWwl2_TDpCzJiNYZ9X_LZL3wj1Z?usp=sharing

  • Amar Panda Amar Panda posted a comment on ticket #77

    Sir, would you mind sharing your version/Clone of BVRDE 1.4 with me please ? As I have indicated in the issue I have raised recently, I am having trouble connecting to my Ubuntu (WSL) from Windows 10 through sftp/ssh. Can you pls help ? Thank You.

  • Amar Panda Amar Panda posted a comment on ticket #77

    @Balazs Szekely, Sir, would you mind sharing your version/Clone of BVRDE 1.4 with me please ? As I have indicated in the issue I have raised recently, I am having trouble connecting to my Ubuntu (WSL) from Windows 10 through sftp/ssh. Can you pls help ? Thank You.

  • Balazs Szekely Balazs Szekely posted a comment on discussion Open Discussion

    See my comment on ticket #77 https://sourceforge.net/p/bvrde/bugs/77/

  • Amar Panda Amar Panda posted a comment on discussion Open Discussion

    Hi, I have installed WSL (Ubuntu 20.04LS) on my Windows 10 machine and BVRDE. I have done all the necessary setup and I am able up Open Command prompt in Windows and I can do both 'sftp' and 'ssh' into my WSL. But I am getting Connection Error when I am trying to create remote C/C++ project in BVRDE and try connecting to my WSL using exactly the same parameters that I use on the windows Command Prompt. Would really Appreciate any Help regarding this. -Thank You Error Details in BVRDE: No connection...

  • Amar Panda Amar Panda posted a comment on discussion Help

    Hi, I have installed WSL (Ubuntu 20.04LS) on my Windows 10 machine and BVRDE. I have done all the necessary setup and I am able up Open Command prompt in Windows and I can do both 'sftp' and 'ssh' into my WSL. But I am getting Connection Error when I am trying to create remote C/C++ project in BVRDE and try connecting to my WSL using exactly the same parameters that I use on the windows Command Prompt. Would really Appreciate any Help regarding this. -Thank You Error Details in BVRDE: No connection...

  • Balazs Szekely Balazs Szekely posted a comment on ticket #77

    Hello In my clone of DVRDE 1.4 (see also https://sourceforge.net/p/bvrde/discussion/373758/thread/121f949328/), I've changed the SSH engine from cryptlib to libssh, and it supports the latest ciphers also, so no SSH connectivity issues. Let me know if you are interested.

  • Jürgen Eberlein Jürgen Eberlein posted a comment on ticket #77

    My company won't allow other KexAlgorithms in sshd_config due to security reasons. Any other solutions/workarounds/updates?

  • Balazs Szekely Balazs Szekely posted a comment on discussion Open Discussion

    For the last 12 years I was using BVRDE mostly for C/C++ Linux application development in and It is a great tool. Many thanks for that to Bjarke. During that period I've found some bugs, and needed some features, which I've fixed and recently updated also to version 1.4. Some of the features and tickets reported in these forums are also included. It is much more easier now to manage large C/C++ projects, import source hierarchies, create files remotely, etc. I would be happy to share it with you...

  • Thierry Uso Thierry Uso created ticket #56

    Ada support in BVRDE

  • Dmitri Dmitri posted a comment on ticket #77

    bjarke, It is CentOS 7.6 running the latest opensshd. It's possible that the configuration is altered to disable the other cyphers, or it's just binary compiled without WITH_OPENSSL option. As of Cryptlib - I contacted author and sent him patch that makes AES-CTR available for SSH connections. With versions up to 3.4.4.1 it's not available. Author replied that he is aware of that problem and already got his own fix. It's unclearthough whether and when he's going to publish it.

  • Bjarke Viksøe Bjarke Viksøe posted a comment on ticket #77

    Hi, Thanks for the info. It looks like Cryptlib authors are aware of the aes-ctr being problematic, but I am not sure what the status really is for its support. In the Cryptlib ssh2_cry.c source file I found the following comment: /* Some versions of SSH want to use AES-CTR instead of AES-CBC, which is a pain to deal with because it's not a standard encryption mode for cryptlib (or much of anything else). To deal with this we synthesise it from ECB mode */ If I understand correct, the initial problem...

  • Dmitri Dmitri posted a comment on ticket #77

    openssh sources: https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/cipher.c?rev=1.112&content-type=text/x-cvsweb-markup see how ciphers are defined: static const struct sshcipher ciphers[] = { #ifdef WITH_OPENSSL { "3des-cbc", 8, 24, 0, 0, CFLAG_CBC, EVP_des_ede3_cbc }, { "aes128-cbc", 16, 16, 0, 0, CFLAG_CBC, EVP_aes_128_cbc }, { "aes192-cbc", 16, 24, 0, 0, CFLAG_CBC, EVP_aes_192_cbc }, { "aes256-cbc", 16, 32, 0, 0, CFLAG_CBC, EVP_aes_256_cbc }, { "rijndael-cbc@lysator.liu.se", 16, 32, 0,...

  • Dmitri Dmitri posted a comment on ticket #77

    Situation is even worse -- even the latest cryptlib 3441 does not support aes*-ctr ciphers, so the IDE with built-in ssh/sftp won't work with any recent linux distro that is shipped with openssh built wihtout openssl because such sshd won't offer any ciphers other than aes*-ctr and some thing called chacha. I discovered this problem by debugging the IDE -- the following lines is where this error is obtained from criptolib: CHAR szError[200] = { 0 }; int ccbSize = sizeof(szError) - 1; clib.cryptGetAttributeString(cryptSession,...

  • BVRDE BVRDE released /bvrde/bvrde-1.4/bvrde-v1.4.exe

  • BVRDE BVRDE released /bvrde/bvrde-1.4/bvrde-v1.4_src.zip

  • BVRDE BVRDE released /bvrde/bvrde-v1.4_src.zip

  • BVRDE BVRDE released /bvrde/bvrde-v1.4.exe

  • johanax johanax posted a comment on ticket #76

    Hi, any plans of updating BVRDE with the latest cryplib relaes, I really miss working...

  • Mark DePalma Mark DePalma created ticket #78

    WSAEPROTOTYPE error when attempting to connect via sftp

  • Andrey Zibrov Andrey Zibrov posted a comment on ticket #52

    it seems that the problem is in current realization of OpenSSH (6.7) Please look...

  • Andrey Zibrov Andrey Zibrov posted a comment on ticket #76

    it seems that the problem is in current realization of OpenSSH (6.7) Please look...

  • Andrey Zibrov Andrey Zibrov posted a comment on ticket #77

    it seems that the problem is in current realization of OpenSSH (6.7) Please look...

  • Joshua Lumley Joshua Lumley posted a comment on ticket #77

    You need to click 'next' to bring up the additional fields 'Link type' and 'Server'....

  • johanax johanax posted a comment on ticket #76

    Hi Bjarke, any success with your investigation? Regards Johan -- JA MarinTech Johan...

  • reaxion reaxion created ticket #77

    Can't connect to any remote SSH/SFTP servers

  • Bjarke Viksøe Bjarke Viksøe posted a comment on ticket #76

    Hi, I think this could be related to recent changes in the OpenSSH library of your...

  • johanax johanax created ticket #76

    Remote SSH login problem

  • BVRDE BVRDE released /OldFiles/bvrde_v0-9d.msi

  • BVRDE BVRDE released /OldFiles/bvrde.v1.0.msi

  • BVRDE BVRDE released /OldFiles/bvrde.v1.0.src.zip

  • BVRDE BVRDE released /OldFiles/bvrde_src.zip

  • BVRDE BVRDE released /OldFiles/bvrde.msi

  • BVRDE BVRDE released /OldFiles/bvrde_src_v0-9c.zip

  • BVRDE BVRDE released /OldFiles/bvrde_v0-9c.msi

  • BVRDE BVRDE released /OldFiles/bvrde_src_v0.9d.zip

  • MarcoSartore MarcoSartore posted a comment on ticket #13

    Hi, many thanks for your quick support. Adding the -g option which I forgot earlier...

  • Bjarke Viksøe Bjarke Viksøe posted a comment on ticket #13

    Hi, From your Makefile I would have expected to see an error during debugger attachment...

  • MarcoSartore MarcoSartore created ticket #13

    [debugging] no source file named xxx.c

  • Joaquim de Campos Salles Joaquim de Campos Salles modified a comment on discussion Open Discussion

    Hello all, BRDVE- I'm using to compile and debug a program on AIX. When I call the...

  • Joaquim de Campos Salles Joaquim de Campos Salles posted a comment on discussion Open Discussion

    Hello all, BRDVE'm using to compile and debug a program on AIX. When I call the "clean"...

  • Roy Hann Roy Hann posted a comment on discussion Help

    Thanks Bjarke. Since it sounds like I'm not overlooking the "correct" way to do it...

  • Bjarke Viksøe Bjarke Viksøe posted a comment on discussion Help

    Hi Unfortunately I think the current debugger interaction always tries to convert...

  • Roy Hann Roy Hann posted a comment on discussion Help

    As part of my debugging I need to access the session temporary SQL tables that my...

1