mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 21:45:39 +01:00
Switch connect_ex
result checks to use errno
lookups (#289)
* Switch connect_ex result checks to errno lookups * Return errno strings, clean up comment
This commit is contained in:
parent
a6f02ae8e8
commit
7752023dc2
@ -21,6 +21,7 @@
|
|||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
"""
|
"""
|
||||||
|
import errno
|
||||||
import multiprocessing
|
import multiprocessing
|
||||||
import os
|
import os
|
||||||
import queue
|
import queue
|
||||||
@ -442,10 +443,10 @@ class DHEat:
|
|||||||
# out.d("Creating socket (%u of %u already exist)..." % (len(socket_dict), concurrent_sockets), write_now=True)
|
# out.d("Creating socket (%u of %u already exist)..." % (len(socket_dict), concurrent_sockets), write_now=True)
|
||||||
ret = s.connect_ex((target_ip_address, aconf.port))
|
ret = s.connect_ex((target_ip_address, aconf.port))
|
||||||
num_attempted_connections += 1
|
num_attempted_connections += 1
|
||||||
if ret in [0, 115]: # Check if connection is successful or EINPROGRESS.
|
if ret in [0, errno.EINPROGRESS]:
|
||||||
socket_dict[s] = now
|
socket_dict[s] = now
|
||||||
else:
|
else:
|
||||||
out.d("connect_ex() returned: %d" % ret, write_now=True)
|
out.d("connect_ex() returned: %s (%d)" % (os.strerror(ret), ret), write_now=True)
|
||||||
|
|
||||||
# out.d("Calling select() on %u sockets..." % len(socket_dict), write_now=True)
|
# out.d("Calling select() on %u sockets..." % len(socket_dict), write_now=True)
|
||||||
socket_list: List[socket.socket] = [*socket_dict] # Get a list of sockets from the dictionary.
|
socket_list: List[socket.socket] = [*socket_dict] # Get a list of sockets from the dictionary.
|
||||||
|
Loading…
Reference in New Issue
Block a user