Releases: mbuesch/letmein
Releases · mbuesch/letmein
letmein-7.2.0
Fixes
- Fix build with
cargo-audit
version >=0.21
Added features
- Add option to suppress sending error messages to the internet, if not authenticated. This helps to not reveal what service is running on the control port to malicious scanner clients. See
[GENERAL]
control-error-policy
inletmeind.conf
. This feature is disabled by default, if the config option is missing.
letmein-7.1.0
Bug fixed
On letmeinfwd
daemon shutdown the control port rule was not removed from the firewall. This could lead to letmeind
still being reachable, if it was still running. This has been fixed.
In practice this should not be a real problem, though. If letmeind
was still running, the communication with letmeinfwd
would fail and the user would eventually receive a Nack for the knocking. If letmeind
was also shutdown, the port would be closed anyway, regardless of the firewall rule.
An upgrade is recommended.
letmein-7.0.0
Fixes:
- Add TX/RX timeouts for control messages. This helps to mitigate potential DoS (Denial of Service) attacks on the control port.
Features:
- Optional seccomp support has been added to the firewall daemon
letmeinfwd
. - Optional seccomp support has been added to the client application
letmein
. - letmeind: Now prints the peer's IP address to the system log on unexpected protocol handling failures.
letmein-6.0.0
New features:
- Support for UDP port knocking has been added.
- The seccomp filters have been reduced further to what is necessary. This reduces the exploit surface.
letmein-5.1.0
- Documentation for the configuration files has been added in
CONFIGURATION.md
- The dependency on the
user_lookup
crate has been removed and a simple local implementations of the needed subset of features has been added. - Some sanity checks for the configuration have been added. Correct and working configurations are not affected.
letmein-5.0.0
New features:
- On firewall changes, now only the affected rules are touched instead of deleting and rebuilding everything each time.
Minor changes:
- The configuration prefix has been made configurable (via environment variable
LETMEIN_CONF_PREFIX
) and the cargo build default has been changed from/opt/letmein/etc
to/etc
. However, thebuild.sh
script still uses the/opt/letmein/etc
prefix. Therefore, nothing changes for most users. The option makes distribution packaging easier. - API cleanup to make misuse of the protocol API harder.
letmein-4.0.0
Changes:
- Move compilation of seccomp program to build.rs.
Fixes:
- Remove
sigaction
from allowed syscalls.
letmein-3.0.0
- The daemon has been split into a privileged part for the firewall and a public network facing part with reduced privileges. Please see README.md for instructions about how to install the required user.
- Optional Linux
seccomp
support for the network daemon has been added. See the exampleletmeind.conf
file for how to enable it.
letmein-2.0.0
- It is now possible to restrict ports to a subset of users, so that only certain users can knock certain ports open. See the example config files. By default all ports can be knocked by all users.
- A sanity check for the passed systemd socket has been added.
- Parts of the code have been simplified and cleaned up.
letmein-1.1.0
- An optional limit for the maximum number of connections has been added. Default = 8.
- The
configparser
crate dependency has been removed. No functional change.