-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatik.py
25 lines (20 loc) · 964 Bytes
/
statik.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import subprocess
input_file_path = 'domain.txt'
output_file_path = 'check.txt'
with open(input_file_path, 'r') as input_file, open(output_file_path, 'w') as output_file:
domains = input_file.read().splitlines()
for domain in domains:
try:
# host komutu ile domainin alias bilgisini al
result = subprocess.run(['host', domain], capture_output=True, text=True)
output = result.stdout
# Eğer alias bilgisi varsa, check.txt dosyasına yaz
if 'alias' in output.lower():
result_line = f"{domain} -> {output.strip()}"
print(result_line)
output_file.write(result_line + '\n')
else:
print(f"{domain} için alias bilgisi bulunamadı.")
except subprocess.CalledProcessError as e:
# host komutu hata verirse
print(f"{domain} için host komutu çalıştırılırken hata oluştu: {e}")