Skip to content

Commit

Permalink
Update crab.py
Browse files Browse the repository at this point in the history
  • Loading branch information
N0tA1dan committed Jan 9, 2022
1 parent 2a3b8d8 commit be80506
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/crab.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def portscan2(host, timeout):
for x in range(0, 65536):
t = threading.Thread(target=fastportscan, kwargs={'host': host, 'port': x, 'timeout': timeout})

x += 1
t.start()
end = time.time()
print("took: ", end - start, "seconds")
Expand All @@ -78,7 +77,6 @@ def fastportscan2(host, timeout):
for x in range(0, 1025):
t = threading.Thread(target=fastportscan, kwargs={'host': host, 'port': x, 'timeout': timeout})

x += 1
t.start()
end = time.time()
print("took: ", end - start, "seconds")
Expand Down

0 comments on commit be80506

Please sign in to comment.