Skip to content

Commit e384b1c

Browse files
Merge pull request #25 from StrangeRanger/dev
2 parents 77b501b + 18178f8 commit e384b1c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

hardening/SSHD Hardening/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## v2.2.0 - 2025-11-02
8+
9+
### Added
10+
11+
- MaxStartups is configured to `10:30:60`. This limits concurrent unauthenticated connections to mitigate DoS attacks.
12+
713
## v2.1.0 - 2025-08-09
814

915
### Added

hardening/SSHD Hardening/harden-sshd.bash

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# - Session backup (.session_backup): For automatic script restoration during
1010
# interruptions.
1111
#
12-
# Version: v2.1.0
12+
# Version: v2.2.0
1313
# License: MIT License
1414
# Copyright (c) 2020-2025 Hunter T. (StrangeRanger)
1515
#
@@ -74,6 +74,8 @@ declare -A C_SSHD_CONFIG=(
7474
["ClientAliveIntervalRegex"]='^#?ClientAliveInterval\s+.*$'
7575
["ClientAliveCountMax"]="2"
7676
["ClientAliveCountMaxRegex"]='^#?ClientAliveCountMax\s+.*$'
77+
["MaxStartups"]="10:30:60"
78+
["MaxStartupsRegex"]='^#?MaxStartups\s+.*$'
7779
)
7880
readonly C_SSHD_CONFIG
7981

0 commit comments

Comments
 (0)