-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnepustil_dns_api.py
83 lines (67 loc) · 1.64 KB
/
nepustil_dns_api.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from contextlib import redirect_stderr
import requests
import re
from io import StringIO
import csv
BASE_URL = "https://dnsadm.nepustil.net/index.cgi"
user = ""
password = ""
"""Get PTR Records"""
def getRecords():
action = "readzone"
data = {
'domain': user,
'password': password,
'action': action,
'resrec': ''
}
request = requests.post(BASE_URL, data=data)
read = False
res = []
for line in request.text.splitlines():
if(line.startswith("254")):
read = True
continue
if(read):
list = re.sub("\s+", ",", line.strip())
reader = csv.reader(list.split('\n'), delimiter=',')
for row in reader:
res.append(row)
return res
"""Check if Record Exists"""
def existsRecord(ip):
res = getRecords()
for record in res:
if(record[0] == ip):
return True
return False
"""Add PTR Record"""
def addRecord(domain, ip):
action = "doaddrr"
data = {
'domain': user,
'password': password,
'action': action,
'resrec': ip,
'restype': 'PTR',
'resval': domain+".",
'resttl': 86400
}
requests.post(BASE_URL, data=data)
"""Remove PTR Record"""
def removeRecord(ip):
res = getRecords()
for record in res:
if(record[0] == ip):
domain = record[4]
action = "dodelrr"
data = {
'domain': user,
'password': password,
'action': action,
'resrec': ip,
'restype': 'PTR',
'resval': domain,
'resttl': 86400
}
requests.post(BASE_URL, data=data)