Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed default port to 22 for scanner dialog #1768

Merged
merged 2 commits into from
Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Display timezone for session timeout in user menu [#1764](https://github.com/greenbone/gsa/pull/1764)

### Changed
- Changed default port to 22 for scanner dialog [#1768](https://github.com/greenbone/gsa/pull/1768)
- Fix react-scripts dependency because it broke tooltips [#1760](https://github.com/greenbone/gsa/pull/1760)
- Improve Delta Report Details [#1748](https://github.com/greenbone/gsa/pull/1748)
- Update node dependencies to latest releases [#1735](https://github.com/greenbone/gsa/pull/1735)
Expand Down
2 changes: 1 addition & 1 deletion gsa/src/web/pages/scanners/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class ScannerDialog extends React.Component {
host = 'localhost',
id,
name = _('Unnamed'),
port = '9391',
port = '22',
title = _('New Scanner'),
type = OSP_SCANNER_TYPE,
which_cert,
Expand Down