We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f9bae commit 60bdec8Copy full SHA for 60bdec8
docs/guide/kernelcache.md
@@ -78,8 +78,12 @@ Another way to interact with the kernel cache information is through the provide
78
```python
79
# Load the XNU kernel
80
from binaryninja import kernelcache
81
-kc = kernelcache.KernelCache(bv)
82
-kc.load_image_with_install_name('com.apple.kernel')
+kc = kernelcache.KernelCacheController(bv)
+image = kc.get_image_with_name('com.apple.kernel')
83
+kc.apply_image(bv, image)
84
```
85
86
+???+ Note "Note"
87
+ When using the Python console in the UI, the `kernel_cache` variable is automatically available for the current view.
88
+
89
**Note:** *We do not support single-section loading at this time and can only load entire images.*
0 commit comments