Skip to content

Commit

Permalink
Update horus.py
Browse files Browse the repository at this point in the history
  • Loading branch information
6abd authored Jul 10, 2024
1 parent 8b37eff commit 5c4874c
Showing 1 changed file with 12 additions and 21 deletions.
33 changes: 12 additions & 21 deletions horus.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['vt']:
if args['vt']: # Runs the vt program.
while True:
try:
vt.vt()
Expand All @@ -169,7 +169,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['flightinfo']: # Runs the mactrace program.
if args['flightinfo']: # Runs the flightinfo program.
while True:
try:
flightinfo.flightinfo()
Expand All @@ -178,7 +178,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['wigle']: # Runs the mactrace program.
if args['wigle']: # Runs the wigle program.
while True:
try:
wigle.wigle()
Expand All @@ -187,7 +187,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['bankindex']: # Runs the mactrace program.
if args['bankindex']: # Runs the bankindex program.
while True:
try:
bankindex.bankindex()
Expand All @@ -196,7 +196,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['exif']: # Runs the mactrace program.
if args['exif']: # Runs the exif program.
while True:
try:
exif.exif()
Expand All @@ -205,7 +205,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['ytd']: # Runs the mactrace program.
if args['ytd']: # Runs the ytd program.
while True:
try:
ytd.ytd()
Expand All @@ -214,7 +214,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['falcon']: # Runs the mactrace program.
if args['falcon']: # Runs the falcon program.
while True:
try:
falcon.falcon()
Expand All @@ -223,16 +223,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['licenseinfo']: # Runs the mactrace program.
while True:
try:
licenseinfo.licenseinfo()
os._exit(0)
except Exception as error:
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['lokiencrypt']: # Runs the mactrace program.
if args['lokiencrypt']: # Runs the loki_encrypt program.
while True:
try:
loki_encrypt.loki_encrypt()
Expand All @@ -241,7 +232,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['lokidecrypt']: # Runs the mactrace program.
if args['lokidecrypt']: # Runs the loki_decrypt program.
while True:
try:
loki_decrypt.loki_decrypt()
Expand All @@ -250,7 +241,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['lokigen']: # Runs the mactrace program.
if args['lokigen']: # Runs the loki_keygen program.
while True:
try:
loki_keygen.loki_keygen()
Expand All @@ -259,7 +250,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['lokiprobe']: # Runs the mactrace program.
if args['lokiprobe']: # Runs the loki_discovery program.
while True:
try:
loki_discovery.loki_discovery()
Expand All @@ -268,7 +259,7 @@ def __exit__(self, *args):
print(f">_ {Fore.RED}FAILURE{Fore.WHITE}: {error}\n")
os._exit(0)

if args['recpull']: # Runs the mactrace program.
if args['recpull']: # Runs the recpull program.
while True:
try:
recpull.recpull()
Expand Down

0 comments on commit 5c4874c

Please sign in to comment.