This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Java.perform(function () { | |
| // Get PINActivity instance | |
| var PINActivityInstance; | |
| Java.choose('org.wormcon.vaultgame.PINActivity', { | |
| onMatch: function (instance) { | |
| PINActivityInstance = instance; | |
| }, | |
| onComplete: function () { } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create a stub hook for exported functions, with a poormans backward-edges CFI check | |
| #@author nick0ve | |
| #@category elf | |
| import os | |
| from ghidra.program.model.symbol import RefType | |
| from ghidra.app.util.opinion import ElfLoader | |
| from ghidra.util import NumericUtilities |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import dataclasses | |
| class int32(int): | |
| @staticmethod | |
| def p(x): | |
| return p32(x) | |
| class int16(int): | |
| @staticmethod | |
| def p(x): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ### | |
| * IP: GHIDRA | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
NewerOlder