You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"eCapture has been installed in the /usr/local/bin directory."
44
+
echo"Please ensure that /usr/local/bin is in your \$PATH.Or used /usr/local/bin/ecapture instead."
37
45
38
46
%files
39
47
/usr/local/bin/ecapture
40
48
41
49
%changelog
42
-
* Sun Apr 2 2023BellaZhang<bella@cclinux.org> - 0.5.0-1
43
-
- Support for capturing plaintext communication of TLS/HTTPS encrypted
44
-
programs written in Golang.
45
-
- Refactored the way parameters are obtained from Golang
46
-
ABI (supports two types of ABI on registers-based and stack-based).
50
+
* Sat Dec 30 2023CFC4N<cfc4ncs@gmail.com> - 0.7.0-1
51
+
- Split `nss/gnutls/openssl` into three separate submodules. Corresponding to the `./ecapture nss`, `./ecapture gnutls`, `ecapture tls` commands.
52
+
- Support `keylog` mode, equivalent to the functionality of the `SSLKEYLOGFILE` environment variable. Captures SSL/TLS communication keys directly without the need for changes in the target process.
53
+
- Refactor the mode parameters supported by the `openssl`(aka tls) module using the `-m`parameter, with values `text`, `pcap`,`keylog`.
54
+
- `pcap` mode: Set with `-m pcap` or `-m pcapng` parameters. When using this mode, it is necessary to specify `--pcapfile` and `-i` parameters. The default value for the `--pcapfile` parameter is `ecapture_openssl.pcapng`.
55
+
- `keylog` mode: Set with `-m keylog` or `-m key` parameters. When using this mode, it is necessary to specify `--keylogfile`, defaulting to `ecapture_masterkey.log`.
56
+
- `text` mode: Default mode when `-m` parameter is unspecified. Outputs all plaintext packets in text form. (As of v0.7.0, no longer captures communication keys, please use `keylog` mode instead.)
57
+
- Refactor the mode parameters supported by the `gotls` module, similar to the `openssl` module, without further details.
58
+
- Optimize the memory size of eBPF Map, specify with the `--mapsize` parameter, defaulting to 5120 KB.
59
+
- Remove the `-w` parameter, use `--pcapfile` parameter instead.
60
+
- Change `log-addr` parameter to `logaddr`, with unchanged functionality.
0 commit comments