基于DNSlog修改:
https://github.com/BugScanTeam/DNSLog
基于docker的自动化部署:
API接口调用:
http://127.0.0.1:8000/apilogin/{username}/{password}/
http://127.0.0.1:8000/apilogin/test/123456/
#登陆以获取token
http://127.0.0.1:8000/apiquery/{logtype}/{subdomain}/{token}/
http://127.0.0.1:8000/apiquery/dns/test/a2f78f403d7b8b92ca3486bb4dc0e498/
#查询特定域名的某类型记录
http://127.0.0.1:8000/apidel/{logtype}/{udomain}/{token}/
http://127.0.0.1:8000/apidel/dns/test/a2f78f403d7b8b92ca3486bb4dc0e498/
#删除特定域名的某类型记录
changelog:
2018-01-16:修改api接口的返回内容为实际的数据而不再简单是True or False;
2018-01-16:新增3个API接口实现:登陆获取token、带token查询特定记录、带token删除特定记录