Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gojue/ecapture
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.0
Choose a base ref
...
head repository: gojue/ecapture
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.1
Choose a head ref
  • 3 commits
  • 10 files changed
  • 4 contributors

Commits on Jun 28, 2025

  1. http2: share same hpack decoder for one tuple connect #744 (#798)

    1. Support two lifecycle manager modes for eventWorker run:
     a. LifeCycleStateSock: The worker runs continuously until the
        associated sock destory.  All incoming playloads share one `parser`
     b. LifeCycleStateDefault: The worker performs `delWorkerByUUID`
        and `drainAndClose` after a single timeout
    2. HTTP2 steams from same tuple share same hpack decoder
    
    Signed-off-by: chilli <chilli19890121@gmail.com>
    Co-authored-by: Zhang Huimin <zhanghuimin@hxdi.com>
    chilli13 and Zhang Huimin authored Jun 28, 2025
    Configuration menu
    Copy the full SHA
    68be42b View commit details
    Browse the repository at this point in the history
  2. fix: Improve bash path detection and correct probe attachment (#805)

    This commit addresses two issues in the bash probe logic:
    
    1.  **Unreliable Bash Path Discovery:** The probe previously relied solely on the `$SHELL` environment variable. This could fail on systems where `$SHELL` is not set to bash (e.g., using zsh or fish) or is not set at all.
    
    2.  **Incorrect Probe Attachment:** When bash was dynamically linked with `libreadline.so`, the probe incorrectly used the path to `libreadline.so` for all function hooks. This failed for functions like `execute_command`, `exec_builtin`, and `exit_builtin` which exist only in the main bash executable, not in the readline library.
    
    This patch introduces the following fixes:
    
    -   Adds a fallback to check for `/bin/bash` if a valid bash path cannot be determined from the `$SHELL` variable.
    -   Refactors the configuration and probe logic to distinguish between the path to the `bash` executable and the path to `libreadline.so`.
    -   Ensures that probes for `readline` target either `libreadline.so` (if present) or the `bash` binary, while probes for other bash-internal functions always target the `bash` binary itself.
    
    This change significantly improves the reliability and accuracy of bash command capturing across different system configurations.
    zenyanle authored Jun 28, 2025
    Configuration menu
    Copy the full SHA
    b438a1f View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2025

  1. release v1.3.1

    Signed-off-by: CFC4N <cfc4n.cs@gmail.com>
    cfc4n committed Jun 29, 2025
    Configuration menu
    Copy the full SHA
    b395562 View commit details
    Browse the repository at this point in the history
Loading