-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to start kyanos in ubuntu20.04 #137
Labels
bug
Something isn't working
Comments
file: gotls.bpf.c if (loc.offset >= 0) {
bpf_probe_read(arg, arg_size, (char*)regs + loc.offset);
} this check need to be modified to: if (loc.offset >= 0 && loc.offset < xxx) {
bpf_probe_read(arg, arg_size, (char*)regs + loc.offset);
} |
hengyoush
added a commit
that referenced
this issue
Dec 12, 2024
…ubuntu2004 fix(bpf/gotls): fix #137
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Compile kyanos at ubuntu 20.04, try to start but gotls probe failed:
To Reproduce
Expected behavior
compile and start successfully
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: