import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(2) #2 Second Timeout
result = sock.connect_ex(('127.0.0.1',80))
if result == 0:
print 'port OPEN'
else:
print 'port CLOSED, connect_ex returned: '+str(result)
import re
with open('traffic.txt', 'r') as file:
fi = file.readlines()
re_ip = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$")
re_port = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$\:(\d+)")
for line in fi:
ip = re.findall(re_ip,line)
port = re.findall(re_port,line)
print port , ip
parallel -j10 --colsep ':' '
nmap_result=$(nmap -p {2} {1} | grep "open")
if [ -n "$nmap_result" ]; then
echo "{1}:{2} - OPEN" >> results.log
else
echo "{1}:{2} - CLOSED" >> results.log
fi
' < servers.txt
import subprocess
# Функция для проверки доступности IP:port с помощью psping
def check_ip(ip_port):
try:
print(f"Проверяем доступность {ip_port}", end='')
# Выполняем команду psping
result = subprocess.run(['psping', ip_port], capture_output=True, text=True)
# Проверяем, есть ли в выводе сообщение об успешном пинге
if "(0% loss)" in result.stdout:
print(f"\rПроверяем доступность {ip_port} - доступен")
return True
if "(25% loss)" in result.stderr or "50% loss" in result.stdout:
print(f"\rПроверяем доступность {ip_port} - потери пакетов")
return True
if "(100% loss)" in result.stdout:
print(f"\rПроверяем доступность {ip_port} - недоступен")
return False
except Exception as e:
print(f"Ошибка при проверке {ip_port}: {e}")
return False
# Чтение IP:port из файла и запись доступных в другой файл
def check_ips_from_file(input_file, output_file):
with open(input_file, 'r') as infile, open(output_file, 'w') as outfile:
for line in infile:
ip_port = line.strip() # Убираем лишние пробелы и символы новой строки
if check_ip(ip_port):
outfile.write(ip_port + '\n') # Записываем доступный IP:port в файл
# Указываем имена файлов
input_file = 'ip.txt'
output_file = 'ipUP.txt'
# Запускаем проверку
check_ips_from_file(input_file, output_file)