Skip to content
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

docs: fix range_submit hypercall buffer indexes #230

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/reference/hypercall_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ obtain as part of agent initialization.
caption: Example
---
uint64_t buffer[3] = {0};
buffer[0] = 0; // IP filter index [0-3]
buffer[1] = 0xfffff8010e0b0000 // low range
buffer[2] = 0xfffff8010e0b7000 // high range
buffer[0] = 0xfffff8010e0b0000 // low range
buffer[1] = 0xfffff8010e0b7000 // high range
buffer[2] = 0; // IP filter index [0-3]
kAFL_hypercall(HYPERCALL_KAFL_RANGE_SUBMIT, (uint64_t)buffer);
```

Expand Down