Skip to content
This repository was archived by the owner on Aug 7, 2020. It is now read-only.

Commit

Permalink
Fixed [Enter] key issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lgandx committed Apr 1, 2014
1 parent f377326 commit c97a13c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Responder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2241,6 +2241,7 @@ def serve_thread_SSL(host, port, handler):

def main():
try:
num_thrd = 1
Is_FTP_On(FTP_On_Off)
Is_HTTP_On(On_Off)
Is_HTTPS_On(SSL_On_Off)
Expand All @@ -2258,17 +2259,16 @@ def main():
thread.start_new(serve_thread_udp_MDNS,('', 5353,MDNS)) #MDNS
thread.start_new(serve_thread_udp,('', 137,NB)) #NBNS
thread.start_new(serve_thread_udp_LLMNR,('', 5355, LLMNR)) #LLMNR
while num_thrd > 0:
pass
except KeyboardInterrupt:
exit()
exit()

if __name__ == '__main__':
try:
main()
except:
raise
raw_input()





Expand Down

0 comments on commit c97a13c

Please sign in to comment.