OWASP Maryam 是一个基于 OSINT 和数据收集的模块化开源框架。它旨在提供一个强大的环境,以快速且彻底地从公开资源和搜索引擎中收集数据。
$ pip install maryam
或者,你也可以使用以下命令安装最新版本(推荐):
pip install git+https://github.com/saeeddhqan/maryam.git
# Using dns_search. --max means all of resources. --api shows the results as json.
# .. -t means use multi-threading.
maryam -e dns_search -d ibm.com -t 5 --max --api --form
# Using youtube. -q means query
maryam -e youtube -q "<QUERY>"
maryam -e google -q "<QUERY>"
maryam -e dnsbrute -d domain.tld
# Show framework modules
maryam -e show modules
# Set framework options.
maryam -e set proxy ..
maryam -e set agent ..
maryam -e set timeout ..
# Run web API
maryam -e web api 127.0.0.1 1313
以下是入门指南:开发指南 你可以为工具类添加新的搜索引擎,或者使用现有的搜索引擎编写新模块。 编写新模块的最佳帮助是查看现有模块。
如需报告错误、提出请求或其他问题,请创建 issue。