hex-patch 1.12.5

HexPatch is a binary patcher and editor with terminal user interface (TUI), it's capable of disassembling instructions and assembling patches. It supports a variety of architectures and file formats. Also, it can edit remote files via SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Screenshots

<div align=center style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;">

{% for screenshot in site.static_files %}
{% if screenshot.path contains "assets/screenshots" %}
<div style="display: flex; flex-direction: column; align-items: center; gap: 0.5rem;">
<a href="{{ screenshot.path | relative_url }}">
<img src="{{ screenshot.path | relative_url }}" alt="{{ screenshot.name }}" width=200>
<br/><small>{{ screenshot.name | replace: '_', ' ' | replace: '.png', '' | capitalize }}</small>
</a>
</div>
{% endif %}
{% endfor %}
</div>