Skip to content

Releases: pyroraptor07/interactsh-rs

v0.3.0

28 Jan 07:29
Compare
Choose a tag to compare

This is an intermediate release to bump some dependency versions and fix a couple of things internally.

IMPORTANT NOTE: The 0.4 and possibly 0.5 releases are going to be major under the hood changes. The 0.4 release will include some changes to the existing public API.

Changed

  • Removed duplicate default() method on ClientBuilder.
  • Bumped base64 crate version to 0.21.
  • Bumped rsa crate version to 0.8.
  • Removed the weird ksuid concatenation in ClientBuilder in favor of simpler random string generation for subdomain and correlation ID.

v0.2.1

23 Nov 01:32
Compare
Choose a tag to compare

Readme fix, no library changes. See the v0.2.0 changelog below:

Added

  • Added the ability to set proxies for the client to use. See the docs for
    more info.

Changed

  • Replaced thiserror with snafu for error implementions. There are some changes
    to the error enum variants, check the docs if you depend on a specific variant.
  • Depreciated RegisteredClient::get_interaction_url() in favor of
    RegisteredClient::get_interaction_fqdn(). This is purely for naming accuracy, it returns the
    same string as RegisteredClient::get_interaction_url() did.

v0.2.0

23 Nov 01:24
Compare
Choose a tag to compare

Added

  • Added the ability to set proxies for the client to use. See the docs for
    more info.

Changed

  • Replaced thiserror with snafu for error implementions. There are some changes
    to the error enum variants, check the docs if you depend on a specific variant.
  • Depreciated RegisteredClient::get_interaction_url() in favor of
    RegisteredClient::get_interaction_fqdn(). This is purely for naming accuracy, it returns the
    same string as RegisteredClient::get_interaction_url() did.

v0.1.0

09 Nov 23:25
Compare
Choose a tag to compare

No library changes, just bumping from release candidate to a full release.

v0.1.0-RC2 (Release Candidate)

29 Oct 14:23
Compare
Choose a tag to compare

Changed

  • Removed the "reqwest-" prefix from the TLS feature flags. The old TLS
    feature flag names have been left in for now and just activate the new feature flags.
    The changes are as follows:
    • reqwest-rustls-tls changed to rustls-tls
    • reqwest-native-tls changed to native-tls
    • reqwest-native-tls-vendored changed to native-tls-vendored

v0.1.0-RC1 (Release Candidate)

16 Oct 03:44
Compare
Choose a tag to compare

Release candidate for the initial published crate version.

Added

  • Initial client implementation
  • Examples of use