mirror of https://github.com/n1nj4sec/pupy.git
Encoded json maybe quite big, so compress it first
This commit is contained in:
parent
982b749d47
commit
45beda8450
15
pupy/pp.py
15
pupy/pp.py
|
@ -62,6 +62,7 @@ from network.lib.connection import PupyConnection
|
||||||
import logging
|
import logging
|
||||||
import shlex
|
import shlex
|
||||||
import marshal
|
import marshal
|
||||||
|
import zlib
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# additional imports needed to package with pyinstaller
|
# additional imports needed to package with pyinstaller
|
||||||
|
@ -95,7 +96,11 @@ def safe_obtain(proxy):
|
||||||
if type(proxy) in [list, str, bytes, dict, set, type(None)]:
|
if type(proxy) in [list, str, bytes, dict, set, type(None)]:
|
||||||
return proxy
|
return proxy
|
||||||
conn = object.__getattribute__(proxy, "____conn__")()
|
conn = object.__getattribute__(proxy, "____conn__")()
|
||||||
return json.loads(conn.root.json_dumps(proxy)) # should prevent any code execution
|
return json.loads(
|
||||||
|
zlib.decompress(
|
||||||
|
conn.root.json_dumps(proxy, compressed=True)
|
||||||
|
)
|
||||||
|
) # should prevent any code execution
|
||||||
|
|
||||||
def obtain(proxy):
|
def obtain(proxy):
|
||||||
""" allows to convert netref types into python native types """
|
""" allows to convert netref types into python native types """
|
||||||
|
@ -195,8 +200,12 @@ class ReverseSlaveService(Service):
|
||||||
"""imports an arbitrary module"""
|
"""imports an arbitrary module"""
|
||||||
return __import__(name, None, None, "*")
|
return __import__(name, None, None, "*")
|
||||||
|
|
||||||
def exposed_json_dumps(self, obj):
|
def exposed_json_dumps(self, obj, compressed=False):
|
||||||
return json.dumps(obj)
|
data = json.dumps(obj)
|
||||||
|
if compressed:
|
||||||
|
data = zlib.compress(data)
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
def exposed_getconn(self):
|
def exposed_getconn(self):
|
||||||
"""returns the local connection instance to the other side"""
|
"""returns the local connection instance to the other side"""
|
||||||
|
|
|
@ -22,6 +22,7 @@ import ssl
|
||||||
import logging
|
import logging
|
||||||
import traceback
|
import traceback
|
||||||
import json
|
import json
|
||||||
|
import zlib
|
||||||
|
|
||||||
from pupylib.PupyCredentials import Credentials
|
from pupylib.PupyCredentials import Credentials
|
||||||
|
|
||||||
|
@ -96,8 +97,12 @@ class PupyService(rpyc.Service):
|
||||||
def exposed_set_modules(self, modules):
|
def exposed_set_modules(self, modules):
|
||||||
self.modules=modules
|
self.modules=modules
|
||||||
|
|
||||||
def exposed_json_dumps(self, js):
|
def exposed_json_dumps(self, js, compressed=False):
|
||||||
return json.dumps(js)
|
data = json.dumps(js)
|
||||||
|
if compressed:
|
||||||
|
data = zlib.compress(data)
|
||||||
|
|
||||||
|
return data
|
||||||
|
|
||||||
class PupyBindService(PupyService):
|
class PupyBindService(PupyService):
|
||||||
def exposed_get_password(self):
|
def exposed_get_password(self):
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
# -*- coding: UTF8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
# Copyright (c) 2015, Nicolas VERDIER (contact@n1nj4.eu)
|
# Copyright (c) 2015, Nicolas VERDIER (contact@n1nj4.eu)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
#
|
#
|
||||||
# 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
# 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
#
|
#
|
||||||
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
#
|
#
|
||||||
# 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||||
#
|
#
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -19,14 +19,16 @@ from contextlib import contextmanager
|
||||||
from rpyc.utils.helpers import restricted
|
from rpyc.utils.helpers import restricted
|
||||||
import textwrap
|
import textwrap
|
||||||
import json
|
import json
|
||||||
|
import zlib
|
||||||
|
|
||||||
def safe_obtain(proxy):
|
def safe_obtain(proxy):
|
||||||
""" safe version of rpyc's rpyc.utils.classic.obtain, without using pickle. """
|
""" safe version of rpyc's rpyc.utils.classic.obtain, without using pickle. """
|
||||||
if type(proxy) in [list, str, bytes, dict, set, type(None)]:
|
if type(proxy) in [list, str, bytes, dict, set, type(None)]:
|
||||||
return proxy
|
return proxy
|
||||||
conn = object.__getattribute__(proxy, "____conn__")()
|
conn = object.__getattribute__(proxy, "____conn__")()
|
||||||
return json.loads(conn.root.json_dumps(proxy)) # should prevent any code execution
|
data = conn.root.json_dumps(proxy, compressed=True)
|
||||||
|
data = zlib.decompress(data)
|
||||||
|
return json.loads(data) # should prevent any code execution
|
||||||
|
|
||||||
def obtain(proxy):
|
def obtain(proxy):
|
||||||
return safe_obtain(proxy)
|
return safe_obtain(proxy)
|
||||||
|
@ -65,7 +67,7 @@ def redirected_stdo(conn, stdout=None, stderr=None):
|
||||||
|
|
||||||
def interact(conn):
|
def interact(conn):
|
||||||
"""remote interactive interpreter
|
"""remote interactive interpreter
|
||||||
|
|
||||||
:param conn: the RPyC connection
|
:param conn: the RPyC connection
|
||||||
:param namespace: the namespace to use (a ``dict``)
|
:param namespace: the namespace to use (a ``dict``)
|
||||||
"""
|
"""
|
||||||
|
@ -80,14 +82,14 @@ def interact(conn):
|
||||||
@contextmanager
|
@contextmanager
|
||||||
def redirected_stdio(conn):
|
def redirected_stdio(conn):
|
||||||
r"""
|
r"""
|
||||||
Redirects the other party's ``stdin``, ``stdout`` and ``stderr`` to
|
Redirects the other party's ``stdin``, ``stdout`` and ``stderr`` to
|
||||||
those of the local party, so remote IO will occur locally.
|
those of the local party, so remote IO will occur locally.
|
||||||
|
|
||||||
Example usage::
|
Example usage::
|
||||||
|
|
||||||
with redirected_stdio(conn):
|
with redirected_stdio(conn):
|
||||||
conn.modules.sys.stdout.write("hello\n") # will be printed locally
|
conn.modules.sys.stdout.write("hello\n") # will be printed locally
|
||||||
|
|
||||||
"""
|
"""
|
||||||
orig_stdin = conn.modules.sys.stdin
|
orig_stdin = conn.modules.sys.stdin
|
||||||
orig_stdout = conn.modules.sys.stdout
|
orig_stdout = conn.modules.sys.stdout
|
||||||
|
@ -101,4 +103,3 @@ def redirected_stdio(conn):
|
||||||
conn.modules.sys.stdin = orig_stdin
|
conn.modules.sys.stdin = orig_stdin
|
||||||
conn.modules.sys.stdout = orig_stdout
|
conn.modules.sys.stdout = orig_stdout
|
||||||
conn.modules.sys.stderr = orig_stderr
|
conn.modules.sys.stderr = orig_stderr
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue