mirror of
https://github.com/mike1k/perses
synced 2026-06-06 16:14:33 +00:00
Removed requirement of -x64 arg for 64bit binaries.
This commit is contained in:
@@ -19,7 +19,6 @@ PERSES by default works off a command line. Listed below are the arguments requr
|
||||
| `-s` or `--symbol` | Symbol or list of symbols to be mutated. This requires a linked `.map` file. | :x: |
|
||||
| `--map` | Map file to be linked. IDA Pro `.map` files must have their extension replaced with `.ida`. | :x: |
|
||||
| `--list` | List of functions to be mutated. Each entry must envelop one line and be formatted as `0x1000:0x2000` where `0x1000` is the start and `0x2000` is the end of the routine. | :x: |
|
||||
| `--x64` | Used to indicate that the file is of 64bit architecture (AMD64). | :heavy_check_mark: |
|
||||
| `--rets` | Allow PERSES to build a `RET` gadget pool used to create `JMP`s to random locations. | :x: |
|
||||
| `--scan` | Force PERSES to scan for code protection markers. | :x: |
|
||||
|
||||
|
||||
+12
-6
@@ -1,6 +1,7 @@
|
||||
#include "perses.hpp"
|
||||
#include <argparse/argparse.hpp>
|
||||
|
||||
|
||||
template<int BitSize>
|
||||
void createApplication(perses::X86BinaryApplication<BitSize>* app, argparse::ArgumentParser& args)
|
||||
{
|
||||
@@ -101,10 +102,6 @@ int main(int argc, char* argv[])
|
||||
args.add_argument("-f", "--file")
|
||||
.help("Input file path.")
|
||||
.required();
|
||||
args.add_argument("-x64")
|
||||
.help("Required for X64 PE files.")
|
||||
.default_value(false)
|
||||
.implicit_value(true);
|
||||
args.add_argument("-a", "--address")
|
||||
.help("Address(es) to mutate")
|
||||
.remaining();
|
||||
@@ -145,10 +142,19 @@ int main(int argc, char* argv[])
|
||||
if (!std::filesystem::exists(filepath))
|
||||
{
|
||||
logger()->critical("Unable to find file: {}.", filepath);
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (args.get<bool>("-x64"))
|
||||
// Determine arch. type automatically.
|
||||
DWORD type = 0ul;
|
||||
|
||||
if (!GetBinaryTypeA(filepath.c_str(), &type) && GetLastError() != ERROR_BAD_EXE_FORMAT)
|
||||
{
|
||||
logger()->critical("Are you sure this is a executable file?");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (type == SCS_64BIT_BINARY)
|
||||
{
|
||||
createApplication(new perses::X86BinaryApplication<PERSES_64BIT>(filepath), args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user