feat: Add enableLegacyCrypto flag for SSH connections#1230
Open
eduardomozart wants to merge 27 commits intognmyt:mainfrom
Open
feat: Add enableLegacyCrypto flag for SSH connections#1230eduardomozart wants to merge 27 commits intognmyt:mainfrom
eduardomozart wants to merge 27 commits intognmyt:mainfrom
Conversation
…copilot/add-autocomplete-off-to-input
…n LDAPProviderDialog Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…-to-input Add autocomplete="off" to userSearchFilter input in LDAPProviderDialog
Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…T env var Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…es-to-env Replace all hard-coded port 6989 with SERVER_PORT env var
…ices Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…across all 11 locales Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
Removed several messages related to server creation and updates, and added messages for username, password, and SSH key requirements.
…s in all 11 locales Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…lertOutline, move below Wake-On-Lan, add danger style Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…ignore Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
…ption color change Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
Co-authored-by: eduardomozart <2974895+eduardomozart@users.noreply.github.com>
Added support for legacy algorithms and improved filtering for SSH options based on local OpenSSL capabilities.
Remove client/package-lock.json from .gitignore
Removed autoComplete attribute from userSearchFilter input.
Added a newline at the end of the file for consistency.
Remove the trailing newline at the end of client/src/pages/Settings/pages/Authentication/components/LDAPProviderDialog/LDAPProviderDialog.jsx. No code or behavior changes; purely a file formatting/EOF adjustment.
…b.com/eduardomozart/Nexterm into copilot/add-enable-legacy-crypto-flag
Refactor legacy algorithm handling for SSH connections to improve support for older devices. Update crypto module import and adjust legacy algorithm definitions.
Normalize the "legacyCrypto" title to use title-case across multiple locale files for consistent UI presentation. Updated client/public/assets/locales for: cs, de, es, fr, it, pt-BR, pt, and ru.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



📋 Description
Adds an opt-in
enableLegacyCryptoflag to SSH connections, enabling deprecated algorithms (ssh-dss, weak DH kex, CBC ciphers, MD5 HMACs) required by older network equipment. Disabled by default.Backend —
server/utils/jumpHostHelper.jsssh2Defaults(modern algorithm sets) andlegacyAlgorithms(legacy sets)buildSSHOptionsinjectslegacyAlgorithmsonly whenentryConfig.enableLegacyCrypto === trueFrontend —
SettingsPage.jsxconfig?.protocol === 'ssh')config.enableLegacyCryptovia the existinghandleDisplaySettingChangepatternLocalization
Added
servers.dialog.settings.legacyCrypto.{title,description}keys to all 11 supported locales with native translations (de,fr,es,it,pt,pt-BR,cs,ru,zh,ar)🚀 Changes made to ...
✅ Checklist
🔗 Related Issues
Depends on #1229
Closes #1227