Skip to content

Commit

Permalink
포트스캐너
Browse files Browse the repository at this point in the history
  • Loading branch information
sohwaje authored May 16, 2020
1 parent 1f2b288 commit fe78a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion local_port_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
def check_port():
port_open=[]
for port in range(1, 65536):
for port in range(1, 65535):
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(5);
Expand Down

0 comments on commit fe78a37

Please sign in to comment.