Skip to content

Releases: NHAS/reverse_ssh

v2.1.3

15 Jun 23:35
Compare
Choose a tag to compare

Bug fix release. Unfortunately issues were cropping up using a file descriptor to pass in the old (real) argv when using --process_name so now this information is passed in via environment variable F instead.

Bug fixes:

  • Disconnections no longer occur when scping, or doing other large network operations
  • No longer crashes on darwin intermittently

v2.1.2 - Has bugs

12 Jun 22:14
Compare
Choose a tag to compare
v2.1.2 - Has bugs Pre-release
Pre-release

This release re-introduces TUN support (thanks to #121) to RSSH which was removed due to upstream compatiablity issues which have now been resolved.
As such the binary size has been increased, please use UPX if you want smaller binaries.

Additionally this release incorporates a number of bug fixes:

Bug Fixes:

  • #120 Garbled clients no longer mis-report open server remote forwards
  • Client binary will no longer try and close FD 3 if it cant read from it (resolves VPN issue on unstable)

Features:

  • #121 Tun device support, which allows tunneling of TCP, UDP and ICMP

Changes:

  • Garble now uses -tiny and -literals to further obscure signatures

The public key for this release is:

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKOTcig2+j5YjjxW4uYVX00N153KVLP4dzK90AvrB1hB 

v2.1.1

08 Jun 23:41
Compare
Choose a tag to compare

This is a tiny release that fixes a bug where rssh clients may fail to connect back if they are in a background state because of receiving SIGPIPE

Bug Fixes:

  • Ignore SIGPIPE in child process

The public key for this release is:

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID2O2pt08mdAiLjo+jtFxud01F8o3epp9JVDJ5WZcETp

v2.1.0

05 Jun 02:45
Compare
Choose a tag to compare

This release adds new functionality to the listen server console command and a client feature (hence the version bump).

Features:

  • listen now takes either -s or -c to denote working on the server or client control port. This now allows you to open the server control port on a client.
    E.g
# Open the server listening port on all (*) clients on tcp port 1111
listen -c * --on :1111

This means that new clients can connect to any existing client on port 1111 and be controllable.
Unfortunately clients below v2.1.0 will require just starting a remote forward with regular ssh syntax (-R).

  • link now supports --proxy to 'bake' in a proxy address on compilation

Changes:

  • Makefile now strips off home path with -trimpath thanks @AdrianVollmer
  • The proxy variable can now be baked in to DLLs and regular golang binaries with the RSSH_PROXY variable

v2.0.0

09 May 06:39
Compare
Choose a tag to compare

A small release which changes how the client executable parses arguments, as this is a change in standard interface the major version is bumped.

Features:

  • Qol improvement by @eos175, the server history no longer contains empty lines (#115)
  • -d and --destination arguments for the client binary now specify server address
  • The client now supports --process_name which sets the forked client argv (only on linux as per #108)

Breaking changes:

  • The server address is no longer assumed to be the last argument passed to argv. Determining the server address is now done in this order:
    1. If arguments -d or --destination are present use their value.
    2. If the baked in value destination is not zero length
    3. Otherwise get the last argument passed to the parent argv (to maintain backwards compatibility)

The client public key for this release is:

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJG3gsmqwTscT0wlM0mxv+0irttn8pCObd+yTp7CJIxO

v1.0.17

18 Apr 00:09
Compare
Choose a tag to compare

Another small release with two bug fixes:

  • Fix issue cross compiling windows dlls on darwin
  • Fix the make file omitting software version if building server only

The client public key for this release is:

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINF0mlf4iuvpVSzOD2YpGIFs1DlsIYl6BeO5nPvzi2ON

v1.0.16

17 Mar 22:13
Compare
Choose a tag to compare

Small bug fix release.

Bug Fixes:

  • When connecting with jumphost syntax the rssh:// url can now be used
  • Windows DLLs can now run in services

v1.0.15

23 Feb 21:15
Compare
Choose a tag to compare

This release improves client timeout or disconnection handling, and removes full VPN handling from the client.
This will reduce the size of the client binaries

Features

  • Client binaries now get timeout information from the server to more accurately detect when they need to reconnect
  • The client binary version string now includes operating system and architecture information

Breaking Changes

  • This release removes the tuntap integration to prune binary size, and as the underlying library changed to not build on go1.20

v1.0.14

30 Dec 03:00
Compare
Choose a tag to compare

This release contains a small fix for windows powershell resource deallocation, and some quality of life improvements.

Features

  • Searching for a shell on linux is now more robust and will choose other shells before sh #87

Bug Fixes

  • Exiting a session without exit now closes the conhost and powershell processes on windows, fixes in #89

v1.0.13

21 Dec 00:11
Compare
Choose a tag to compare

Bug fix release, it appears I've left a dangling pointer in the client handler code which would incorrectly report a pty if a user had connected to a client once.

This may also potentially stop two users from accessing the same client at one time, when connecting from the server console instead of using jumphost syntax.

Bug Fixes:

  • Dangling pointer in client handler for server console connect/exec commands
  • Fix windows exec with pty handler by adding space between command and args
  • Support commands with spaces in the exec handler with better parsing