AsjadOooO / Zero-attacker

Zero-attacker is an multipurpose hacking tool with over 15+ multifunction tools
https://zerooffenssecurity.cloud/
MIT License
679 stars 437 forks source link

Cmd problem #69

Open Bietlogmo34 opened 1 month ago

Bietlogmo34 commented 1 month ago

when i press the 1 for zero hacking tools the cmd says it is not recognized as a internal or extranal command, but when i click the 2 or the 3 its working how to fox this?

pedomanmedia commented 1 week ago

you must do it with python only, not python3

pedomanmedia commented 1 week ago

or you can use this script. replace script zero.py import sys,os from colorama import Fore

print(Fore.MAGENTA+""" ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――


/ )( ( )( ) ( )_ /\ _/( )( | \ /( ( __ )
\/ ) || ( \/| ( )|| ( ) | | ( ) | ) ( ) ( | ( ) || ( \/| \ / /| ( \/| ( )|
/ )| (
| (_)|| | | | ____ | (_) | | | | | | () || | | (/ / | ( | (__)| / / | ) | )| | | |(____)| | | | | | | || | | ( | ) | ) / / | ( | (\ ( | | | | | ( ) | | | | | | ( ) || | | ( \ \ | ( | (\ (
/ (/| (___/| ) \ \| (_
) | | ) ( | | | | | | ) ( || (/| / \ | (/| ) \ __ (/(/|/ __/() |/ | )( )( |/ |(/|_/ \/(___/|/ __/

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

BY: Zero Offens Security """)

def display_menu(): print(Fore.GREEN + """ 1: Zero-Tool (Hacking Tools) | 2: Zero-Paid-Tools 3: Info (about-us) """)

def execute_command(command): if command == '1': os.system('cmd /k "python3 Zero-Tool/zero-tool.py"' if os.name == 'nt' else 'python3 Zero-Tool/zero-tool.py') elif command == '2': print(Fore.RED + 'This option is not available yet! Coming soon...')

os.system('cmd /k "python3 Zero-Web-Hacktool/web_bugger.py"')

elif command == '3':
    os.system('cmd /k "python3 info.py"' if os.name == 'nt' else 'python3 info.py')

    display_menu()
else:
    print('Invalid option! Please choose the correct one.')

while True: display_menu() command = input('> ')

if command.lower() == 'exit':
    break

execute_command(command)