superhedgy / AttackSurfaceMapper

AttackSurfaceMapper is a tool that aims to automate the reconnaissance process.
https://AttackSurfaceMapper.com
GNU General Public License v3.0
1.3k stars 192 forks source link

Bug on line 529 #39

Closed spinningbluebird closed 3 years ago

spinningbluebird commented 3 years ago

File "asm.py", line 529 print(style + msg, end= "")

Just submitting the issue I found. I also have the fix for it

spinningbluebird commented 3 years ago

Fixed code:

if type == "error": print("{0}\n[*] Error: {1}".format(Fore.RED + Style.BRIGHT, Style.RESET_ALL + Fore.WHITE + msg)) else: print(style + msg, end== "") if reset == 1: print(Style.RESET_ALL)