Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Zilore DNS API Python Wrapper. It was implemented by following Zilore DNS API document.
The easiest way to install python-zilore
and get updates is by using pip
$ pip install python-zilore
You can test your install by using following steps:
Log into Zilore DNS management console via Browser
Get your own API key in Setting
page
Test if your API key is working with the following Python code
import ziloreapi
zdns = ziloreapi.Api('YOUR_API_KEY')
result = zdns.test_login()
print(result)
Once you see True
on console, you're all set and ready to rock 'n' roll.
It's simple to use the library to interact witgh Zilore DNS.
Creating a doamin
called example.com
import ziloreapi
zdns = ziloreapi.Api('YOUR_API_KEY')
result = zdns.add_domain('example.com')
print(result)
Creating an A record called test.example.com
with TTL = 600 seconds
and point it to 10.0.0.1
import ziloreapi
zdns = ziloreapi.Api('YOUR_API_KEY')
result = zdns.add_record('example.com', 'A', 600,'test', '10.0.0.1')
print(result)
Creating a CNAME record called cname.example.com
with TTL = 300 seconds
and point it to www.google.com
import ziloreapi
zdns = ziloreapi.Api('YOUR_API_KEY')
result = zdns.add_record('example.com', 'CNAME', 300,'cname', 'www.google.com')
print(result)
Changing A record test.example.com
value. Set TTL to 3600 and re-pointing to 192.168.1.1
import ziloreapi
zdns = ziloreapi.Api('YOUR_API_KEY')
result = zdns.update_record('csie.io', RECORD_ID, 'A', 3600, 'test', '192.168.1.1')
print(result)
All API are FULL SUPPORTED by python-zilore
DOMAINS
RECORDS
SNAPSHOTS
GEO RECORDS
FAILOVER RECORDS
WEB AND MAIL FORWARDING
CUSTOM TEMLATES
MIT License
FAQs
Zilore DNS API Wrapper
We found that python-zilore demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.