Spaces:
Runtime error
Runtime error
File size: 183 Bytes
5f491f6 | 1 2 3 4 5 6 7 8 9 10 | from autosploit.main import main
from lib.output import error
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
error("user aborted session")
|