From af437cfae59f12ef74f950b61fed79703dfe27f6 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sat, 28 Aug 2021 11:28:23 +1200 Subject: [PATCH] Initial project commit --- .gitignore | 4 + Dockerfile | 11 + Dockerfile.new | 16 + Dockerfile.scratch | 50 + Pipfile | 14 + Pipfile.lock | 188 +++ app.py | 105 ++ docker-compose.yml | 48 + entrypoint.sh | 0 requirements.txt | 8 + src/__init__.py | 0 src/config/app.yml | 8 + src/config/app.yml.example | 16 + src/config/directdns.log | 2590 +++++++++++++++++++++++++++++++++ src/db.py | 67 + src/directdnsonly.py | 232 +++ src/lib/__init__.py | 0 src/lib/common/__init__.py | 18 + src/lib/db/__init__.py | 15 + src/lib/db/models/__init__.py | 28 + src/test-file.py | 6 + src/test.py | 18 + 22 files changed, 3442 insertions(+) create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 Dockerfile.new create mode 100644 Dockerfile.scratch create mode 100644 Pipfile create mode 100644 Pipfile.lock create mode 100644 app.py create mode 100644 docker-compose.yml create mode 100644 entrypoint.sh create mode 100644 requirements.txt create mode 100644 src/__init__.py create mode 100644 src/config/app.yml create mode 100644 src/config/app.yml.example create mode 100644 src/config/directdns.log create mode 100644 src/db.py create mode 100644 src/directdnsonly.py create mode 100644 src/lib/__init__.py create mode 100644 src/lib/common/__init__.py create mode 100644 src/lib/db/__init__.py create mode 100644 src/lib/db/models/__init__.py create mode 100644 src/test-file.py create mode 100644 src/test.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb7de51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.db +venv/ +.venv +.idea \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ca74c07 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM pypy:slim-buster + +RUN mkdir -p /opt/apikeyhandler/config +VOLUME /opt/apikeyhandler/config + +COPY ./src/ /opt/apikeyhandler +WORKDIR /opt/apikeyhandler + +RUN pip install -r requirements.txt + +CMD pypy3 main.py \ No newline at end of file diff --git a/Dockerfile.new b/Dockerfile.new new file mode 100644 index 0000000..e775950 --- /dev/null +++ b/Dockerfile.new @@ -0,0 +1,16 @@ +FROM centos:latest +ENV APP_NAME=rpmbuild +ENV VERSION=latest + +RUN mkdir -p /tmp/build/rpm + +WORKDIR /tmp/build/rpm +RUN dnf install -y --allowerasing gcc rpm-build rpm-devel \ + rpmlint make bash coreutils \ + diffutils patch rpmdevtools && \ + dnf clean all && \ + rm -Rf /var/dnf/cache && \ + rpmdev-setuptree + +VOLUME /tmp/build/rpm +CMD ["rpmbuild", "--define version ${VERSION}", "-bb", "${APP_NAME}.spec"] diff --git a/Dockerfile.scratch b/Dockerfile.scratch new file mode 100644 index 0000000..359f0e1 --- /dev/null +++ b/Dockerfile.scratch @@ -0,0 +1,50 @@ +FROM python:3.7.9 as builder +# Allow Passing Version from CI +ARG VERSION +ENV LC_ALL=en_NZ.utf8 +ENV LANG=en_NZ.utf8 +ENV APP_NAME="apikeyauthhandler" + +RUN mkdir -p /tmp/build && apt-get update && \ + apt-get install -y libgcc1-dbg + +COPY src/ /tmp/build/ +COPY requirements.txt /tmp/build + +WORKDIR /tmp/build + +WORKDIR /tmp/src +RUN wget https://github.com/NixOS/patchelf/releases/download/0.12/patchelf-0.12.tar.bz2 && \ + tar xvf patchelf-0.12.tar.bz2 && \ + cd /tmp/src/patchelf-0.12* && \ + ./configure --prefix="/usr" && \ + make install + +WORKDIR /tmp/build +RUN pip3 install -r requirements.txt && \ + pyinstaller --hidden-import=json \ + --hidden-import=jaraco \ + --noconfirm --onefile ${APP_NAME}.py && \ + cd /tmp/build/dist && \ + staticx ${APP_NAME} ./${APP_NAME}_static + +RUN mkdir -p /tmp/approot && \ + mkdir -p /tmp/approot/app && \ + mkdir -p /tmp/approot/app/config && \ + mkdir -p /tmp/approot/etc && \ + mkdir -p /tmp/approot/tmp && \ + mkdir -p /tmp/approot/data && \ + mkdir -p /tmp/approot/lib/x86_64-linux-gnu && \ + cp /tmp/build/config/app.yml /tmp/approot/app/config/app.yml && \ + cp /tmp/build/dist/${APP_NAME}_static /tmp/approot/app/${APP_NAME} && \ + cp /usr/lib/gcc/x86_64-linux-gnu/8/libgcc_s.so.1 /tmp/approot/lib/x86_64-linux-gnu/libgcc_s.so.1 + +FROM scratch +COPY --from=builder /tmp/approot / +COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo +ENV TZ=Pacific/Auckland +WORKDIR /app + +VOLUME /app/config /data + +CMD ["/app/apikeyauthhandler"] diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..7e710a8 --- /dev/null +++ b/Pipfile @@ -0,0 +1,14 @@ +[[source]] +name = "pypi" +url = "https://pypi.org/simple" +verify_ssl = true + +[dev-packages] + +[packages] +cherrypy = "==18.6.0" +sqlalchemy = "==1.3.19" +pyyaml = "==5.3.1" + +[requires] +python_version = "3.8" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..7458f0d --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,188 @@ +{ + "_meta": { + "hash": { + "sha256": "046c8d93fda36d9f83c939c4d6474b700962db5b1e4cb774c4ea5b76f0af50af" + }, + "pipfile-spec": 6, + "requires": { + "python_version": "3.8" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "cheroot": { + "hashes": [ + "sha256:ab342666c8e565a55cd2baf2648be9b379269a89d47e60862a087cff9d8b33ce", + "sha256:b6c18caf5f79cdae668c35fc8309fc88ea4a964cce9e2ca8504fab13bcf57301" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==8.4.5" + }, + "cherrypy": { + "hashes": [ + "sha256:56608edd831ad00991ae585625e0206ed61cf1a0850e4b2cc48489fb2308c499", + "sha256:c0a7283f02a384c112a0a18404fd3abd849fc7fd4bec19378067150a2573d2e4" + ], + "index": "pypi", + "version": "==18.6.0" + }, + "jaraco.classes": { + "hashes": [ + "sha256:116429c2047953f525afdcae165475c4589c7b14870e78b2d068ecb01018827e", + "sha256:c38698ff8ef932eb33d91c0e8fc192ad7c44ecee03f7f585afd4f35aeaef7aab" + ], + "markers": "python_version >= '3.6'", + "version": "==3.1.0" + }, + "jaraco.collections": { + "hashes": [ + "sha256:a7889f28c80c4875bd6256d9924e8526dacfef22cd7b80ff8469b4d312f9f144", + "sha256:be570ef4f2e7290b757449395238fa63d70a9255574624e73c5ff9f1ee554721" + ], + "markers": "python_version >= '3.6'", + "version": "==3.0.0" + }, + "jaraco.functools": { + "hashes": [ + "sha256:9fedc4be3117512ca3e03e1b2ffa7a6a6ffa589bfb7d02bfb324e55d493b94f4", + "sha256:d3dc9f6c1a1d45d7f59682a3bf77aceb685c1a60891606c7e4161e72ecc399ad" + ], + "markers": "python_version >= '3.6'", + "version": "==3.0.1" + }, + "jaraco.text": { + "hashes": [ + "sha256:c87569c9afae14f71b2e1c57f316770ab6981ab675d9c602be1c7981161bacdd", + "sha256:e5078b1126cc0f166c7859aa75103a56c0d0f39ebcafc21695615472e0f810ec" + ], + "markers": "python_version >= '2.7'", + "version": "==3.2.0" + }, + "more-itertools": { + "hashes": [ + "sha256:6f83822ae94818eae2612063a5101a7311e68ae8002005b5e05f03fd74a86a20", + "sha256:9b30f12df9393f0d28af9210ff8efe48d10c94f73e5daf886f10c4b0b0b4f03c" + ], + "markers": "python_version >= '3.5'", + "version": "==8.5.0" + }, + "portend": { + "hashes": [ + "sha256:600dd54175e17e9347e5f3d4217aa8bcf4bf4fa5ffbc4df034e5ec1ba7cdaff5", + "sha256:62dd00b94a6a55fbf0320365fbdeba37f0d1fe14d613841037dc4780bedfda8f" + ], + "markers": "python_version >= '2.7'", + "version": "==2.6" + }, + "pytz": { + "hashes": [ + "sha256:a494d53b6d39c3c6e44c3bec237336e14305e4f29bbf800b599253057fbb79ed", + "sha256:c35965d010ce31b23eeb663ed3cc8c906275d6be1a34393a1d73a41febf4a048" + ], + "version": "==2020.1" + }, + "pywin32": { + "hashes": [ + "sha256:00eaf43dbd05ba6a9b0080c77e161e0b7a601f9a3f660727a952e40140537de7", + "sha256:11cb6610efc2f078c9e6d8f5d0f957620c333f4b23466931a247fb945ed35e89", + "sha256:1f45db18af5d36195447b2cffacd182fe2d296849ba0aecdab24d3852fbf3f80", + "sha256:37dc9935f6a383cc744315ae0c2882ba1768d9b06700a70f35dc1ce73cd4ba9c", + "sha256:6e38c44097a834a4707c1b63efa9c2435f5a42afabff634a17f563bc478dfcc8", + "sha256:8319bafdcd90b7202c50d6014efdfe4fde9311b3ff15fd6f893a45c0868de203", + "sha256:9b3466083f8271e1a5eb0329f4e0d61925d46b40b195a33413e0905dccb285e8", + "sha256:a60d795c6590a5b6baeacd16c583d91cce8038f959bd80c53bd9a68f40130f2d", + "sha256:af40887b6fc200eafe4d7742c48417529a8702dcc1a60bf89eee152d1d11209f", + "sha256:ec16d44b49b5f34e99eb97cf270806fdc560dff6f84d281eb2fcb89a014a56a9", + "sha256:ed74b72d8059a6606f64842e7917aeee99159ebd6b8d6261c518d002837be298", + "sha256:fa6ba028909cfc64ce9e24bcf22f588b14871980d9787f1e2002c99af8f1850c" + ], + "markers": "sys_platform == 'win32'", + "version": "==228" + }, + "pyyaml": { + "hashes": [ + "sha256:06a0d7ba600ce0b2d2fe2e78453a470b5a6e000a985dd4a4e54e436cc36b0e97", + "sha256:240097ff019d7c70a4922b6869d8a86407758333f02203e0fc6ff79c5dcede76", + "sha256:4f4b913ca1a7319b33cfb1369e91e50354d6f07a135f3b901aca02aa95940bd2", + "sha256:69f00dca373f240f842b2931fb2c7e14ddbacd1397d57157a9b005a6a9942648", + "sha256:73f099454b799e05e5ab51423c7bcf361c58d3206fa7b0d555426b1f4d9a3eaf", + "sha256:74809a57b329d6cc0fdccee6318f44b9b8649961fa73144a98735b0aaf029f1f", + "sha256:7739fc0fa8205b3ee8808aea45e968bc90082c10aef6ea95e855e10abf4a37b2", + "sha256:95f71d2af0ff4227885f7a6605c37fd53d3a106fcab511b8860ecca9fcf400ee", + "sha256:b8eac752c5e14d3eca0e6dd9199cd627518cb5ec06add0de9d32baeee6fe645d", + "sha256:cc8955cfbfc7a115fa81d85284ee61147059a753344bc51098f3ccd69b0d7e0c", + "sha256:d13155f591e6fcc1ec3b30685d50bf0711574e2c0dfffd7644babf8b5102ca1a" + ], + "index": "pypi", + "version": "==5.3.1" + }, + "six": { + "hashes": [ + "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", + "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.15.0" + }, + "sqlalchemy": { + "hashes": [ + "sha256:072766c3bd09294d716b2d114d46ffc5ccf8ea0b714a4e1c48253014b771c6bb", + "sha256:107d4af989831d7b091e382d192955679ec07a9209996bf8090f1f539ffc5804", + "sha256:15c0bcd3c14f4086701c33a9e87e2c7ceb3bcb4a246cd88ec54a49cf2a5bd1a6", + "sha256:26c5ca9d09f0e21b8671a32f7d83caad5be1f6ff45eef5ec2f6fd0db85fc5dc0", + "sha256:276936d41111a501cf4a1a0543e25449108d87e9f8c94714f7660eaea89ae5fe", + "sha256:3292a28344922415f939ee7f4fc0c186f3d5a0bf02192ceabd4f1129d71b08de", + "sha256:33d29ae8f1dc7c75b191bb6833f55a19c932514b9b5ce8c3ab9bc3047da5db36", + "sha256:3bba2e9fbedb0511769780fe1d63007081008c5c2d7d715e91858c94dbaa260e", + "sha256:465c999ef30b1c7525f81330184121521418a67189053bcf585824d833c05b66", + "sha256:51064ee7938526bab92acd049d41a1dc797422256086b39c08bafeffb9d304c6", + "sha256:5a49e8473b1ab1228302ed27365ea0fadd4bf44bc0f9e73fe38e10fdd3d6b4fc", + "sha256:618db68745682f64cedc96ca93707805d1f3a031747b5a0d8e150cfd5055ae4d", + "sha256:6547b27698b5b3bbfc5210233bd9523de849b2bb8a0329cd754c9308fc8a05ce", + "sha256:6557af9e0d23f46b8cd56f8af08eaac72d2e3c632ac8d5cf4e20215a8dca7cea", + "sha256:73a40d4fcd35fdedce07b5885905753d5d4edf413fbe53544dd871f27d48bd4f", + "sha256:8280f9dae4adb5889ce0bb3ec6a541bf05434db5f9ab7673078c00713d148365", + "sha256:83469ad15262402b0e0974e612546bc0b05f379b5aa9072ebf66d0f8fef16bea", + "sha256:860d0fe234922fd5552b7f807fbb039e3e7ca58c18c8d38aa0d0a95ddf4f6c23", + "sha256:883c9fb62cebd1e7126dd683222b3b919657590c3e2db33bdc50ebbad53e0338", + "sha256:8afcb6f4064d234a43fea108859942d9795c4060ed0fbd9082b0f280181a15c1", + "sha256:96f51489ac187f4bab588cf51f9ff2d40b6d170ac9a4270ffaed535c8404256b", + "sha256:9e865835e36dfbb1873b65e722ea627c096c11b05f796831e3a9b542926e979e", + "sha256:aa0554495fe06172b550098909be8db79b5accdf6ffb59611900bea345df5eba", + "sha256:b595e71c51657f9ee3235db8b53d0b57c09eee74dfb5b77edff0e46d2218dc02", + "sha256:b6ff91356354b7ff3bd208adcf875056d3d886ed7cef90c571aef2ab8a554b12", + "sha256:b70bad2f1a5bd3460746c3fb3ab69e4e0eb5f59d977a23f9b66e5bdc74d97b86", + "sha256:c7adb1f69a80573698c2def5ead584138ca00fff4ad9785a4b0b2bf927ba308d", + "sha256:c898b3ebcc9eae7b36bd0b4bbbafce2d8076680f6868bcbacee2d39a7a9726a7", + "sha256:e49947d583fe4d29af528677e4f0aa21f5e535ca2ae69c48270ebebd0d8843c0", + "sha256:eb1d71643e4154398b02e88a42fc8b29db8c44ce4134cf0f4474bfc5cb5d4dac", + "sha256:f2e8a9c0c8813a468aa659a01af6592f71cd30237ec27c4cc0683f089f90dcfc", + "sha256:fe7fe11019fc3e6600819775a7d55abc5446dda07e9795f5954fdbf8a49e1c37" + ], + "index": "pypi", + "version": "==1.3.19" + }, + "tempora": { + "hashes": [ + "sha256:599a3a910b377f2b544c7b221582ecf4cb049b017c994b37f2b1a9ed1099716e", + "sha256:9f46de767be7dd21d9602a8a5b0978fd55abc70af3e2a7814c85c00d7a8fffa3" + ], + "markers": "python_version >= '3.6'", + "version": "==4.0.0" + }, + "zc.lockfile": { + "hashes": [ + "sha256:307ad78227e48be260e64896ec8886edc7eae22d8ec53e4d528ab5537a83203b", + "sha256:cc33599b549f0c8a248cb72f3bf32d77712de1ff7ee8814312eb6456b42c015f" + ], + "version": "==2.0" + } + }, + "develop": {} +} diff --git a/app.py b/app.py new file mode 100644 index 0000000..0d9a5ae --- /dev/null +++ b/app.py @@ -0,0 +1,105 @@ +from flask import Flask, request +import mmap +import re + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): + return 'Hello World!' + + +@app.route('/CMD_API_LOGIN_TEST') +def login_test(): + multi_dict = request.values + for key in multi_dict: + print(multi_dict.get(key)) + print(multi_dict.getlist(key)) + # print(request.values) + print(request.headers) + print(request.authorization) + + return 'error=0&text=Login OK&details=none' + + +@app.route('/CMD_API_DNS_ADMIN', methods=['GET', 'POST']) +def domain_admin(): + print(str(request.data, encoding="utf-8")) + print(request.values.get('action')) + action = request.values.get('action') + if action == 'exists': + # DirectAdmin is checking whether the domain is in the cluster + return 'result: exists=1' + if action == 'delete': + # Domain is being removed from the DNS + hostname = request.values.get('hostname') + username = request.values.get('username') + domain = request.values.get('select0') + + + if action == 'rawsave': + # DirectAdmin wants to add/update a domain + hostname = request.values.get('hostname') + username = request.values.get('username') + domain = request.values.get('domain') + + if not check_zone_exists(str(domain)): + put_zone_index(str(domain)) + write_zone_file(str(domain), request.data.decode("utf-8")) + else: + # Domain already exists + write_zone_file(str(domain), request.data.decode("utf-8")) + + +def create_zone_index(): + # Create an index of all zones present from zone definitions + regex = r"(?<=\")(?P.*)(?=\"\s)" + + with open(zone_index_file, 'w+') as f: + with open(named_conf, 'r') as named_file: + while True: + # read line + line = named_file.readline() + if not line: + # Reached end of file + break + print(line) + hosted_domain = re.search(regex, line).group(0) + f.write(hosted_domain + "\n") + + +def put_zone_index(zone_name): + # add a new zone to index + with open(zone_index_file, 'a+') as f: + # We are using append mode + f.write(zone_name) + + +def write_zone_file(zone_name, data): + # Write the zone to file + with open(zones_dir + '/' + zone_name + '.db', 'w') as f: + f.write(data) + + +def check_zone_exists(zone_name): + # Check if zone is present in the index + with open(zone_index_file, 'r') as f: + try: + s = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) + if s.find(bytes(zone_name, encoding='utf8')) != -1: + return True + else: + return False + except ValueError as e: + # File Empty? + return False + + +if __name__ == '__main__': + zones_dir = "/etc/pdns/zones" + zone_index_file = "/etc/pdns/zones/.index" + named_conf = "/etc/pdns/named.conf" + create_zone_index() + + app.run(host="0.0.0.0") diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2fab4e7 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,48 @@ +version: '3.7' +services: + app: + image: registry.dockerprod.ultrafast.co.nz/uff/apikeyhandler:0.10 + networks: + - traefik-net + volumes: + - /etc/localtime:/etc/localtime:ro # Mount Timezone config to container + - /data/swarm-vols/apikeyhandler:/opt/apikeyhandler/config # Store Config on Persistent drive shared between nodes + deploy: + mode: replicated + replicas: 1 + placement: + constraints: + - node.role == worker # Place this service on Worker Nodes alternatively may specify manager if you want service on manager node. + labels: + - "traefik.http.routers.apikeyauth.rule=Host(`apiauth-internal.dockertest.ultrafast.co.nz`)" # This label creates a route Traefik will listen on + - "traefik.http.routers.apikeyauth.tls=true" # Enable TLS, in this example using default TLS cert + - "traefik.http.services.apikeyauth.loadbalancer.server.port=8080" # Set Port to proxy + - "traefik.enable=true" # This flag enables load balancing through Traefik :) + - "traefik.docker.network=traefik-net" # Set the network to connect to container on + - "traefik.http.middlewares.apikeyauth.forwardauth.address=https://apiauth-internal.dockertest.ultrafast.co.nz" + - "traefik.http.middlewares.apikeyauth.forwardauth.trustForwardHeader=true" + - "traefik.http.middlewares.apikeyauth.forwardauth.authResponseHeaders=X-Client-Id" + - "traefik.http.middlewares.apikeyauth.forwardauth.tls.insecureSkipVerify=true" + test_app: + image: containous/whoami + networks: + - traefik-net + volumes: + - /etc/localtime:/etc/localtime:ro # Mount Timezone config to container + deploy: + mode: replicated + replicas: 1 + placement: + constraints: + - node.role == worker # Place this service on Worker Nodes alternatively may specify manager if you want service on manager node. + labels: + - "traefik.http.routers.testapp.rule=Host(`testapp.dockertest.ultrafast.co.nz`)" # This label creates a route Traefik will listen on + - "traefik.http.routers.testapp.tls=true" # Enable TLS, in this example using default TLS cert + - "traefik.http.routers.testapp.middlewares=apikeyauth" + - "traefik.http.services.testapp.loadbalancer.server.port=80" # Set Port to proxy + - "traefik.enable=true" # This flag enables load balancing through Traefik :) + - "traefik.docker.network=traefik-net" # Set the network to connect to container on + +networks: + traefik-net: + external: true \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9663b49 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +cherrypy==18.6.1 +pyyaml==5.3.1 +python-json-logger +sqlalchemy==1.3.20 +pyinstaller==4.0 +patchelf-wrapper +staticx + diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/config/app.yml b/src/config/app.yml new file mode 100644 index 0000000..6194fe6 --- /dev/null +++ b/src/config/app.yml @@ -0,0 +1,8 @@ +environment: '' +proxy_support: true +log_level: debug +log_to: file +proxy_support_base: http://127.0.0.1 +server_port: 2222 +token_valid_for_days: 30 +timezone: Pacific/Auckland \ No newline at end of file diff --git a/src/config/app.yml.example b/src/config/app.yml.example new file mode 100644 index 0000000..107d8a7 --- /dev/null +++ b/src/config/app.yml.example @@ -0,0 +1,16 @@ +--- +# Port that the server will run on. +server_port: 8080 +# Turn Proxy support on. True if behind Traefik/Nginx for example +proxy_support: True +# Proxy support Base URI +proxy_support_base: http://127.0.0.1 +# Values accepted are '', production, staging +environment: '' +api_keys: + - key: ZU7f3NogDxIzhfW5tsv9 + name: super # Name of user + expires: never # Expiry never for superuser + - key: DhCIZ5yKjVN7ReKVh6Tl + name: jaydeep + expires: 21/11/2020, 10:56:24 \ No newline at end of file diff --git a/src/config/directdns.log b/src/config/directdns.log new file mode 100644 index 0000000..0a04d46 --- /dev/null +++ b/src/config/directdns.log @@ -0,0 +1,2590 @@ +{"asctime": "2021-08-25 19:56:27,632", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 19:56:27,632", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 19:56:27,632", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 19:56:27,651", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 19:56:27,654", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 19:56:27,654", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 19:56:27,654", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 19:56:27,655", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 19:56:27,655", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 19:56:27,655", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 19:56:27,761", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 19:56:27,762", "levelname": "INFO", "message": "[25/Aug/2021:19:56:27] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 19:57:00,641", "levelname": "INFO", "message": "127.0.0.1 - test [25/Aug/2021:19:57:00] \"GET /CMD_API_LOGIN_TEST HTTP/1.1\" 200 34 \"\" \"Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0\""} +{"asctime": "2021-08-25 20:02:05,567", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-25 20:02:05,567", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-25 20:02:05,568", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:20:02:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.com HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-25 20:02:06,425", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-25 20:02:06,425", "levelname": "DEBUG", "message": "Action Type: rawsave"} +{"asctime": "2021-08-25 20:02:06,425", "levelname": "DEBUG", "message": "Domain name to check: test.com"} +{"asctime": "2021-08-25 20:02:06,426", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-25 20:02:06,427", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-25 20:02:06,441", "levelname": "DEBUG", "message": "Zone Name for write: test.com"} +{"asctime": "2021-08-25 20:02:06,441", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.test.com. (\n 2021082500\n 3600\n 3600\n 1209600\n 86400 )\n\ntest.com.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\ntest.com.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t1.1.1.1\nmail\t3600\tIN\tA\t1.1.1.1\npop\t3600\tIN\tA\t1.1.1.1\nsmtp\t3600\tIN\tA\t1.1.1.1\ntest.com.\t3600\tIN\tA\t1.1.1.1\nwww\t3600\tIN\tA\t1.1.1.1\n\ntest.com.\t3600\tIN\tMX\t10 mail\n\n\n\ntest.com.\t3600\tIN\tTXT\t\"v=spf1 a mx ip4:139.99.133.68 ip6:2402:1f00:8100:400:0:0:0:5bd ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-25 20:02:06,442", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:20:02:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=test.com&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-25 20:06:04,948", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 20:06:04,948", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:06:04,948", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 20:06:04,960", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 20:06:04,960", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 20:06:04,960", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 20:06:04,960", "levelname": "INFO", "message": "[25/Aug/2021:20:06:04] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 20:06:05,052", "levelname": "INFO", "message": "[25/Aug/2021:20:06:05] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 20:06:05,052", "levelname": "INFO", "message": "[25/Aug/2021:20:06:05] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 20:06:06,237", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 20:06:06,237", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 20:06:06,237", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 20:06:06,255", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 20:06:06,258", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 20:06:06,258", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 20:06:06,258", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 20:06:06,258", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 20:06:06,258", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 20:06:06,259", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:06:06,365", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 20:06:06,365", "levelname": "INFO", "message": "[25/Aug/2021:20:06:06] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 20:24:21,496", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 20:24:21,496", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:24:21,496", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 20:24:21,507", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 20:24:21,508", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 20:24:21,508", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 20:24:21,508", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 20:24:21,514", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 20:24:21,514", "levelname": "INFO", "message": "[25/Aug/2021:20:24:21] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 20:26:13,206", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 20:26:13,206", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 20:26:13,206", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 20:26:13,221", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 20:26:13,223", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 20:26:13,223", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 20:26:13,224", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 20:26:13,224", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 20:26:13,224", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 20:26:13,224", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:26:13,330", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 20:26:13,330", "levelname": "INFO", "message": "[25/Aug/2021:20:26:13] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 20:33:41,998", "levelname": "INFO", "message": "[25/Aug/2021:20:33:41] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 20:33:41,998", "levelname": "INFO", "message": "[25/Aug/2021:20:33:41] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:33:41,998", "levelname": "INFO", "message": "[25/Aug/2021:20:33:41] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 20:33:42,009", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 20:33:42,010", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 20:33:42,010", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 20:33:42,010", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 20:33:42,018", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 20:33:42,019", "levelname": "INFO", "message": "[25/Aug/2021:20:33:42] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 20:33:43,138", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 20:33:43,139", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 20:33:43,139", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 20:33:43,146", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 20:33:43,149", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 20:33:43,149", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 20:33:43,149", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 20:33:43,149", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 20:33:43,149", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 20:33:43,150", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 20:33:43,254", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 20:33:43,254", "levelname": "INFO", "message": "[25/Aug/2021:20:33:43] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 21:12:05,898", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 21:12:05,899", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 21:12:05,899", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 21:12:05,914", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 21:12:05,914", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 21:12:05,915", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 21:12:05,915", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 21:12:05,986", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 21:12:05,986", "levelname": "INFO", "message": "[25/Aug/2021:21:12:05] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 21:12:07,225", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 21:12:07,225", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 21:12:07,225", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 21:12:07,232", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 21:12:07,234", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 21:12:07,235", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 21:12:07,235", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 21:12:07,235", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 21:12:07,235", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 21:12:07,235", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 21:12:07,338", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 21:12:07,338", "levelname": "INFO", "message": "[25/Aug/2021:21:12:07] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 21:12:49,490", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-25 21:12:49,490", "levelname": "ERROR", "message": "[25/Aug/2021:21:12:49] HTTP ", "exc_info": "Traceback (most recent call last):\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cprequest.py\", line 638, in respond\n self._do_respond(path_info)\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cprequest.py\", line 697, in _do_respond\n response.body = self.handler()\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/lib/encoding.py\", line 223, in __call__\n self.body = self.oldhandler(*args, **kwargs)\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cpdispatch.py\", line 54, in __call__\n return self.callable(*self.args, **self.kwargs)\n File \"/home/guisea/PycharmProjects/pySlave/src/directdnsonly.py\", line 27, in CMD_API_DNS_ADMIN\n applog.debug('Action Type: ' + request.params.get('action'))\nTypeError: can only concatenate str (not \"NoneType\") to str"} +{"asctime": "2021-08-25 21:12:49,497", "levelname": "INFO", "message": "[25/Aug/2021:21:12:49] HTTP \nRequest Headers:\n Remote-Addr: 139.99.133.68\n AUTHORIZATION: Basic dGVzdDp0ZXN0\n HOST: home.guise.net.nz\n Content-Length: 80"} +{"asctime": "2021-08-25 21:12:49,497", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:21:12:49] \"POST /CMD_API_DNS_ADMIN HTTP/1.0\" 500 1697 \"\" \"\""} +{"asctime": "2021-08-25 21:13:52,685", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 21:13:52,685", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 21:13:52,685", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 21:13:52,718", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 21:13:52,718", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 21:13:52,718", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 21:13:52,718", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 21:13:52,783", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 21:13:52,784", "levelname": "INFO", "message": "[25/Aug/2021:21:13:52] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 21:13:54,030", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 21:13:54,030", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 21:13:54,030", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 21:13:54,040", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 21:13:54,043", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 21:13:54,043", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 21:13:54,043", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 21:13:54,043", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 21:13:54,044", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 21:13:54,044", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 21:13:54,149", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 21:13:54,149", "levelname": "INFO", "message": "[25/Aug/2021:21:13:54] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 21:14:37,499", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-25 21:14:37,500", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-25 21:14:37,500", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 21:14:37,503", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:21:14:37] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.com HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-25 21:14:38,334", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-25 21:14:38,334", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.test.com. (\n 2021082500\n 3600\n 3600\n 1209600\n 86400 )\n\ntest.com.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\ntest.com.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t1.1.1.1\nmail\t3600\tIN\tA\t1.1.1.1\npop\t3600\tIN\tA\t1.1.1.1\nsmtp\t3600\tIN\tA\t1.1.1.1\ntest.com.\t3600\tIN\tA\t1.1.1.1\nwww\t3600\tIN\tA\t1.1.1.1\n\ntest.com.\t3600\tIN\tMX\t10 mail\n\n\n\ntest.com.\t3600\tIN\tTXT\t\"v=spf1 a mx ip4:139.99.133.68 ip6:2402:1f00:8100:400:0:0:0:5bd ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-25 21:14:38,334", "levelname": "DEBUG", "message": "Domain name to check: test.com"} +{"asctime": "2021-08-25 21:14:38,334", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 21:14:38,335", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-25 21:14:38,335", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 21:14:38,336", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-25 21:14:38,336", "levelname": "DEBUG", "message": "Zone Name for write: test.com"} +{"asctime": "2021-08-25 21:14:38,336", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.test.com. (\n 2021082500\n 3600\n 3600\n 1209600\n 86400 )\n\ntest.com.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\ntest.com.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t1.1.1.1\nmail\t3600\tIN\tA\t1.1.1.1\npop\t3600\tIN\tA\t1.1.1.1\nsmtp\t3600\tIN\tA\t1.1.1.1\ntest.com.\t3600\tIN\tA\t1.1.1.1\nwww\t3600\tIN\tA\t1.1.1.1\n\ntest.com.\t3600\tIN\tMX\t10 mail\n\n\n\ntest.com.\t3600\tIN\tTXT\t\"v=spf1 a mx ip4:139.99.133.68 ip6:2402:1f00:8100:400:0:0:0:5bd ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-25 21:14:38,337", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/test.com.db"} +{"asctime": "2021-08-25 21:14:38,337", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:21:14:38] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=test.com&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-25 21:14:56,429", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-25 21:14:56,429", "levelname": "DEBUG", "message": "action=delete&cluster=yes&hostname=s23.webhostingservices.co.nz&select0=test.com"} +{"asctime": "2021-08-25 21:14:56,429", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:21:14:56] \"POST /CMD_API_DNS_ADMIN HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-25 22:09:21,913", "levelname": "INFO", "message": "[25/Aug/2021:22:09:21] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 22:09:22,003", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 22:09:22,003", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 22:09:22,071", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 22:09:22,075", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 22:09:22,075", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 22:09:22,075", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 22:09:22,077", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 22:09:22,082", "levelname": "INFO", "message": "[25/Aug/2021:22:09:22] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 22:35:57,113", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 22:35:57,113", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 22:35:57,113", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 22:35:57,127", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 22:35:57,129", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 22:35:57,130", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 22:35:57,130", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 22:35:57,130", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 22:35:57,130", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 22:35:57,130", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 22:35:57,237", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 22:35:57,237", "levelname": "INFO", "message": "[25/Aug/2021:22:35:57] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 22:36:55,667", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-25 22:36:55,667", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-25 22:36:55,667", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 22:36:55,679", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:22:36:55] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.com HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-25 22:36:56,507", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-25 22:36:56,507", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.test.com. (\n 2021082500\n 3600\n 3600\n 1209600\n 86400 )\n\ntest.com.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\ntest.com.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t1.1.1.1\nmail\t3600\tIN\tA\t1.1.1.1\npop\t3600\tIN\tA\t1.1.1.1\nsmtp\t3600\tIN\tA\t1.1.1.1\ntest.com.\t3600\tIN\tA\t1.1.1.1\nwww\t3600\tIN\tA\t1.1.1.1\n\ntest.com.\t3600\tIN\tMX\t10 mail\n\n\n\ntest.com.\t3600\tIN\tTXT\t\"v=spf1 a mx ip4:139.99.133.68 ip6:2402:1f00:8100:400:0:0:0:5bd ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-25 22:36:56,507", "levelname": "DEBUG", "message": "Domain name to check: test.com"} +{"asctime": "2021-08-25 22:36:56,507", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 22:36:56,508", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-25 22:36:56,508", "levelname": "DEBUG", "message": "Checking if test.com is present in the DB"} +{"asctime": "2021-08-25 22:36:56,509", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-25 22:36:56,509", "levelname": "DEBUG", "message": "Zone Name for write: test.com"} +{"asctime": "2021-08-25 22:36:56,509", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.test.com. (\n 2021082500\n 3600\n 3600\n 1209600\n 86400 )\n\ntest.com.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\ntest.com.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t1.1.1.1\nmail\t3600\tIN\tA\t1.1.1.1\npop\t3600\tIN\tA\t1.1.1.1\nsmtp\t3600\tIN\tA\t1.1.1.1\ntest.com.\t3600\tIN\tA\t1.1.1.1\nwww\t3600\tIN\tA\t1.1.1.1\n\ntest.com.\t3600\tIN\tMX\t10 mail\n\n\n\ntest.com.\t3600\tIN\tTXT\t\"v=spf1 a mx ip4:139.99.133.68 ip6:2402:1f00:8100:400:0:0:0:5bd ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-25 22:36:56,510", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/test.com.db"} +{"asctime": "2021-08-25 22:36:56,511", "levelname": "INFO", "message": "139.99.133.68 - test [25/Aug/2021:22:36:56] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=test.com&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-25 22:41:39,537", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 22:41:39,538", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 22:41:39,538", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 22:41:39,570", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 22:41:39,570", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 22:41:39,570", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 22:41:39,570", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 22:41:39,580", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 22:41:39,581", "levelname": "INFO", "message": "[25/Aug/2021:22:41:39] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 22:41:41,430", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 22:41:41,430", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 22:41:41,430", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 22:41:41,455", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 22:41:41,459", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 22:41:41,460", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 22:41:41,460", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 22:41:41,460", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 22:41:41,460", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 22:41:41,460", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 22:41:41,566", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 22:41:41,566", "levelname": "INFO", "message": "[25/Aug/2021:22:41:41] ENGINE Bus STARTED"} +{"asctime": "2021-08-25 23:28:43,999", "levelname": "INFO", "message": "[25/Aug/2021:23:28:43] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-25 23:28:44,022", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-25 23:28:44,023", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Bus STOPPING"} +{"asctime": "2021-08-25 23:28:44,107", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-25 23:28:44,108", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Bus STOPPED"} +{"asctime": "2021-08-25 23:28:44,108", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Bus EXITING"} +{"asctime": "2021-08-25 23:28:44,108", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Bus EXITED"} +{"asctime": "2021-08-25 23:28:44,206", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-25 23:28:44,211", "levelname": "INFO", "message": "[25/Aug/2021:23:28:44] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-25 23:28:45,691", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-25 23:28:45,692", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-25 23:28:45,692", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-25 23:28:45,707", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-25 23:28:45,710", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-25 23:28:45,710", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-25 23:28:45,711", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-25 23:28:45,711", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-25 23:28:45,711", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Bus STARTING"} +{"asctime": "2021-08-25 23:28:45,711", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-25 23:28:45,817", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-25 23:28:45,817", "levelname": "INFO", "message": "[25/Aug/2021:23:28:45] ENGINE Bus STARTED"} +{"asctime": "2021-08-26 04:16:09,116", "levelname": "INFO", "message": "162.142.125.194 - - [26/Aug/2021:04:16:09] \"GET / HTTP/1.1\" 401 1773 \"\" \"\""} +{"asctime": "2021-08-26 04:16:09,499", "levelname": "INFO", "message": "162.142.125.194 - - [26/Aug/2021:04:16:09] \"GET / HTTP/1.1\" 401 1773 \"\" \"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)\""} +{"asctime": "2021-08-26 13:24:22,798", "levelname": "INFO", "message": "[26/Aug/2021:13:24:22] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-26 13:24:22,838", "levelname": "INFO", "message": "[26/Aug/2021:13:24:22] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-26 13:24:22,875", "levelname": "INFO", "message": "[26/Aug/2021:13:24:22] ENGINE Bus STOPPING"} +{"asctime": "2021-08-26 13:24:23,011", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-26 13:24:23,011", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE Bus STOPPED"} +{"asctime": "2021-08-26 13:24:23,012", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE Bus EXITING"} +{"asctime": "2021-08-26 13:24:23,012", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE Bus EXITED"} +{"asctime": "2021-08-26 13:24:23,109", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-26 13:24:23,131", "levelname": "INFO", "message": "[26/Aug/2021:13:24:23] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-26 13:24:24,974", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-26 13:24:24,974", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-26 13:24:24,974", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-26 13:24:24,985", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-26 13:24:24,988", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-26 13:24:24,988", "levelname": "INFO", "message": "[26/Aug/2021:13:24:24] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-26 13:24:24,989", "levelname": "INFO", "message": "[26/Aug/2021:13:24:24] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-26 13:24:24,989", "levelname": "INFO", "message": "[26/Aug/2021:13:24:24] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-26 13:24:24,989", "levelname": "INFO", "message": "[26/Aug/2021:13:24:24] ENGINE Bus STARTING"} +{"asctime": "2021-08-26 13:24:24,989", "levelname": "INFO", "message": "[26/Aug/2021:13:24:24] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-26 13:24:25,095", "levelname": "INFO", "message": "[26/Aug/2021:13:24:25] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-26 13:24:25,095", "levelname": "INFO", "message": "[26/Aug/2021:13:24:25] ENGINE Bus STARTED"} +{"asctime": "2021-08-26 13:28:16,025", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-26 13:28:16,025", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-26 13:28:16,026", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Bus STOPPING"} +{"asctime": "2021-08-26 13:28:16,037", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-26 13:28:16,037", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Bus STOPPED"} +{"asctime": "2021-08-26 13:28:16,037", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Bus EXITING"} +{"asctime": "2021-08-26 13:28:16,037", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Bus EXITED"} +{"asctime": "2021-08-26 13:28:16,127", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-26 13:28:16,127", "levelname": "INFO", "message": "[26/Aug/2021:13:28:16] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-26 13:28:17,577", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-26 13:28:17,577", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-26 13:28:17,577", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-26 13:28:17,596", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-26 13:28:17,599", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-26 13:28:17,599", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-26 13:28:17,599", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-26 13:28:17,599", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-26 13:28:17,599", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Bus STARTING"} +{"asctime": "2021-08-26 13:28:17,600", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-26 13:28:17,705", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-26 13:28:17,705", "levelname": "INFO", "message": "[26/Aug/2021:13:28:17] ENGINE Bus STARTED"} +{"asctime": "2021-08-26 15:11:56,729", "levelname": "INFO", "message": "74.120.14.113 - - [26/Aug/2021:15:11:56] \"GET / HTTP/1.1\" 401 1773 \"\" \"\""} +{"asctime": "2021-08-26 15:11:57,098", "levelname": "INFO", "message": "74.120.14.113 - - [26/Aug/2021:15:11:57] \"GET / HTTP/1.1\" 401 1773 \"\" \"Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)\""} +{"asctime": "2021-08-26 23:13:46,654", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-26 23:13:46,749", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-26 23:13:46,750", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Bus STOPPING"} +{"asctime": "2021-08-26 23:13:46,926", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-26 23:13:46,926", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Bus STOPPED"} +{"asctime": "2021-08-26 23:13:46,927", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Bus EXITING"} +{"asctime": "2021-08-26 23:13:46,927", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Bus EXITED"} +{"asctime": "2021-08-26 23:13:46,936", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-26 23:13:47,000", "levelname": "INFO", "message": "[26/Aug/2021:23:13:46] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-26 23:13:48,616", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-26 23:13:48,616", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-26 23:13:48,616", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-26 23:13:48,630", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-26 23:13:48,633", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-26 23:13:48,633", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-26 23:13:48,633", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-26 23:13:48,633", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-26 23:13:48,633", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Bus STARTING"} +{"asctime": "2021-08-26 23:13:48,634", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-26 23:13:48,739", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-26 23:13:48,739", "levelname": "INFO", "message": "[26/Aug/2021:23:13:48] ENGINE Bus STARTED"} +{"asctime": "2021-08-27 17:20:09,141", "levelname": "INFO", "message": "193.118.55.146 - - [27/Aug/2021:17:20:09] \"GET / HTTP/1.1\" 401 1773 \"\" \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\""} +{"asctime": "2021-08-27 19:52:03,033", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-27 19:52:03,038", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-27 19:52:03,054", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Bus STOPPING"} +{"asctime": "2021-08-27 19:52:03,159", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-27 19:52:03,159", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Bus STOPPED"} +{"asctime": "2021-08-27 19:52:03,159", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Bus EXITING"} +{"asctime": "2021-08-27 19:52:03,159", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Bus EXITED"} +{"asctime": "2021-08-27 19:52:03,247", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-27 19:52:03,257", "levelname": "INFO", "message": "[27/Aug/2021:19:52:03] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 09:45:58,446", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 09:45:58,447", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 09:45:58,447", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 09:45:58,461", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 09:45:58,464", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 09:45:58,464", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 09:45:58,465", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 09:45:58,465", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 09:45:58,465", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 09:45:58,465", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 09:45:58,571", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 09:45:58,571", "levelname": "INFO", "message": "[28/Aug/2021:09:45:58] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 09:47:08,753", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:47:08] \"GET /CMD_API_LOGIN_TEST HTTP/1.0\" 200 34 \"\" \"\""} +{"asctime": "2021-08-28 09:48:22,837", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:22,837", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:22,837", "levelname": "DEBUG", "message": "Checking if 11.w is present in the DB"} +{"asctime": "2021-08-28 09:48:22,848", "levelname": "DEBUG", "message": "Checking if 11.w is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:22,849", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:22] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.w HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:23,004", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:23,004", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:23,004", "levelname": "DEBUG", "message": "Checking if 11.wh is present in the DB"} +{"asctime": "2021-08-28 09:48:23,005", "levelname": "DEBUG", "message": "Checking if 11.wh is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:23,006", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:23] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.wh HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:23,322", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:23,322", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:23,322", "levelname": "DEBUG", "message": "Checking if 11.whs is present in the DB"} +{"asctime": "2021-08-28 09:48:23,323", "levelname": "DEBUG", "message": "Checking if 11.whs is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:23,324", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:23] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:24,633", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:24,633", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:24,633", "levelname": "DEBUG", "message": "Checking if 11.whs.int is present in the DB"} +{"asctime": "2021-08-28 09:48:24,634", "levelname": "DEBUG", "message": "Checking if 11.whs.int is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:24,635", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:24] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.int HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:25,194", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:25,195", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:25,195", "levelname": "DEBUG", "message": "Checking if 11.whs.inte is present in the DB"} +{"asctime": "2021-08-28 09:48:25,196", "levelname": "DEBUG", "message": "Checking if 11.whs.inte is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:25,196", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:25] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.inte HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:25,422", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:25,422", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:25,422", "levelname": "DEBUG", "message": "Checking if 11.whs.inter is present in the DB"} +{"asctime": "2021-08-28 09:48:25,423", "levelname": "DEBUG", "message": "Checking if 11.whs.inter is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:25,424", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:25] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.inter HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:26,025", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:26,025", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:26,025", "levelname": "DEBUG", "message": "Checking if 11.whs.interna is present in the DB"} +{"asctime": "2021-08-28 09:48:26,026", "levelname": "DEBUG", "message": "Checking if 11.whs.interna is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:26,027", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:26] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.interna HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:26,169", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:26,170", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:26,170", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is present in the DB"} +{"asctime": "2021-08-28 09:48:26,170", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:26,339", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:26] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.internal HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:51,014", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:48:51,014", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:48:51,014", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is present in the DB"} +{"asctime": "2021-08-28 09:48:51,015", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is owner of present in the DB"} +{"asctime": "2021-08-28 09:48:51,016", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:51] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=11.whs.internal HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:48:52,966", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 09:48:52,966", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.11.whs.internal. (\n 2021082800\n 3600\n 3600\n 1209600\n 86400 )\n\n11.whs.internal.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\n11.whs.internal.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\n11.whs.internal.\t3600\tIN\tA\t139.99.133.68\nftp\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\n11.whs.internal.\t3600\tIN\tMX\t10 mail\n\n\n\n11.whs.internal.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:48:52,966", "levelname": "DEBUG", "message": "Domain name to check: 11.whs.internal"} +{"asctime": "2021-08-28 09:48:52,966", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is present in the DB"} +{"asctime": "2021-08-28 09:48:52,967", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 09:48:52,967", "levelname": "DEBUG", "message": "Checking if 11.whs.internal is present in the DB"} +{"asctime": "2021-08-28 09:48:52,968", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 09:48:52,968", "levelname": "DEBUG", "message": "Placed zone into database.. 11.whs.internal"} +{"asctime": "2021-08-28 09:48:53,166", "levelname": "DEBUG", "message": "Zone Name for write: 11.whs.internal"} +{"asctime": "2021-08-28 09:48:53,166", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.11.whs.internal. (\n 2021082800\n 3600\n 3600\n 1209600\n 86400 )\n\n11.whs.internal.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\n11.whs.internal.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\n11.whs.internal.\t3600\tIN\tA\t139.99.133.68\nftp\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\n11.whs.internal.\t3600\tIN\tMX\t10 mail\n\n\n\n11.whs.internal.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:48:53,232", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/11.whs.internal.db"} +{"asctime": "2021-08-28 09:48:53,233", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:48:53] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=11.whs.internal&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 09:58:10,489", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 09:58:10,518", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 09:58:10,773", "levelname": "DEBUG", "message": "Hostname matches the original host hostname: Delete is allowed"} +{"asctime": "2021-08-28 09:58:10,779", "levelname": "INFO", "message": "{} deleted from database"} +{"asctime": "2021-08-28 09:58:10,779", "levelname": "DEBUG", "message": "Rewrite named zone include..."} +{"asctime": "2021-08-28 09:58:10,818", "levelname": "DEBUG", "message": "Writing zone omgwtfbbq.nz to named.config"} +{"asctime": "2021-08-28 09:58:10,823", "levelname": "ERROR", "message": "[28/Aug/2021:09:58:10] HTTP ", "exc_info": "Traceback (most recent call last):\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cprequest.py\", line 638, in respond\n self._do_respond(path_info)\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cprequest.py\", line 697, in _do_respond\n response.body = self.handler()\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/lib/encoding.py\", line 223, in __call__\n self.body = self.oldhandler(*args, **kwargs)\n File \"/home/guisea/PycharmProjects/pySlave/venv/lib64/python3.9/site-packages/cherrypy/_cpdispatch.py\", line 54, in __call__\n return self.callable(*self.args, **self.kwargs)\n File \"/home/guisea/PycharmProjects/pySlave/src/directdnsonly.py\", line 45, in CMD_API_DNS_ADMIN\n write_named_include()\n File \"/home/guisea/PycharmProjects/pySlave/src/directdnsonly.py\", line 116, in write_named_include\n f.write('zone \"{}\" \t{ type master; file \"/etc/pdns/zones/{}.db\"; };'\nValueError: unexpected '{' in field name"} +{"asctime": "2021-08-28 09:58:10,848", "levelname": "INFO", "message": "[28/Aug/2021:09:58:10] HTTP \nRequest Headers:\n Remote-Addr: 139.99.245.86\n AUTHORIZATION: Basic dGVzdDp0ZXN0\n HOST: home.guise.net.nz\n Content-Length: 107"} +{"asctime": "2021-08-28 09:58:10,866", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:58:10] \"POST /CMD_API_DNS_ADMIN HTTP/1.0\" 500 1813 \"\" \"\""} +{"asctime": "2021-08-28 09:58:43,730", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:58:43,731", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:58:43,733", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:58:43,757", "levelname": "DEBUG", "message": "Checking if hostinz.net is owner of present in the DB"} +{"asctime": "2021-08-28 09:58:43,760", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:58:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net&check_for_parent_domain=true HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:58:49,434", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:58:49,434", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:58:49,434", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:58:49,435", "levelname": "DEBUG", "message": "Checking if hostinz.net is owner of present in the DB"} +{"asctime": "2021-08-28 09:58:49,436", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:58:49] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 09:58:50,430", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 09:58:50,430", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082800\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:58:50,430", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 09:58:50,431", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:58:50,432", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 09:58:50,432", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:58:50,433", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 09:58:50,433", "levelname": "DEBUG", "message": "Placed zone into database.. hostinz.net"} +{"asctime": "2021-08-28 09:58:50,467", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 09:58:50,467", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082800\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:58:50,467", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 09:58:50,468", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:58:50] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 09:59:06,247", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:59:06,247", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:59:06,247", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:06,249", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 09:59:06,338", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:59:06,338", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:59:06,338", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:06,339", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 09:59:07,168", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 09:59:07,168", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082801\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:59:07,168", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 09:59:07,168", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:07,169", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 09:59:07,169", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:07,170", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 09:59:07,170", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 09:59:07,170", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082801\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:59:07,170", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 09:59:07,171", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 09:59:07,334", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:59:07,334", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:59:07,334", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:07,335", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 09:59:07,423", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 09:59:07,423", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 09:59:07,423", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:07,424", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 09:59:08,253", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 09:59:08,253", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082802\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"HOTnSQnwTu1nEIylR5cC6qbhCNhTCzisViJ8cCiZPVM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:59:08,253", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 09:59:08,253", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:08,254", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 09:59:08,254", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 09:59:08,255", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 09:59:08,255", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 09:59:08,255", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082802\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"HOTnSQnwTu1nEIylR5cC6qbhCNhTCzisViJ8cCiZPVM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 09:59:08,255", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 09:59:08,255", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:09:59:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:02:15,566", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 10:02:15,567", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:02:15,567", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:02:15,593", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:02:15,593", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:02:15,593", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:02:15,593", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:02:15,670", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:02:15,691", "levelname": "INFO", "message": "[28/Aug/2021:10:02:15] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 10:02:17,257", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:02:17,257", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:02:17,257", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:02:17,267", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:02:17,270", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:02:17,271", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:02:17,271", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:02:17,271", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:02:17,271", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:02:17,271", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:02:17,376", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:02:17,376", "levelname": "INFO", "message": "[28/Aug/2021:10:02:17] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 10:04:42,317", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:42,317", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:42,317", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:42,319", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:42,408", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:42,408", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:42,408", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:42,409", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:43,233", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:04:43,233", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082803\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:43,233", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:04:43,233", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:43,234", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:04:43,234", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:43,235", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:04:43,235", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:04:43,235", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082803\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:43,235", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:04:43,235", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:04:43,398", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:43,398", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:43,398", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:43,399", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:43,487", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:43,488", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:43,488", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:43,489", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:44,307", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:04:44,308", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082804\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:44,308", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:04:44,308", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:44,309", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:04:44,309", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:44,309", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:04:44,309", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:04:44,309", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082804\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:44,310", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:04:44,310", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:04:44,465", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:44,465", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:44,465", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:44,466", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:44,555", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:04:44,555", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:04:44,555", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:44,556", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:04:45,378", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:04:45,379", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082805\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"PD2EY9Vi85huv5ttO4QesX01F_1vtuiE3OJaIBfddbA\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:45,379", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:04:45,379", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:45,380", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:04:45,380", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:04:45,380", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:04:45,381", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:04:45,381", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082805\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"PD2EY9Vi85huv5ttO4QesX01F_1vtuiE3OJaIBfddbA\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:04:45,381", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:04:45,381", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:04:45] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:05:22,095", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 10:05:22,095", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:05:22,095", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:05:22,107", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:05:22,107", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:05:22,107", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:05:22,107", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:05:22,174", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:05:22,174", "levelname": "INFO", "message": "[28/Aug/2021:10:05:22] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 10:05:23,686", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:05:23,686", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:05:23,686", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:05:23,694", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:05:23,697", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:05:23,698", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:05:23,698", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:05:23,698", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:05:23,698", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:05:23,699", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:05:23,802", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:05:23,802", "levelname": "INFO", "message": "[28/Aug/2021:10:05:23] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 10:06:29,265", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:29,266", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:29,266", "levelname": "DEBUG", "message": "Checking if add.h is present in the DB"} +{"asctime": "2021-08-28 10:06:29,268", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:29] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.h HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:29,604", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:29,604", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:29,604", "levelname": "DEBUG", "message": "Checking if add.hos is present in the DB"} +{"asctime": "2021-08-28 10:06:29,605", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:29] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hos HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:29,822", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:29,822", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:29,822", "levelname": "DEBUG", "message": "Checking if add.host is present in the DB"} +{"asctime": "2021-08-28 10:06:29,823", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:29] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.host HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:30,119", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:30,119", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:30,119", "levelname": "DEBUG", "message": "Checking if add.hosti is present in the DB"} +{"asctime": "2021-08-28 10:06:30,120", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:30] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hosti HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:30,966", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:30,967", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:30,967", "levelname": "DEBUG", "message": "Checking if add.hosti.n is present in the DB"} +{"asctime": "2021-08-28 10:06:30,968", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:30] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hosti.n HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:31,706", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:31,706", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:31,706", "levelname": "DEBUG", "message": "Checking if add.hosti is present in the DB"} +{"asctime": "2021-08-28 10:06:31,708", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:31] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hosti HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:31,979", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:31,979", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:31,979", "levelname": "DEBUG", "message": "Checking if add.hostin is present in the DB"} +{"asctime": "2021-08-28 10:06:31,980", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:31] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostin HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:32,803", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:32,804", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:32,804", "levelname": "DEBUG", "message": "Checking if add.hostinz is present in the DB"} +{"asctime": "2021-08-28 10:06:32,805", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:32] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:34,005", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:34,005", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:34,005", "levelname": "DEBUG", "message": "Checking if add.hostinz is present in the DB"} +{"asctime": "2021-08-28 10:06:34,006", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:34] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:35,466", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:35,466", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:35,466", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:06:35,467", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:35] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:38,519", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:06:38,519", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:06:38,519", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:06:38,521", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:38] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:06:39,485", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:06:39,486", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082800\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nftp\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:06:39,486", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:06:39,486", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:06:39,487", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:06:39,487", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:06:39,488", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:06:39,488", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of present in the DB"} +{"asctime": "2021-08-28 10:06:39,488", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:06:39,490", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:06:39,490", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:06:39] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:07:05,941", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:07:05,941", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:07:05,941", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:05,942", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:07:06,039", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:07:06,039", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:07:06,039", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:06,040", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:07:06,905", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:07:06,905", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082801\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nftp\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:07:06,905", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:07:06,905", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:06,906", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:07:06,906", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:06,907", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:07:06,907", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of present in the DB"} +{"asctime": "2021-08-28 10:07:06,907", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:07:06,908", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:07:06,908", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:07:07,062", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:07:07,062", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:07:07,062", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:07,063", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:07:07,152", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:07:07,152", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:07:07,152", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:07,153", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:07:07,957", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:07:07,958", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082802\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nftp\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"Ok6JgufmkHGpWLQ421RPOIG645TRY23sZugeiGyWTZM\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:07:07,958", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:07:07,958", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:07,959", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:07:07,959", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:07:07,959", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:07:07,959", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of present in the DB"} +{"asctime": "2021-08-28 10:07:07,960", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:07:07,960", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:07:07,961", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:07:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:08:01,367", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 10:08:01,367", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:08:01,367", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:08:01,379", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:08:01,379", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:08:01,379", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:08:01,379", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:08:01,409", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:08:01,409", "levelname": "INFO", "message": "[28/Aug/2021:10:08:01] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 10:08:03,069", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:08:03,069", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:08:03,069", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:08:03,140", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:08:03,143", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:08:03,143", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:08:03,143", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:08:03,144", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:08:03,144", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:08:03,149", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:08:03,303", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:08:03,304", "levelname": "INFO", "message": "[28/Aug/2021:10:08:03] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 10:09:06,357", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:09:06,357", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:09:06,357", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:06,358", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:09:06,448", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:09:06,448", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:09:06,448", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:06,449", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:09:07,304", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:09:07,305", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082806\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:09:07,305", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:09:07,305", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:07,305", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:09:07,306", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:07,306", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:09:07,306", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:09:07,306", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082806\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:09:07,307", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:09:07,307", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:09:07,466", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:09:07,466", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:09:07,466", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:07,467", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:09:07,555", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:09:07,555", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:09:07,556", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:07,557", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:09:08,409", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:09:08,409", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082807\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"HOTnSQnwTu1nEIylR5cC6qbhCNhTCzisViJ8cCiZPVM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:09:08,409", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:09:08,409", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:08,410", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:09:08,410", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:09:08,411", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:09:08,411", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:09:08,411", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082807\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"HOTnSQnwTu1nEIylR5cC6qbhCNhTCzisViJ8cCiZPVM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:09:08,411", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:09:08,411", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:09:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:10:18,110", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:10:18,110", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:10:18,111", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:10:18,112", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:10:18] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:10:18,200", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:10:18,201", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:10:18,201", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:10:18,202", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:10:18] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:10:19,023", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:10:19,023", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082808\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:10:19,023", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:10:19,023", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:10:19,024", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:10:19,024", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:10:19,025", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:10:19,025", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:10:19,025", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082808\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:10:19,025", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:10:19,025", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:10:19] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:11:07,516", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:11:07,516", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:11:07,516", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:07,517", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:11:07,606", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:11:07,606", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:11:07,606", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:07,607", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:11:08,413", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:11:08,413", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082809\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:11:08,413", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:11:08,413", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:08,414", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:11:08,414", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:08,415", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:11:08,415", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:11:08,415", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082809\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:11:08,415", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:11:08,416", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:11:08,570", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:11:08,570", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:11:08,570", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:08,571", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:11:08,660", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:11:08,660", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:11:08,660", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:08,661", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:11:09,525", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:11:09,525", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082810\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"ttgZSG9YOWTZOcxYBYVXKByKjbvWhUguI2LJah9V7RY\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:11:09,525", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:11:09,525", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:09,526", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:11:09,526", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:09,527", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:11:09,527", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:11:09,527", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082810\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"ttgZSG9YOWTZOcxYBYVXKByKjbvWhUguI2LJah9V7RY\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:11:09,527", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:11:09,528", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:09] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:11:17,205", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:11:17,205", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082803\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"Ok6JgufmkHGpWLQ421RPOIG645TRY23sZugeiGyWTZM\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:11:17,205", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:11:17,205", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:17,206", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:11:17,206", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:11:17,207", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:11:17,207", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:11:17,208", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:11:17,209", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:11:17,209", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:11:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:12:41,259", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:41,259", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:41,259", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:41,260", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:41,350", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:41,350", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:41,350", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:41,351", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:42,176", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:12:42,176", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082804\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:12:42,176", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:12:42,176", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:42,177", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:12:42,177", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:42,178", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:12:42,178", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:12:42,179", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:12:42,179", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:12:42,179", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:12:42,341", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:42,341", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:42,341", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:42,342", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:42,428", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:42,428", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:42,428", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:42,429", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:43,237", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:12:43,237", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082805\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:12:43,237", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:12:43,237", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:43,238", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:12:43,238", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:43,239", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:12:43,239", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:12:43,240", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:12:43,240", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:12:43,240", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:12:43,397", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:43,397", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:43,397", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:43,398", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:43,487", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:12:43,487", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:12:43,487", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:43,488", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:12:44,337", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:12:44,338", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082806\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"-QVYY1TqMJBaoEO5rP2Bo6aXwGCIfE33VTB0qXoPwU8\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:12:44,338", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:12:44,338", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:44,338", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:12:44,339", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:12:44,339", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:12:44,339", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:12:44,340", "levelname": "DEBUG", "message": "{} exists in db"} +{"asctime": "2021-08-28 10:12:44,340", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:12:44,341", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:12:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:14:41,624", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:41,624", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:41,624", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:41,625", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:41,715", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:41,715", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:41,715", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:41,716", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:42,524", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:14:42,524", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082811\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:42,524", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:14:42,525", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:42,526", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:14:42,526", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:42,526", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:14:42,526", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:14:42,526", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082811\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:42,527", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:14:42,527", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:14:42,687", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:42,687", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:42,687", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:42,688", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:42,776", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:42,776", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:42,776", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:42,777", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:43,628", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:14:43,628", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082812\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:43,628", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:14:43,629", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:43,629", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:14:43,630", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:43,630", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:14:43,630", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:14:43,630", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082812\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:43,630", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:14:43,631", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:14:43,785", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:43,785", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:43,785", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:43,786", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:43,875", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:14:43,875", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:14:43,875", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:43,876", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:14:44,700", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:14:44,701", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082813\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"PD2EY9Vi85huv5ttO4QesX01F_1vtuiE3OJaIBfddbA\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:44,701", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:14:44,701", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:44,702", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:14:44,702", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:14:44,702", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:14:44,702", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:14:44,702", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082813\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"PD2EY9Vi85huv5ttO4QesX01F_1vtuiE3OJaIBfddbA\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:14:44,703", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:14:44,703", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:14:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:14:52,891", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 10:14:52,891", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:14:52,892", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:14:52,903", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:14:52,903", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:14:52,903", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:14:52,903", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:14:52,921", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:14:52,921", "levelname": "INFO", "message": "[28/Aug/2021:10:14:52] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 10:14:54,086", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:14:54,086", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:14:54,086", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:14:54,093", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:14:54,096", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:14:54,096", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:14:54,096", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:14:54,096", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:14:54,096", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:14:54,097", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:14:54,200", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:14:54,200", "levelname": "INFO", "message": "[28/Aug/2021:10:14:54] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 10:16:41,485", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:41,485", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:41,485", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:41,487", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:41,575", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:41,575", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:41,575", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:41,576", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:42,399", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:16:42,399", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082814\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:42,399", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:16:42,399", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:42,400", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:16:42,400", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:42,401", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:16:42,401", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:16:42,401", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082814\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:42,401", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:16:42,401", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:16:42,563", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:42,563", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:42,563", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:42,564", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:42,652", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:42,652", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:42,652", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:42,653", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:43,521", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:16:43,522", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082815\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:43,522", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:16:43,522", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:43,523", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:16:43,523", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:43,524", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:16:43,524", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:16:43,524", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082815\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:43,524", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:16:43,524", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:16:43,678", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:43,678", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:43,678", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:43,679", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:43,767", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:16:43,767", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:16:43,767", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:43,768", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:16:44,588", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:16:44,588", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082816\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"3fV6GMy5sXXFmdTJdYVoadh4icXK5tgHp1r-ptZgzAo\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:44,588", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:16:44,588", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:44,589", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:16:44,589", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:16:44,590", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:16:44,590", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:16:44,590", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082816\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"3fV6GMy5sXXFmdTJdYVoadh4icXK5tgHp1r-ptZgzAo\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:16:44,590", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:16:44,590", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:16:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:17:05,520", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:17:05,520", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:17:05,520", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:05,521", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:17:05,614", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:17:05,614", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:17:05,614", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:05,615", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:17:06,424", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:17:06,424", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082807\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:17:06,424", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:17:06,424", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:06,425", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:17:06,425", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:06,426", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:17:06,426", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:17:06,426", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:17:06,427", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:17:06,427", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:17:06,581", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:17:06,581", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:17:06,581", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:06,582", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:17:06,670", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:17:06,670", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:17:06,670", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:06,671", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:17:07,488", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:17:07,489", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082808\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"Ok6JgufmkHGpWLQ421RPOIG645TRY23sZugeiGyWTZM\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:17:07,489", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:17:07,489", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:07,490", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:17:07,490", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:17:07,490", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:17:07,490", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:17:07,491", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:17:07,491", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:17:07,492", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:17:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:18:16,609", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:18:16,609", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:18:16,609", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:18:16,610", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:18:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:18:16,698", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:18:16,698", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:18:16,698", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:18:16,699", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:18:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:18:17,503", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:18:17,503", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082809\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:18:17,503", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:18:17,503", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:18:17,504", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:18:17,504", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:18:17,505", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:18:17,505", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:18:17,505", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:18:17,506", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:18:17,506", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:18:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:19:04,824", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:19:04,824", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:19:04,825", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:04,826", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:04] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:19:04,913", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:19:04,913", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:19:04,913", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:04,914", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:04] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:19:05,738", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:19:05,738", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082810\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:19:05,738", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:19:05,738", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:05,739", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:19:05,739", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:05,740", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:19:05,740", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:19:05,740", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:19:05,741", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:19:05,741", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:05] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:19:05,894", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:19:05,894", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:19:05,894", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:05,895", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:19:05,985", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:19:05,985", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:19:05,985", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:05,986", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:19:06,794", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:19:06,794", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082811\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"pUxw0ogcOp5Ofw4PtmEEQyIox7rMFnDg3mBQvvz0Ezk\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:19:06,794", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:19:06,794", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:06,795", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:19:06,795", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:19:06,796", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:19:06,796", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:19:06,796", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:19:06,797", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:19:06,797", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:19:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:20:17,070", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:20:17,070", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:20:17,070", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:20:17,071", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:20:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:20:17,160", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:20:17,160", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:20:17,160", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:20:17,161", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:20:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:20:17,981", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:20:17,981", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082817\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:20:17,981", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:20:17,981", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:20:17,982", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:20:17,982", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:20:17,983", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:20:17,983", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:20:17,983", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082817\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:20:17,983", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:20:17,984", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:20:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:21:08,443", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:21:08,444", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:21:08,444", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:08,445", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:21:08,533", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:21:08,533", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:21:08,533", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:08,534", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:21:09,360", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:21:09,360", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082818\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:21:09,360", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:21:09,360", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:09,361", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:21:09,361", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:09,362", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:21:09,362", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:21:09,362", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082818\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:21:09,362", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:21:09,362", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:09] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:21:09,519", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:21:09,519", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:21:09,519", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:09,520", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:21:09,609", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:21:09,609", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:21:09,609", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:09,610", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:21:10,420", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:21:10,420", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082819\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"ttgZSG9YOWTZOcxYBYVXKByKjbvWhUguI2LJah9V7RY\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:21:10,420", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:21:10,420", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:10,421", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:21:10,421", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:21:10,421", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:21:10,422", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:21:10,422", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082819\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"ttgZSG9YOWTZOcxYBYVXKByKjbvWhUguI2LJah9V7RY\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:21:10,422", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:21:10,422", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:21:10] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:22:17,479", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:17,479", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:17,479", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:17,480", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:17,568", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:17,568", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:17,568", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:17,569", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:18,378", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:22:18,378", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082820\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:22:18,378", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:22:18,378", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:18,379", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:22:18,379", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:18,380", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:22:18,380", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:22:18,380", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082820\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:22:18,380", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:22:18,380", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:18] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:22:39,845", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:39,845", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:39,845", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:39,846", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:39,934", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:39,934", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:39,934", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:39,936", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:40,744", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:22:40,744", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082812\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:22:40,744", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:22:40,744", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:40,745", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:22:40,745", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:40,746", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:22:40,746", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:22:40,747", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:22:40,747", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:22:40,748", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:40] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:22:40,908", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:40,908", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:40,908", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:40,909", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:40,998", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:40,998", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:40,998", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:40,999", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:41,807", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:22:41,807", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082813\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:22:41,807", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:22:41,807", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:41,808", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:22:41,808", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:41,809", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:22:41,809", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:22:41,810", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:22:41,811", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:22:41,811", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:41] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:22:41,966", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:41,966", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:41,966", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:41,967", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:42,055", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:22:42,055", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:22:42,055", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:42,056", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:22:42,903", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:22:42,903", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082814\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"-QVYY1TqMJBaoEO5rP2Bo6aXwGCIfE33VTB0qXoPwU8\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:22:42,903", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:22:42,903", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:42,904", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:22:42,904", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:22:42,904", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:22:42,904", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:22:42,905", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:22:42,906", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:22:42,906", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:22:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:23:07,168", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:23:07,168", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:23:07,168", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:07,169", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:23:07,256", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:23:07,257", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:23:07,257", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:07,258", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:23:08,109", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:23:08,109", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082821\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:23:08,109", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:23:08,109", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:08,110", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:23:08,110", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:08,110", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:23:08,111", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:23:08,111", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082821\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:23:08,111", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:23:08,111", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:23:08,267", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:23:08,267", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:23:08,267", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:08,269", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:23:08,357", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:23:08,358", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:23:08,358", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:08,359", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:23:09,178", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:23:09,178", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082822\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"BMoZ8e8m9iUDlM09xCf38VEL4Njy9CqPX7w8RUUGEnM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:23:09,178", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:23:09,178", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:09,179", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:23:09,179", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:23:09,180", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:23:09,180", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:23:09,180", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082822\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"BMoZ8e8m9iUDlM09xCf38VEL4Njy9CqPX7w8RUUGEnM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:23:09,181", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:23:09,181", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:23:09] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:24:39,280", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:39,280", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:39,280", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:39,282", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:39,370", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:39,371", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:39,371", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:39,372", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:40,178", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:24:40,178", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082815\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:24:40,179", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:24:40,179", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:40,179", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:24:40,180", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:40,180", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:24:40,180", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:24:40,181", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:24:40,181", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:24:40,182", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:40] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:24:40,351", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:40,351", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:40,351", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:40,352", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:40,441", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:40,441", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:40,441", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:40,442", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:41,357", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:24:41,357", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082816\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:24:41,357", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:24:41,357", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:41,358", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:24:41,358", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:41,359", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:24:41,359", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:24:41,359", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:24:41,360", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:24:41,360", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:41] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:24:41,519", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:41,519", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:41,519", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:41,520", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:41,609", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:24:41,609", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:24:41,609", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:41,610", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:24:42,460", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:24:42,460", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082817\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"EAjvkmWIFLt41eDJR7T2Ahoc0owT0RUE1h727yU_Ryw\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:24:42,460", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:24:42,460", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:42,461", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:24:42,461", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:24:42,462", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:24:42,462", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:24:42,462", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:24:42,463", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:24:42,463", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:24:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:26:42,576", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:42,577", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:42,577", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:42,578", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:42,666", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:42,666", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:42,666", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:42,667", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:43,491", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:26:43,491", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082823\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:43,491", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:26:43,491", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:43,492", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:26:43,492", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:43,493", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:26:43,493", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:26:43,493", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082823\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:43,493", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:26:43,494", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:26:43,654", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:43,654", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:43,654", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:43,655", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:43,743", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:43,744", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:43,744", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:43,745", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:44,590", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:26:44,590", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082824\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:44,591", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:26:44,591", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:44,592", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:26:44,592", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:44,592", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:26:44,592", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:26:44,592", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082824\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:44,593", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:26:44,593", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:26:44,752", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:44,752", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:44,752", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:44,753", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:44,841", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:26:44,841", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:26:44,841", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:44,842", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:26:45,670", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:26:45,670", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082825\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"3fV6GMy5sXXFmdTJdYVoadh4icXK5tgHp1r-ptZgzAo\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:45,670", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:26:45,670", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:45,671", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:26:45,671", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:26:45,671", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:26:45,672", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:26:45,672", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082825\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"3fV6GMy5sXXFmdTJdYVoadh4icXK5tgHp1r-ptZgzAo\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:26:45,672", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:26:45,672", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:26:45] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:28:15,410", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:15,410", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:15,410", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:15,411", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:15,499", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:15,499", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:15,499", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:15,500", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:16,340", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:28:16,340", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082818\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:16,340", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:28:16,340", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:16,341", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:28:16,341", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:16,342", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:28:16,342", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:28:16,343", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:28:16,343", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:28:16,343", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:16] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:28:41,332", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:41,332", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:41,332", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:41,333", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:41,421", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:41,421", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:41,421", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:41,422", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:42,244", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:28:42,244", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082826\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:42,244", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:28:42,244", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:42,245", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:28:42,245", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:42,246", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:28:42,246", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:28:42,246", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082826\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:42,246", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:28:42,246", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:28:42,407", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:42,407", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:42,407", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:42,408", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:42,496", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:42,497", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:42,497", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:42,498", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:43,305", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:28:43,305", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082827\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:43,306", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:28:43,306", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:43,306", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:28:43,306", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:43,307", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:28:43,307", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:28:43,307", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082827\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:43,307", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:28:43,308", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:28:43,462", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:43,462", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:43,462", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:43,463", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:43,551", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:28:43,551", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:28:43,551", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:43,552", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:28:44,380", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:28:44,380", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082828\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"MHxVCMt5fAeOAAbtx0VcP01Qa8Es3oSPWcdGch5xysw\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:44,380", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:28:44,380", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:44,381", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:28:44,381", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:28:44,382", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:28:44,382", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:28:44,382", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082828\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"MHxVCMt5fAeOAAbtx0VcP01Qa8Es3oSPWcdGch5xysw\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:28:44,382", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:28:44,383", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:28:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:29:06,160", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:29:06,160", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:29:06,160", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:06,161", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:29:06,249", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:29:06,250", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:29:06,250", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:06,251", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:29:07,060", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:29:07,060", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082819\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:29:07,060", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:29:07,060", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:07,061", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:29:07,061", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:07,063", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:29:07,063", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:29:07,063", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:29:07,064", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:29:07,064", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:29:07,219", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:29:07,219", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:29:07,219", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:07,220", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:29:07,309", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:29:07,309", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:29:07,309", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:07,311", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:29:08,126", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:29:08,126", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082820\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"pUxw0ogcOp5Ofw4PtmEEQyIox7rMFnDg3mBQvvz0Ezk\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:29:08,126", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:29:08,126", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:08,127", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:29:08,127", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:29:08,127", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:29:08,127", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:29:08,128", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:29:08,129", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:29:08,129", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:29:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:30:14,931", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:30:14,931", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:30:14,931", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:30:14,932", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:30:14] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:30:15,021", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:30:15,021", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:30:15,021", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:30:15,022", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:30:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:30:15,832", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:30:15,833", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082821\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:30:15,833", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:30:15,833", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:30:15,834", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:30:15,834", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:30:15,834", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:30:15,834", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:30:15,835", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:30:15,835", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:30:15,836", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:30:15] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:31:05,608", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:31:05,608", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:31:05,608", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:05,609", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:31:05,697", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:31:05,697", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:31:05,697", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:05,698", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:31:06,518", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:31:06,518", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082822\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:31:06,518", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:31:06,518", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:06,519", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:31:06,519", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:06,520", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:31:06,520", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:31:06,520", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:31:06,521", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:31:06,521", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:31:06,675", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:31:06,675", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:31:06,675", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:06,676", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:31:06,765", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:31:06,765", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:31:06,766", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:06,766", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:31:07,633", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:31:07,633", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082823\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"AoZyO3sYnMhDGM7dW6yDRRs2F1RfOTIogp6hiQVI9jo\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:31:07,633", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:31:07,633", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:07,634", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:31:07,634", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:31:07,634", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:31:07,634", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:31:07,635", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:31:07,636", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:31:07,636", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:31:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:32:17,917", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:32:17,917", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:32:17,917", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:32:17,918", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:32:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:32:18,007", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:32:18,007", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:32:18,007", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:32:18,008", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:32:18] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:32:18,826", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:32:18,826", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082829\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:32:18,826", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:32:18,826", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:32:18,827", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:32:18,827", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:32:18,828", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:32:18,828", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:32:18,828", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082829\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:32:18,828", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:32:18,828", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:32:18] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:33:06,687", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:33:06,688", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:33:06,688", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:06,689", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:33:06,777", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:33:06,777", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:33:06,777", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:06,778", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:33:07,597", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:33:07,597", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082830\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:33:07,597", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:33:07,598", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:07,598", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:33:07,598", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:07,599", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:33:07,599", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:33:07,599", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082830\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:33:07,599", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:33:07,600", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:33:07,756", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:33:07,756", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:33:07,756", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:07,757", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:33:07,846", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:33:07,846", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:33:07,846", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:07,847", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:33:08,667", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:33:08,667", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082831\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"BMoZ8e8m9iUDlM09xCf38VEL4Njy9CqPX7w8RUUGEnM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:33:08,667", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:33:08,667", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:08,668", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:33:08,668", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:33:08,669", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:33:08,669", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:33:08,669", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082831\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"BMoZ8e8m9iUDlM09xCf38VEL4Njy9CqPX7w8RUUGEnM\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:33:08,669", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:33:08,669", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:33:08] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:34:16,896", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:16,896", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:16,896", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:16,897", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:16,983", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:16,983", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:16,983", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:16,984", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:17,805", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:34:17,806", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082832\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:34:17,806", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:34:17,806", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:17,806", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:34:17,807", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:17,807", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:34:17,807", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:34:17,807", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082832\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:34:17,808", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:34:17,808", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:34:40,447", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:40,447", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:40,447", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:40,448", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:40,535", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:40,535", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:40,535", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:40,536", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:41,364", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:34:41,364", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082824\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:34:41,364", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:34:41,364", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:41,365", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:34:41,365", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:41,366", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:34:41,366", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:34:41,366", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:34:41,367", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:34:41,367", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:41] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:34:41,526", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:41,526", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:41,527", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:41,527", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:41,617", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:41,617", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:41,617", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:41,619", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:42,439", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:34:42,440", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082825\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:34:42,440", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:34:42,440", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:42,441", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:34:42,441", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:42,441", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:34:42,441", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:34:42,442", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:34:42,442", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:34:42,443", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:34:42,596", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:42,596", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:42,597", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:42,597", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:42,686", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:34:42,687", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:34:42,687", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:42,688", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:34:43,515", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:34:43,515", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082826\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"EAjvkmWIFLt41eDJR7T2Ahoc0owT0RUE1h727yU_Ryw\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:34:43,515", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:34:43,515", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:43,516", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:34:43,516", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:34:43,517", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:34:43,517", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:34:43,518", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:34:43,518", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:34:43,518", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:34:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:35:08,360", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:35:08,360", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:35:08,360", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:08,361", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:35:08,448", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:35:08,448", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:35:08,448", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:08,449", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:35:09,269", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:35:09,269", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082833\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:35:09,269", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:35:09,269", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:09,270", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:35:09,270", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:09,271", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:35:09,271", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:35:09,271", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082833\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:35:09,271", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:35:09,272", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:09] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:35:09,424", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:35:09,424", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:35:09,424", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:09,425", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:35:09,510", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:35:09,510", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:35:09,510", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:09,511", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:35:10,397", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:35:10,397", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082834\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"evdCMTNEj6VBo6GiLwUEAEIebIrhTHxJScd2SxDReJQ\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:35:10,397", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:35:10,397", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:10,398", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:35:10,398", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:35:10,399", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:35:10,399", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:35:10,399", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082834\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"evdCMTNEj6VBo6GiLwUEAEIebIrhTHxJScd2SxDReJQ\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:35:10,399", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:35:10,399", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:35:10] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:36:39,839", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:39,840", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:39,840", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:39,841", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:39,936", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:39,936", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:39,937", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:39,937", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:40,757", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:36:40,757", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082827\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:36:40,757", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:36:40,757", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:40,758", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:36:40,758", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:40,759", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:36:40,759", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:36:40,760", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:36:40,760", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:36:40,760", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:40] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:36:40,924", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:40,924", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:40,924", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:40,925", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:41,014", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:41,014", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:41,014", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:41,015", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:41,863", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:36:41,863", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082828\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:36:41,863", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:36:41,863", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:41,864", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:36:41,865", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:41,865", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:36:41,865", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:36:41,866", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:36:41,867", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:36:41,867", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:41] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:36:42,024", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:42,024", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:42,024", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:42,025", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:42,113", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:36:42,113", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:36:42,113", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:42,114", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:36:42,951", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:36:42,952", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082829\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"QmBje_pxGQdz8Rvq9qc-GlA9BEoSNBWtN_kUxC6-ETc\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:36:42,952", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:36:42,952", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:42,952", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:36:42,953", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:36:42,953", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:36:42,953", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:36:42,954", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:36:42,954", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:36:42,954", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:36:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:38:41,048", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:41,048", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:41,048", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:41,049", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:41,137", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:41,138", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:41,138", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:41,139", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:42,004", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:38:42,004", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082835\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:42,004", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:38:42,004", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:42,005", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:38:42,005", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:42,006", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:38:42,006", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:38:42,006", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082835\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:42,006", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:38:42,006", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:38:42,168", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:42,168", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:42,168", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:42,169", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:42,258", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:42,258", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:42,258", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:42,259", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:43,080", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:38:43,081", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082836\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:43,081", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:38:43,081", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082836\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:43,082", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:38:43,083", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:38:43,237", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:43,237", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:43,237", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:43,238", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:43,327", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:38:43,327", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:38:43,327", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:43,328", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:38:44,168", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:38:44,168", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082837\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"MHxVCMt5fAeOAAbtx0VcP01Qa8Es3oSPWcdGch5xysw\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:44,168", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:38:44,168", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:44,169", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:38:44,169", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:38:44,170", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:38:44,170", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:38:44,170", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082837\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"MHxVCMt5fAeOAAbtx0VcP01Qa8Es3oSPWcdGch5xysw\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:38:44,170", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:38:44,170", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:38:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:40:15,415", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:15,416", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:15,416", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:15,417", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:15,504", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:15,504", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:15,505", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:15,505", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:16,324", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:40:16,324", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082830\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:16,324", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:40:16,324", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:16,325", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:40:16,325", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:16,326", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:40:16,326", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:40:16,326", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:40:16,327", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:40:16,327", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:16] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:40:42,300", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:42,301", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:42,301", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:42,302", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:42,390", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:42,390", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:42,390", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:42,391", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:43,231", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:40:43,231", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082838\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:43,231", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:40:43,232", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:43,232", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:40:43,232", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:43,233", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:40:43,233", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:40:43,233", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082838\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:43,233", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:40:43,234", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:40:43,392", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:43,393", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:43,393", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:43,394", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:43,482", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:43,482", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:43,482", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:43,483", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:44,309", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:40:44,309", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082839\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:44,309", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:40:44,309", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:44,310", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:40:44,310", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:44,311", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:40:44,311", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:40:44,311", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082839\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:44,311", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:40:44,311", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:40:44,467", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:44,467", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:44,467", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:44,468", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:44,556", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:40:44,556", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:40:44,556", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:44,557", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:40:45,376", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:40:45,376", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082840\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"L8gvhYp9F6M1bdHaSinxWmwI-ruehMWwkkPNFdd8sqU\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:45,376", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:40:45,376", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:45,377", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:40:45,377", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:40:45,378", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:40:45,378", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:40:45,378", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082840\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"L8gvhYp9F6M1bdHaSinxWmwI-ruehMWwkkPNFdd8sqU\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:40:45,378", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:40:45,378", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:40:45] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:41:05,162", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:41:05,162", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:41:05,162", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:05,163", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:41:05,251", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:41:05,252", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:41:05,252", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:05,253", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:41:06,058", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:41:06,058", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082831\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:41:06,058", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:41:06,058", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:06,059", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:41:06,059", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:06,060", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:41:06,060", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:41:06,061", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:41:06,061", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:41:06,061", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:41:06,226", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:41:06,226", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:41:06,226", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:06,227", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:41:06,316", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:41:06,316", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:41:06,316", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:06,317", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:41:07,137", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:41:07,137", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082832\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"AoZyO3sYnMhDGM7dW6yDRRs2F1RfOTIogp6hiQVI9jo\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:41:07,137", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:41:07,138", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:07,138", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:41:07,138", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:41:07,139", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:41:07,139", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:41:07,140", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:41:07,141", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:41:07,141", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:41:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:42:15,202", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:42:15,203", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:42:15,203", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:42:15,204", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:42:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:42:15,292", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:42:15,292", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:42:15,292", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:42:15,293", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:42:15] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:42:16,121", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:42:16,121", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082833\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:42:16,121", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:42:16,122", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:42:16,122", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:42:16,123", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:42:16,123", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:42:16,123", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:42:16,124", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:42:16,124", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:42:16,125", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:42:16] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:43:09,821", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:43:09,821", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082834\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:43:09,821", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:43:09,822", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:09,822", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:43:09,823", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:09,823", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:43:09,823", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:43:09,824", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:43:09,825", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:43:09,825", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:43:09] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:43:09,977", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:43:09,977", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:43:09,978", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:09,979", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:43:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:43:10,075", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:43:10,075", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:43:10,075", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:10,076", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:43:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:43:10,900", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:43:10,900", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082835\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"pa46eMEaXGatAnkB5z2a-XnM0Mb_TO-wEn6smgquntE\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:43:10,900", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:43:10,900", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:10,901", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:43:10,901", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:43:10,902", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:43:10,902", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:43:10,903", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:43:10,904", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:43:10,904", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:43:10] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:44:16,229", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:44:16,229", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:44:16,229", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:44:16,230", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:44:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:44:16,319", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:44:16,319", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:44:16,319", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:44:16,320", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:44:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:44:17,126", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:44:17,126", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082841\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:44:17,126", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:44:17,126", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:44:17,127", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:44:17,127", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:44:17,128", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:44:17,128", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:44:17,128", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082841\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:44:17,128", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:44:17,128", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:44:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:45:09,407", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:45:09,407", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:45:09,407", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:09,408", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:45:09,496", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:45:09,496", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:45:09,496", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:09,497", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:45:10,323", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:45:10,323", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082842\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:45:10,323", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:45:10,323", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:10,324", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:45:10,324", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:10,325", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:45:10,325", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:45:10,325", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082842\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:45:10,325", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:45:10,325", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:10] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:45:10,478", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:45:10,478", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:45:10,478", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:10,479", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:45:10,571", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:45:10,571", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:45:10,571", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:10,572", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:45:11,379", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:45:11,379", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082843\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"evdCMTNEj6VBo6GiLwUEAEIebIrhTHxJScd2SxDReJQ\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:45:11,379", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:45:11,380", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:11,380", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:45:11,380", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:45:11,381", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:45:11,381", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:45:11,381", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082843\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"evdCMTNEj6VBo6GiLwUEAEIebIrhTHxJScd2SxDReJQ\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:45:11,381", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:45:11,382", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:45:11] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:46:17,078", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:17,078", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:17,079", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:17,080", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:17,172", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:17,172", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:17,172", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:17,173", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:17] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:17,981", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:46:17,981", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082844\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:46:17,981", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:46:17,981", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:17,982", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:46:17,982", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:17,983", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:46:17,983", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:46:17,983", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082844\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:46:17,983", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:46:17,984", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:46:39,007", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:39,007", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:39,007", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:39,008", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:39,096", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:39,096", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:39,096", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:39,097", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:39,915", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:46:39,915", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082836\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:46:39,915", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:46:39,916", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:39,916", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:46:39,916", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:39,917", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:46:39,917", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:46:39,918", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:46:39,918", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:46:39,918", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:39] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:46:40,079", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:40,079", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:40,079", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:40,080", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:40,170", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:40,170", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:40,170", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:40,171", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:40,994", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:46:40,994", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082837\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:46:40,994", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:46:40,994", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:40,995", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:46:40,995", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:40,996", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:46:40,996", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:46:40,996", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:46:40,997", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:46:40,997", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:40] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:46:41,155", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:41,155", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:41,155", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:41,156", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:41,245", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:46:41,245", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:46:41,245", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:41,246", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:46:42,073", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:46:42,073", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082838\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"QmBje_pxGQdz8Rvq9qc-GlA9BEoSNBWtN_kUxC6-ETc\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:46:42,073", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:46:42,073", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:42,074", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:46:42,074", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:46:42,075", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:46:42,075", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:46:42,075", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:46:42,076", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:46:42,076", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:46:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:47:05,857", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:47:05,857", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:47:05,857", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:05,858", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:47:05,946", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:47:05,946", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:47:05,946", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:05,948", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:05] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:47:06,768", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:47:06,768", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082845\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:47:06,769", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:47:06,769", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:06,771", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:47:06,771", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:06,772", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:47:06,772", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:47:06,772", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082845\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:47:06,772", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:47:06,772", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:06] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:47:06,941", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:47:06,941", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:47:06,941", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:06,942", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:47:07,031", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:47:07,031", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:47:07,031", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:07,032", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:07] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:47:07,864", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:47:07,864", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082846\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"Pmz11xdg2TlL9ajzBVuwQ0D-LRydjqujn4IOBKuHN-s\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:47:07,864", "levelname": "DEBUG", "message": "Domain name to check: hostinz.net"} +{"asctime": "2021-08-28 10:47:07,864", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:07,865", "levelname": "DEBUG", "message": "Does zone exist? True"} +{"asctime": "2021-08-28 10:47:07,865", "levelname": "DEBUG", "message": "Checking if hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:47:07,866", "levelname": "DEBUG", "message": "Zone is present in db"} +{"asctime": "2021-08-28 10:47:07,866", "levelname": "DEBUG", "message": "Zone Name for write: hostinz.net"} +{"asctime": "2021-08-28 10:47:07,866", "levelname": "DEBUG", "message": "Zone file to write: \n\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.hostinz.net. (\n 2021082846\n 3600\n 3600\n 1209600\n 86400 )\n\nhostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nhostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nftp\t3600\tIN\tA\t139.99.133.68\nhostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nhostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"Pmz11xdg2TlL9ajzBVuwQ0D-LRydjqujn4IOBKuHN-s\"\nhostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:47:07,866", "levelname": "DEBUG", "message": "Zone written to /etc/pdns/zones/hostinz.net.db"} +{"asctime": "2021-08-28 10:47:07,866", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:47:07] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=hostinz.net&named_reload=yes&username=cheybugger&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 - \"\" \"\""} +{"asctime": "2021-08-28 10:48:43,078", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:43,078", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:43,079", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:43,080", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:43,169", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:43,169", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:43,169", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:43,170", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:43,981", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:48:43,982", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082839\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:48:43,982", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:48:43,982", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:43,983", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:48:43,983", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:43,983", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:48:43,984", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:48:43,984", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:48:43,985", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:48:43,985", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:48:44,144", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:44,144", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:44,145", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:44,145", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:44,235", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:44,235", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:44,235", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:44,236", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:44] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:45,091", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:48:45,091", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082840\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:48:45,091", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:48:45,091", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:45,092", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:48:45,092", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:45,093", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:48:45,093", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:48:45,093", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:48:45,094", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:48:45,094", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:45] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:48:45,247", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:45,247", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:45,247", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:45,248", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:45] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:45,336", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:48:45,336", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:48:45,336", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:45,337", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:45] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:48:46,164", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:48:46,165", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082841\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"-AW31hFmq_-Bw3NNX8DPhI2BMR2EHR_4G7IboQRaBd8\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:48:46,165", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:48:46,165", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:46,165", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:48:46,166", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:48:46,166", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:48:46,166", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:48:46,167", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:48:46,167", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:48:46,167", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:48:46] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:49:47,377", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Caught signal SIGHUP."} +{"asctime": "2021-08-28 10:49:47,462", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE SIGHUP caught but not daemonized. Exiting."} +{"asctime": "2021-08-28 10:49:47,462", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:49:47,679", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Caught signal SIGHUP."} +{"asctime": "2021-08-28 10:49:47,704", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE SIGHUP caught but not daemonized. Exiting."} +{"asctime": "2021-08-28 10:49:47,704", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:49:47,772", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Caught signal SIGTERM."} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) already shut down"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE No thread running for None."} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:49:47,773", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:49:47,774", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:49:47,774", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE No thread running for None."} +{"asctime": "2021-08-28 10:49:47,774", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:49:47,774", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:49:47,774", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:49:47,780", "levelname": "INFO", "message": "[28/Aug/2021:10:49:47] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:58:21,276", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:58:21,276", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:58:21,276", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:58:21,297", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:58:21,300", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:58:21,300", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:58:21,300", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:58:21,300", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:58:21,300", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:58:21,301", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:58:21,406", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:58:21,406", "levelname": "INFO", "message": "[28/Aug/2021:10:58:21] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 10:58:37,875", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:37,879", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:37,879", "levelname": "DEBUG", "message": "Checking if t.whs.interna is present in the DB"} +{"asctime": "2021-08-28 10:58:37,882", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:37] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.interna&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:41,426", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:41,426", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:41,426", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:41,433", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:41,529", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:41,529", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:41,529", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:41,530", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:42,346", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:58:42,346", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082848\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:58:42,347", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:58:42,347", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:42,348", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:58:42,348", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:42,348", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:58:42,348", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:58:42,349", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:58:42,353", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:58:42,354", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:58:42,519", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:42,519", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:42,519", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:42,520", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:42,611", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:42,611", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:42,611", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:42,612", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:42] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:43,435", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:58:43,435", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082849\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:58:43,435", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:58:43,435", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:43,436", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:58:43,436", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:43,437", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:58:43,437", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:58:43,437", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:58:43,438", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:58:43,438", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:43] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:58:43,595", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:43,595", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:43,595", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:43,596", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:43,685", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 10:58:43,685", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 10:58:43,685", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:43,686", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:43] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 10:58:44,540", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 10:58:44,540", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082850\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"-AW31hFmq_-Bw3NNX8DPhI2BMR2EHR_4G7IboQRaBd8\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 10:58:44,540", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 10:58:44,540", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:44,541", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 10:58:44,541", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 10:58:44,542", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 10:58:44,542", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 10:58:44,542", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 10:58:44,543", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 10:58:44,543", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:10:58:44] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 51 \"\" \"\""} +{"asctime": "2021-08-28 10:59:43,686", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 10:59:43,686", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:59:43,687", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 10:59:43,698", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 10:59:43,698", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 10:59:43,698", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 10:59:43,698", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 10:59:43,723", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 10:59:43,723", "levelname": "INFO", "message": "[28/Aug/2021:10:59:43] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 10:59:45,127", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 10:59:45,127", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 10:59:45,127", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 10:59:45,140", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 10:59:45,144", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 10:59:45,145", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 10:59:45,145", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 10:59:45,145", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 10:59:45,145", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 10:59:45,145", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 10:59:45,251", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 10:59:45,252", "levelname": "INFO", "message": "[28/Aug/2021:10:59:45] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 11:00:39,656", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:39,657", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:39,657", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:39,658", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:39,747", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:39,747", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:39,747", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:39,748", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:39] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:40,573", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 11:00:40,573", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082851\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 11:00:40,573", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 11:00:40,573", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:40,574", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 11:00:40,574", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:40,575", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 11:00:40,575", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 11:00:40,575", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 11:00:40,576", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 11:00:40,576", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:40] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 8 \"\" \"\""} +{"asctime": "2021-08-28 11:00:40,736", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:40,736", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:40,736", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:40,737", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:40,825", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:40,825", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:40,825", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:40,826", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:40] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:41,697", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 11:00:41,697", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082852\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 11:00:41,697", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 11:00:41,697", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:41,698", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 11:00:41,698", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:41,699", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 11:00:41,699", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 11:00:41,699", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 11:00:41,700", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 11:00:41,700", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:41] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 8 \"\" \"\""} +{"asctime": "2021-08-28 11:00:41,854", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:41,854", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:41,854", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:41,855", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:41,946", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:00:41,946", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:00:41,946", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:41,947", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:41] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:00:42,766", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 11:00:42,766", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082853\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\n_acme-challenge\t5\tIN\tTXT\t\"7aNWmq4TUE389NGFmK45sQbkVF8xwEfet0DcFH9FV_k\"\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 11:00:42,766", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 11:00:42,766", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:42,767", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 11:00:42,767", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:00:42,768", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 11:00:42,768", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 11:00:42,769", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 11:00:42,769", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 11:00:42,770", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:00:42] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&named_reload=yes&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 8 \"\" \"\""} +{"asctime": "2021-08-28 11:02:12,541", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:12,541", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:12,541", "levelname": "DEBUG", "message": "Checking if twhs.internal is present in the DB"} +{"asctime": "2021-08-28 11:02:12,542", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:12] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=twhs.internal&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:28,103", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:28,103", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:28,103", "levelname": "DEBUG", "message": "Checking if whs.interna is present in the DB"} +{"asctime": "2021-08-28 11:02:28,104", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:28] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=whs.interna&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:32,797", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:32,797", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:32,797", "levelname": "DEBUG", "message": "Checking if t.whs is present in the DB"} +{"asctime": "2021-08-28 11:02:32,798", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:32] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:33,931", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:33,931", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:33,931", "levelname": "DEBUG", "message": "Checking if t.whs.in is present in the DB"} +{"asctime": "2021-08-28 11:02:33,932", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:33] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.in&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:34,415", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:34,415", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:34,416", "levelname": "DEBUG", "message": "Checking if t.whs.int is present in the DB"} +{"asctime": "2021-08-28 11:02:34,416", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:34] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.int&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:34,610", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:34,610", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:34,610", "levelname": "DEBUG", "message": "Checking if t.whs.inte is present in the DB"} +{"asctime": "2021-08-28 11:02:34,611", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:34] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.inte&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:34,999", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:34,999", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:34,999", "levelname": "DEBUG", "message": "Checking if t.whs.intern is present in the DB"} +{"asctime": "2021-08-28 11:02:35,000", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:35] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.intern&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:02:35,600", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:02:35,600", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:02:35,600", "levelname": "DEBUG", "message": "Checking if t.whs.interna is present in the DB"} +{"asctime": "2021-08-28 11:02:35,601", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:02:35] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=t.whs.interna&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:04:16,305", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:04:16,305", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:04:16,305", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:04:16,306", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:04:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:04:16,393", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:04:16,393", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:04:16,393", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:04:16,394", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:04:16] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:04:17,215", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 11:04:17,215", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082854\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 11:04:17,216", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 11:04:17,216", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:04:17,217", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 11:04:17,217", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:04:17,217", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 11:04:17,217", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 11:04:17,218", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 11:04:17,218", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 11:04:17,219", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:04:17] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 8 \"\" \"\""} +{"asctime": "2021-08-28 11:06:14,675", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:06:14,675", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:06:14,675", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:06:14,676", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:06:14] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:06:14,764", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:06:14,764", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:06:14,764", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:06:14,765", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:06:14] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=add.hostinz.net HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:06:15,593", "levelname": "DEBUG", "message": "Processing Method: POST"} +{"asctime": "2021-08-28 11:06:15,593", "levelname": "DEBUG", "message": "\n\n\n\n\n\n\n\n\n\n\n\n\n$TTL 3600\n@ IN SOA ns1.webhostingservices.co.nz. hostmaster.add.hostinz.net. (\n 2021082855\n 3600\n 3600\n 1209600\n 86400 )\n\nadd.hostinz.net.\t3600\tIN\tNS\tns1.webhostingservices.co.nz.\nadd.hostinz.net.\t3600\tIN\tNS\tns2.webhostingservices.co.nz.\n\nadd.hostinz.net.\t3600\tIN\tA\t139.99.133.68\nmail\t3600\tIN\tA\t139.99.133.68\npop\t3600\tIN\tA\t139.99.133.68\nsmtp\t3600\tIN\tA\t139.99.133.68\nwebmail\t3600\tIN\tA\t139.99.133.68\nwww\t3600\tIN\tA\t139.99.133.68\n\nadd.hostinz.net.\t3600\tIN\tMX\t10 mail\n\n\n\nadd.hostinz.net.\t3600\tIN\tTXT\t\"v=spf1 +a +mx include:spf.webhostingservices.co.nz ~all\"\n\n\n\n\n\n\n\n"} +{"asctime": "2021-08-28 11:06:15,593", "levelname": "DEBUG", "message": "Domain name to check: add.hostinz.net"} +{"asctime": "2021-08-28 11:06:15,593", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:06:15,595", "levelname": "DEBUG", "message": "Does zone exist? False"} +{"asctime": "2021-08-28 11:06:15,595", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is present in the DB"} +{"asctime": "2021-08-28 11:06:15,596", "levelname": "DEBUG", "message": "Zone is not present in db"} +{"asctime": "2021-08-28 11:06:15,596", "levelname": "DEBUG", "message": "Checking if add.hostinz.net is owner of parent in the DB"} +{"asctime": "2021-08-28 11:06:15,596", "levelname": "DEBUG", "message": "hostinz.net exists in db"} +{"asctime": "2021-08-28 11:06:15,597", "levelname": "DEBUG", "message": ""} +{"asctime": "2021-08-28 11:06:15,597", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:06:15] \"POST /CMD_API_DNS_ADMIN?action=rawsave&domain=add.hostinz.net&username=admin&hostname=s23.webhostingservices.co.nz HTTP/1.0\" 200 8 \"\" \"\""} +{"asctime": "2021-08-28 11:10:53,692", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 11:10:53,692", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 11:10:53,692", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 11:10:53,711", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 11:10:53,711", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 11:10:53,712", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 11:10:53,712", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 11:10:53,796", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 11:10:53,796", "levelname": "INFO", "message": "[28/Aug/2021:11:10:53] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 11:10:54,831", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 11:10:54,831", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 11:10:54,831", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 11:10:54,838", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 11:10:54,840", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 11:10:54,841", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 11:10:54,841", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 11:10:54,841", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 11:10:54,841", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 11:10:54,841", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 11:10:54,944", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 11:10:54,945", "levelname": "INFO", "message": "[28/Aug/2021:11:10:54] ENGINE Bus STARTED"} +{"asctime": "2021-08-28 11:13:45,298", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:45,298", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:45,298", "levelname": "DEBUG", "message": "Checking if test.fo is present in the DB"} +{"asctime": "2021-08-28 11:13:45,300", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:45] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.fo&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:45,497", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:45,497", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:45,497", "levelname": "DEBUG", "message": "Checking if test.fox is present in the DB"} +{"asctime": "2021-08-28 11:13:45,498", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:45] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.fox&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:45,822", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:45,822", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:45,822", "levelname": "DEBUG", "message": "Checking if test.foxt is present in the DB"} +{"asctime": "2021-08-28 11:13:45,823", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:45] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxt&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:46,041", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:46,041", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:46,041", "levelname": "DEBUG", "message": "Checking if test.foxto is present in the DB"} +{"asctime": "2021-08-28 11:13:46,042", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:46] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxto&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:46,256", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:46,256", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:46,256", "levelname": "DEBUG", "message": "Checking if test.foxton is present in the DB"} +{"asctime": "2021-08-28 11:13:46,257", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:46] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxton&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:47,323", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:47,324", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:47,324", "levelname": "DEBUG", "message": "Checking if test.foxton.or is present in the DB"} +{"asctime": "2021-08-28 11:13:47,325", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:47] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxton.or&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:13:47,947", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:13:47,947", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:13:47,947", "levelname": "DEBUG", "message": "Checking if test.foxton.org is present in the DB"} +{"asctime": "2021-08-28 11:13:47,948", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:13:47] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxton.org&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:24,911", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:24,911", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:24,911", "levelname": "DEBUG", "message": "Checking if test.l is present in the DB"} +{"asctime": "2021-08-28 11:14:24,912", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:24] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.l&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:25,276", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:25,277", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:25,277", "levelname": "DEBUG", "message": "Checking if test.le is present in the DB"} +{"asctime": "2021-08-28 11:14:25,278", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:25] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.le&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:25,572", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:25,572", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:25,572", "levelname": "DEBUG", "message": "Checking if test.lev is present in the DB"} +{"asctime": "2021-08-28 11:14:25,573", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:25] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.lev&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:25,803", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:25,803", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:25,803", "levelname": "DEBUG", "message": "Checking if test.levi is present in the DB"} +{"asctime": "2021-08-28 11:14:25,804", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:25] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levi&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:26,351", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:26,351", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:26,351", "levelname": "DEBUG", "message": "Checking if test.levin is present in the DB"} +{"asctime": "2021-08-28 11:14:26,352", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:26] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:27,698", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:27,698", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:27,698", "levelname": "DEBUG", "message": "Checking if test.levin.or is present in the DB"} +{"asctime": "2021-08-28 11:14:27,699", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:27] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin.or&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:29,059", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:29,059", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:29,059", "levelname": "DEBUG", "message": "Checking if test.levin.org is present in the DB"} +{"asctime": "2021-08-28 11:14:29,060", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:29] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin.org&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:30,826", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:30,827", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:30,827", "levelname": "DEBUG", "message": "Checking if test.levin.org.n is present in the DB"} +{"asctime": "2021-08-28 11:14:30,828", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:30] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin.org.n&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:14:31,086", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:14:31,086", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:14:31,086", "levelname": "DEBUG", "message": "Checking if test.levin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:14:31,087", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:14:31] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:06,498", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:06,499", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:06,499", "levelname": "DEBUG", "message": "Checking if levin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:06,500", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:06] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=levin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:08,078", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:08,078", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:08,078", "levelname": "DEBUG", "message": "Checking if tlevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:08,079", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=tlevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:08,245", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:08,245", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:08,245", "levelname": "DEBUG", "message": "Checking if televin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:08,246", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=televin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:08,453", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:08,453", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:08,453", "levelname": "DEBUG", "message": "Checking if teslevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:08,454", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=teslevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:08,674", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:08,674", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:08,674", "levelname": "DEBUG", "message": "Checking if testlevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:08,675", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:08] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=testlevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:09,043", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:09,043", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:09,043", "levelname": "DEBUG", "message": "Checking if test.levin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:09,044", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.levin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:09,489", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:09,489", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:09,489", "levelname": "DEBUG", "message": "Checking if test.folevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:09,490", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.folevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:09,805", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:09,805", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:09,805", "levelname": "DEBUG", "message": "Checking if test.foxlevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:09,806", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:09] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxlevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:10,130", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:10,130", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:10,130", "levelname": "DEBUG", "message": "Checking if test.foxtlevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:10,131", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxtlevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:10,794", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:10,794", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:10,794", "levelname": "DEBUG", "message": "Checking if test.foxtolevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:10,795", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxtolevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:10,996", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:10,997", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:10,997", "levelname": "DEBUG", "message": "Checking if test.foxtonlevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:10,997", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:10] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxtonlevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:12,150", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:12,150", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:12,151", "levelname": "DEBUG", "message": "Checking if test.foxtonevin.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:12,151", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:12] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxtonevin.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:12,715", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:12,715", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:12,715", "levelname": "DEBUG", "message": "Checking if test.foxtonn.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:12,716", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:12] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxtonn.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:15:12,948", "levelname": "DEBUG", "message": "Processing Method: GET"} +{"asctime": "2021-08-28 11:15:12,948", "levelname": "DEBUG", "message": "Action Type: exists"} +{"asctime": "2021-08-28 11:15:12,948", "levelname": "DEBUG", "message": "Checking if test.foxton.org.nz is present in the DB"} +{"asctime": "2021-08-28 11:15:12,949", "levelname": "INFO", "message": "139.99.245.86 - test [28/Aug/2021:11:15:12] \"GET /CMD_API_DNS_ADMIN?action=exists&domain=test.foxton.org.nz&check_for_parent_domain=true HTTP/1.0\" 200 16 \"\" \"\""} +{"asctime": "2021-08-28 11:20:06,092", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Restarting because /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py changed."} +{"asctime": "2021-08-28 11:20:06,092", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Stopped thread 'Autoreloader'."} +{"asctime": "2021-08-28 11:20:06,092", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Bus STOPPING"} +{"asctime": "2021-08-28 11:20:06,104", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 2222)) shut down"} +{"asctime": "2021-08-28 11:20:06,104", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Bus STOPPED"} +{"asctime": "2021-08-28 11:20:06,104", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Bus EXITING"} +{"asctime": "2021-08-28 11:20:06,104", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Bus EXITED"} +{"asctime": "2021-08-28 11:20:06,119", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Waiting for child threads to terminate..."} +{"asctime": "2021-08-28 11:20:06,119", "levelname": "INFO", "message": "[28/Aug/2021:11:20:06] ENGINE Re-spawning /home/guisea/PycharmProjects/pySlave/venv/bin/python /home/guisea/PycharmProjects/pySlave/src/directdnsonly.py"} +{"asctime": "2021-08-28 11:20:07,231", "levelname": "INFO", "message": "DirectDNS Starting"} +{"asctime": "2021-08-28 11:20:07,231", "levelname": "INFO", "message": "Timezone is Pacific/Auckland"} +{"asctime": "2021-08-28 11:20:07,231", "levelname": "INFO", "message": "Get Database Connection"} +{"asctime": "2021-08-28 11:20:07,238", "levelname": "INFO", "message": "Database Connected!"} +{"asctime": "2021-08-28 11:20:07,240", "levelname": "INFO", "message": "Superuser account already exists: skipping creation"} +{"asctime": "2021-08-28 11:20:07,241", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Listening for SIGTERM."} +{"asctime": "2021-08-28 11:20:07,241", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Listening for SIGHUP."} +{"asctime": "2021-08-28 11:20:07,241", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Listening for SIGUSR1."} +{"asctime": "2021-08-28 11:20:07,241", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Bus STARTING"} +{"asctime": "2021-08-28 11:20:07,241", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Started monitor thread 'Autoreloader'."} +{"asctime": "2021-08-28 11:20:07,344", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Serving on http://0.0.0.0:2222"} +{"asctime": "2021-08-28 11:20:07,345", "levelname": "INFO", "message": "[28/Aug/2021:11:20:07] ENGINE Bus STARTED"} diff --git a/src/db.py b/src/db.py new file mode 100644 index 0000000..d5dfd86 --- /dev/null +++ b/src/db.py @@ -0,0 +1,67 @@ +import re + +from sqlalchemy import create_engine + + +def connect(hostname, sid, username, password, port=1521) -> object: + host = hostname + port = port + sid = sid + user = username + password = password + sid = cx_Oracle.makedsn(host, port, sid=sid) + + connection_string = 'oracle://{user}:{password}@{sid}'.format( + user=user, + password=password, + sid=sid + ) + + engine = create_engine( + connection_string, + convert_unicode=False, + pool_recycle=10, + pool_size=50, + ) + + return engine + + +def make_address(flt_num: str, street_name: str, area: str, address_string: str) -> str: + """ + Take input parameters from GIS Data and returns Address as string + :rtype: str + """ + street_number = nv(flt_num).upper().strip() # Make the street number upper case and strip whitespace + street_name = nv(street_name).upper().strip() # Make the street name upper case and strip whitespace + town_name = nv(area) + if area != 'None' and \ + area is not None and \ + area != '': + town_name = nv(area).upper().strip() # Make the area upper case and strip whitespace + else: + town_name = nv(lookup_town_in_string(address_string)) # Get the town from address string + + # Assemble the address string + full_address = street_number + " " + street_name + " " + town_name + + return full_address + + +def lookup_town_in_string(address: str) -> str: + for p in street_type_lookup(): + first_word = r"^(\w+)\s?((?!\\1)([\w]+)?)(?:\s+[\d]{4})" # Return First Words + try: + f = address.index(p) + size = len(p) + if f is not None: + m = re.search(first_word, address[f + size::].strip()) + if m.group(1) is not None and m.group(2) is not None: + if m.group(1) != m.group(2): + return m.group(1) + ' ' + m.group(2) + else: + return m.group(1) + elif m.group(1) is not None and m.group(2) is None: + return m.group(1) + except ValueError: + pass diff --git a/src/directdnsonly.py b/src/directdnsonly.py new file mode 100644 index 0000000..716ba25 --- /dev/null +++ b/src/directdnsonly.py @@ -0,0 +1,232 @@ +import mmap + +import cherrypy +from cherrypy import request +from cherrypy._cpnative_server import CPHTTPServer +from pythonjsonlogger import jsonlogger +import logging +import os +import time +import sys +import yaml +import datetime +import lib.common +import lib.db +import lib.db.models + + +class DaDNS(object): + + @cherrypy.expose + def CMD_API_LOGIN_TEST(self, **params): + return 'error=0&text=Login OK&details=none' + + @cherrypy.expose + def CMD_API_DNS_ADMIN(self, **params): + applog.debug('Processing Method: ' + request.method) + + if request.method == 'POST': + action = request.params.get('action') + decoded_params = None + if action is None: + decoded_params = decode_params(str(request.body.read(), 'utf-8')) + action = decoded_params['action'] + zone_file = str(request.body.read(), 'utf-8') + applog.debug(zone_file) + if action == 'delete': + # Domain is being removed from the DNS + hostname = decoded_params['hostname'] + domain = decoded_params['select0'] + record = session.query(lib.db.models.Domain).filter_by(domain=domain).one() + if record.hostname == hostname: + applog.debug('Hostname matches the original host {}: Delete is allowed'.format('hostname')) + session.delete(record) + applog.info('{} deleted from database') + write_named_include() + if action == 'rawsave': + # DirectAdmin wants to add/update a domain + hostname = request.params.get('hostname') + username = request.params.get('username') + domain = request.params.get('domain') + applog.debug('Domain name to check: ' + domain) + applog.debug('Does zone exist? ' + str(check_zone_exists(str(domain)))) + if not check_zone_exists(str(domain)): + applog.debug('Zone is not present in db') + put_zone_index(str(domain), str(hostname), str(username)) + write_zone_file(str(domain), zone_file) + else: + # Domain already exists + applog.debug('Zone is present in db') + write_zone_file(str(domain), zone_file) + elif request.method == 'GET': + applog.debug('Action Type: ' + request.params.get('action')) + action = request.params.get('action') + if action == 'exists': + # DirectAdmin is checking whether the domain is in the cluster + if check_zone_exists(request.params.get('domain')): + return 'result: exists=1' + else: + return 'result: exists=0' + + +def create_zone_index(): + # Create an index of all zones present from zone definitions + regex = r"(?<=\")(?P.*)(?=\"\s)" + + with open(zone_index_file, 'w+') as f: + with open(named_conf, 'r') as named_file: + while True: + # read line + line = named_file.readline() + if not line: + # Reached end of file + break + print(line) + hosted_domain = re.search(regex, line).group(0) + f.write(hosted_domain + "\n") + + +def put_zone_index(zone_name, host_name, user_name): + # add a new zone to index + applog.debug('Placed zone into database.. {}'.format(str(zone_name))) + domain = lib.db.models.Domain(domain=zone_name, hostname=host_name, username=user_name) + session.add(domain) + session.commit() + + +def write_zone_file(zone_name, data): + # Write the zone to file + applog.debug('Zone Name for write: ' + zone_name) + applog.debug('Zone file to write: \n' + data) + with open(zones_dir + '/' + zone_name + '.db', 'w') as f: + f.write(data) + applog.debug('Zone written to {}'.format(zones_dir + '/' + zone_name + '.db')) + + +def write_named_include(): + applog.debug('Rewrite named zone include...') + domains = session.query(lib.db.models.Domain).all() + with open(named_conf, 'w') as f: + for domain in domains: + applog.debug('Writing zone {} to named.config'.format(domain.domain)) + f.write('zone "{}" { type master; file "/etc/pdns/zones/{}.db"; };' + .format(domain.domain, + domain.domain)) + + +def check_parent_domain_owner(zone_name, owner): + applog.debug('Checking if {} is owner of parent in the DB'.format(zone_name)) + # check try to find domain name + parent_domain = ".".join(zone_name.split('.')[1:]) + domain_exists = session.query(session.query(lib.db.models.Domain).filter_by(domain=parent_domain).exists()).scalar() + if domain_exists: + # domain exists in the db + applog.debug('{} exists in db'.format(parent_domain)) + domain_record = session.query(lib.db.models.Domain).filter_by(domain=parent_domain).one() + applog.debug(str(domain_record)) + if domain_record.username == owner: + return True + else: + return False + + +def check_zone_exists(zone_name): + # Check if zone is present in the index + applog.debug('Checking if {} is present in the DB'.format(zone_name)) + domain_exists = session.query(session.query(lib.db.models.Domain).filter_by(domain=zone_name).exists()).scalar() + if domain_exists: + return True + else: + return False + + +def decode_params(payload): + from urllib.parse import parse_qs + response = parse_qs(payload) + params = dict() + for key, val in response.items(): + params[key] = val[0] + return params + + +@cherrypy.expose +@cherrypy.tools.json_out() +def health(self): + # Defaults to 200 + return {"Message": "OK!"} + + +def setup_logging(): + os.environ['TZ'] = config['timezone'] + time.tzset() + applog = logging.getLogger() + applog.setLevel(level=getattr(logging, config['log_level'].upper())) + if config['log_to'] == 'stdout': + handler = logging.StreamHandler(sys.stdout) + handler.setLevel(level=getattr(logging, config['log_level'].upper())) + formatter = jsonlogger.JsonFormatter( + fmt='%(asctime)s %(levelname)s %(message)s' + ) + handler.setFormatter(formatter) + applog.addHandler(handler) + elif config['log_to'] == 'file': + handler = logging.FileHandler('./config/directdns.log') + handler.setLevel(level=getattr(logging, config['log_level'].upper())) + formatter = jsonlogger.JsonFormatter( + fmt='%(asctime)s %(levelname)s %(message)s' + ) + handler.setFormatter(formatter) + applog.addHandler(handler) + return applog + + +if __name__ == '__main__': + app_version = "1.0.0" + if os.path.isfile("/lib/x86_64-linux-gnu/" + "libgcc_s.so.1"): + # Load local library + libgcc_s = ctypes.cdll.LoadLibrary("/lib/x86_64-linux-gnu/" + "libgcc_s.so.1") + # We are about to start our application + with open(r'config/app.yml') as config_file: + config = yaml.load(config_file, Loader=yaml.SafeLoader) + applog = setup_logging() + applog.info('DirectDNS Starting') + applog.info('Timezone is {}'.format(config['timezone'])) + applog.info('Get Database Connection') + session = lib.db.connect() + applog.info('Database Connected!') + + zones_dir = "/etc/pdns/zones" + named_conf = "/etc/pdns/named.conf" + + cherrypy.__version__ = '' + cherrypy._cperror._HTTPErrorTemplate = cherrypy._cperror._HTTPErrorTemplate.replace( + 'Powered by CherryPy %(version)s\n', '%(version)s') + userpassdict = {'test': 'test'} + checkpassword = cherrypy.lib.auth_basic.checkpassword_dict(userpassdict) + + cherrypy.config.update({ + 'server.socket_host': '0.0.0.0', + 'server.socket_port': config['server_port'], + 'tools.proxy.on': config['proxy_support'], + 'tools.proxy.base': config['proxy_support_base'], + 'tools.auth_basic.on': True, + 'tools.auth_basic.realm': 'dadns', + 'tools.auth_basic.checkpassword': checkpassword, + 'tools.response_headers.on': True, + 'tools.response_headers.headers': [('Server', 'DirectDNS v' + app_version)], + 'environment': config['environment'] + }) + # cherrypy.log.error_log.propagate = False + # cherrypy.log.access_log.propagate = False + + if not lib.common.check_if_super_user_exists(session): + password_str = lib.common.get_random_string(35) + applog.info('Creating superuser account: {}'.format('super')) + applog.info('Password: {}'.format(password_str)) + superuser = lib.db.models.Key(key=password_str, name='super', service='*') + session.add(superuser) + session.commit() + else: + applog.info('Superuser account already exists: skipping creation') + + cherrypy.quickstart(DaDNS()) diff --git a/src/lib/__init__.py b/src/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/lib/common/__init__.py b/src/lib/common/__init__.py new file mode 100644 index 0000000..942f2f3 --- /dev/null +++ b/src/lib/common/__init__.py @@ -0,0 +1,18 @@ +import random +import string +import lib.db.models + + +def check_if_super_user_exists(session): + exists = session.query(session.query(lib.db.models.Key).filter_by(name='super').exists()).scalar() + return exists + + +def check_if_domain_exists(session): + pass + + +def get_random_string(length): + letters_and_digits = string.ascii_letters + string.digits + result_str = ''.join(random.choice(letters_and_digits) for i in range(length)) + return result_str \ No newline at end of file diff --git a/src/lib/db/__init__.py b/src/lib/db/__init__.py new file mode 100644 index 0000000..c8f78f3 --- /dev/null +++ b/src/lib/db/__init__.py @@ -0,0 +1,15 @@ +from sqlalchemy import create_engine +from sqlalchemy.orm import sessionmaker +from sqlalchemy.ext.declarative import declarative_base +import datetime + +Base = declarative_base() + + +def connect(): + # Start SQLite engine + engine = create_engine('sqlite:///./config/keys.db', connect_args={'check_same_thread': False}) + Base.metadata.create_all(engine) + Session = sessionmaker(bind=engine) + session = Session() + return session \ No newline at end of file diff --git a/src/lib/db/models/__init__.py b/src/lib/db/models/__init__.py new file mode 100644 index 0000000..a7573d9 --- /dev/null +++ b/src/lib/db/models/__init__.py @@ -0,0 +1,28 @@ +from lib.db import Base +from sqlalchemy import Column, Integer, String, DateTime + + +class Key(Base): + __tablename__ = "keys" + id = Column(Integer, primary_key=True) + key = Column(String, unique=True) + name = Column(String) + expires = Column(DateTime) + service = Column(String) + + def __repr__(self): + return "" % ( + self.key, self.name, self.expires, self.service) + + +class Domain(Base): + __tablename__ = "domains" + id = Column(Integer, primary_key=True) + domain = Column(String, unique=True) + hostname = Column(String) + username = Column(String) + + def __repr__(self): + return "" % ( + self.id, self.domain, self.hostname, self.username + ) diff --git a/src/test-file.py b/src/test-file.py new file mode 100644 index 0000000..5970b03 --- /dev/null +++ b/src/test-file.py @@ -0,0 +1,6 @@ +import yaml + +data = {'ZU7f3NogDxIzhfW5tsv9' : {'name': 'super', + 'expires': '11/21/2020, 10:56:24'}} + +print(yaml.dump(data)) diff --git a/src/test.py b/src/test.py new file mode 100644 index 0000000..885df3a --- /dev/null +++ b/src/test.py @@ -0,0 +1,18 @@ +import datetime +import lib.common +import lib.db +import lib.db.models + +new_expiry_date = datetime.datetime.now() + datetime.timedelta(int(10)) + +session = lib.db.connect() + +if not lib.common.check_if_super_user_exists(session): + password_str = lib.common.get_random_string(20) + print('Creating superuser account: {}'.format('super')) + print('Password: {}'.format(password_str)) + super = lib.db.models.Key(key=password_str, name='super', service='*') + session.add(super) + session.commit() +else: + print('Superuser account already exists: skipping creation') \ No newline at end of file