Skip to content

Commit f790203

Browse files
committed
Merge branch 'develop'
2 parents 5a8c621 + 6ee5917 commit f790203

File tree

8 files changed

+242
-77
lines changed

8 files changed

+242
-77
lines changed

.github/workflows/package-plugin.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
package:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010

1111
- name: Download workflow artifact
12-
uses: dawidd6/action-download-artifact@v2.16.0
12+
uses: dawidd6/action-download-artifact@v6
1313
with:
1414

1515
# the target repo for external artifacts (built libs)
@@ -27,10 +27,10 @@ jobs:
2727
shell: bash
2828
run: |
2929
mkdir dist && cd dist
30-
mkdir win32 && cp -r ../plugins/* ./win32/ && cp -r ../artifact/keystone_win32/* ./win32/patching/keystone && cd ./win32 && zip -r ../patching_win32.zip ./* && cd ..
31-
mkdir linux && cp -r ../plugins/* ./linux/ && cp -r ../artifact/keystone_linux/* ./linux/patching/keystone && cd ./linux && zip -r ../patching_linux.zip ./* && cd ..
32-
mkdir darwin && cp -r ../plugins/* ./darwin/ && cp -r ../artifact/keystone_darwin/* ./darwin/patching/keystone && cd ./darwin && zip -r ../patching_macos.zip ./* && cd ..
30+
mkdir win32 && cp -r ../plugins/* ./win32/ && cp -r ../artifact_windows-latest/* ./win32/patching/keystone && cd ./win32 && zip -r ../patching_win32.zip ./* && cd ..
31+
mkdir linux && cp -r ../plugins/* ./linux/ && cp -r ../artifact_ubuntu-latest/* ./linux/patching/keystone && cd ./linux && zip -r ../patching_linux.zip ./* && cd ..
32+
mkdir darwin && cp -r ../plugins/* ./darwin/ && cp -r ../artifact_macos-latest/* ./darwin/patching/keystone && cd ./darwin && zip -r ../patching_macos.zip ./* && cd ..
3333
34-
- uses: actions/upload-artifact@v2
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
path: ${{ github.workspace }}/dist/*.zip

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@ Special thanks to [Hex-Rays](https://hex-rays.com/) for supporting the developme
1212

1313
## Releases
1414

15+
* v0.2 -- Important bugfixes, IDA 9 compatibility
1516
* v0.1 -- Initial release
1617

1718
# Installation
1819

1920
This plugin requires IDA 7.6 and Python 3. It supports Windows, Linux, and macOS.
2021

22+
*Please note, older versions of IDA (8.2 and below) are [not compatible](https://hex-rays.com/products/ida/news/8_2sp1/) with Python 3.11 and above.*
23+
2124
## Easy Install
2225

2326
Run the following line in the IDA console to automatically install the plugin:

install.py

+16
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,22 @@
2626
except:
2727
SUPPORTED_IDA = False
2828

29+
#
30+
# XXX/NOTE: older versions of IDA have compatability issues with newer
31+
# versions of Python. if the user is running IDA 8.2 or below and Python 3.11
32+
# or above, we will not proceed with installation.
33+
#
34+
# https://hex-rays.com/products/ida/news/8_2sp1/
35+
# https://github.com/gaasedelen/patching/issues/10
36+
# https://github.com/gaasedelen/patching/issues/16
37+
# ...
38+
#
39+
40+
if SUPPORTED_IDA and ida_pro.IDA_SDK_VERSION < 830:
41+
SUPPORTED_PYTHON = sys.version_info[0] == 3 and sys.version_info[1] < 11
42+
if not SUPPORTED_PYTHON:
43+
print("[i] IDA 8.2 and below do not support Python 3.11 and above")
44+
2945
# is this deemed to be a compatible environment for the plugin to load?
3046
SUPPORTED_ENVIRONMENT = bool(SUPPORTED_IDA and SUPPORTED_PYTHON)
3147

plugins/patching/actions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def update(self, ctx):
110110
class AssembleAction(ida_kernwin.action_handler_t):
111111
NAME = 'patching:assemble'
112112
ICON = 'assemble.png'
113-
TEXT = "Assemble..."
113+
TEXT = "~A~ssemble..."
114114
TOOLTIP = "Assemble new instructions at the selected address"
115115
HOTKEY = None
116116

@@ -135,7 +135,7 @@ def update(self, ctx):
135135
class ApplyAction(ida_kernwin.action_handler_t):
136136
NAME = 'patching:apply'
137137
ICON = 'save.png'
138-
TEXT = "Apply patches to..."
138+
TEXT = "A~p~ply patches to..."
139139
TOOLTIP = "Select where to save the patched binary"
140140
HOTKEY = None
141141

plugins/patching/asm.py

+16-16
Original file line numberDiff line numberDiff line change
@@ -444,13 +444,13 @@ class AsmX86(KeystoneAssembler):
444444
'REPE CMPSW',
445445
]
446446

447-
def __init__(self, inf):
447+
def __init__(self):
448448
arch = keystone.KS_ARCH_X86
449449

450-
if inf.is_64bit():
450+
if ida_ida.inf_is_64bit():
451451
mode = keystone.KS_MODE_64
452452
self.MAX_PREVIEW_BYTES = 7
453-
elif inf.is_32bit():
453+
elif ida_ida.inf_is_32bit_exactly():
454454
mode = keystone.KS_MODE_32
455455
self.MAX_PREVIEW_BYTES = 6
456456
else:
@@ -644,13 +644,13 @@ class AsmARM(KeystoneAssembler):
644644
# TODO: MRS and MOV (32/64 bit) are semi-supported too
645645
]
646646

647-
def __init__(self, inf):
647+
def __init__(self):
648648

649649
# ARM64
650-
if inf.is_64bit():
650+
if ida_ida.inf_is_64bit():
651651
arch = keystone.KS_ARCH_ARM64
652652

653-
if inf.is_be():
653+
if ida_ida.inf_is_be():
654654
mode = keystone.KS_MODE_BIG_ENDIAN
655655
else:
656656
mode = keystone.KS_MODE_LITTLE_ENDIAN
@@ -662,7 +662,7 @@ def __init__(self, inf):
662662
else:
663663
arch = keystone.KS_ARCH_ARM
664664

665-
if inf.is_be():
665+
if ida_ida.inf_is_be():
666666
mode = keystone.KS_MODE_ARM | keystone.KS_MODE_BIG_ENDIAN
667667
self._ks_thumb = keystone.Ks(arch, keystone.KS_MODE_THUMB | keystone.KS_MODE_BIG_ENDIAN)
668668
else:
@@ -810,10 +810,10 @@ def unalias(self, assembly):
810810

811811
class AsmPPC(KeystoneAssembler):
812812

813-
def __init__(self, inf):
813+
def __init__(self):
814814
arch = keystone.KS_ARCH_PPC
815815

816-
if inf.is_64bit():
816+
if ida_ida.inf_is_64bit():
817817
mode = keystone.KS_MODE_PPC64
818818
else:
819819
mode = keystone.KS_MODE_PPC32
@@ -831,15 +831,15 @@ def __init__(self, inf):
831831

832832
class AsmMIPS(KeystoneAssembler):
833833

834-
def __init__(self, inf):
834+
def __init__(self):
835835
arch = keystone.KS_ARCH_MIPS
836836

837-
if inf.is_64bit():
837+
if ida_ida.inf_is_64bit():
838838
mode = keystone.KS_MODE_MIPS64
839839
else:
840840
mode = keystone.KS_MODE_MIPS32
841841

842-
if inf.is_be():
842+
if ida_ida.inf_is_be():
843843
mode |= keystone.KS_MODE_BIG_ENDIAN
844844
else:
845845
mode |= keystone.KS_MODE_LITTLE_ENDIAN
@@ -853,15 +853,15 @@ def __init__(self, inf):
853853

854854
class AsmSPARC(KeystoneAssembler):
855855

856-
def __init__(self, inf):
856+
def __init__(self):
857857
arch = keystone.KS_ARCH_SPARC
858858

859-
if inf.is_64bit():
859+
if ida_ida.inf_is_64bit():
860860
mode = keystone.KS_MODE_SPARC64
861861
else:
862862
mode = keystone.KS_MODE_SPARC32
863863

864-
if inf.is_be():
864+
if ida_ida.inf_is_be():
865865
mode |= keystone.KS_MODE_BIG_ENDIAN
866866
else:
867867
mode |= keystone.KS_MODE_LITTLE_ENDIAN
@@ -875,5 +875,5 @@ def __init__(self, inf):
875875

876876
class AsmSystemZ(KeystoneAssembler):
877877

878-
def __init__(self, inf):
878+
def __init__(self):
879879
super(AsmSystemZ, self).__init__(keystone.KS_ARCH_SYSTEMZ, keystone.KS_MODE_BIG_ENDIAN)

0 commit comments

Comments
 (0)