bcrypt.ctf/bcrypter/__main__.py

13 lines
212 B
Python
Raw Normal View History

2025-06-21 19:05:47 +10:00
from bcrypt.cli import repl
def main():
repl()
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
print('\n[!] SIGINT')
except EOFError:
print('\n[!] EOF')