spanskiblog/content/posts/binary-patching.md

17 lines
325 B
Markdown
Raw Normal View History

2022-12-24 17:42:40 +01:00
2022-12-24 17:09:22 +01:00
+++
2022-12-24 22:54:34 +01:00
date="2022-12-24"
2022-12-24 17:09:22 +01:00
author="spanskiduh"
title="binary-patching"
2022-12-24 17:42:40 +01:00
description="click to read about binary-patching"
2022-12-24 17:09:22 +01:00
+++
2022-12-24 22:54:34 +01:00
# Binary patching
### In vim :)
firstly check in ghidra what hex value has function call.
Then open binary in vim, find that and replace all fucntion hex values with 90
2022-12-24 17:09:22 +01:00
`:%!xxd` and `:%!xxd -r`