Open randolphcyg opened 1 year ago
I think no one else is working on this at the moment. If you're interested, your contributions would be very welcome!
I think no one else is working on this at the moment. If you're interested, your contributions would be very welcome!
If the poc_code
generated by the Nuclei YAML template is saved as Python code, is it appropriate to use Pocsuite3 -R to apply this Python code?
When I adapt the Goby JSON format template, I plan to convert json template to python template first, and then go to verify it separately, I don't know if this is appropriate?
So far, when I read the goby JSON template directly, I have successfully verified several vulnerabilities.
After fixing the obvious errors and optimizing the code, I try not to submit a merge request. The currently modified code is here: pocsuite3
感谢贡献。
If the poc_code generated by the Nuclei YAML template is saved as Python code, is it appropriate to use Pocsuite3 -R to apply this Python code?
poc_code 直接存为 .py
然后用 -r
加载是可以的。
When I adapt the Goby JSON format template, I plan to convert json template to python template first, and then go to verify it separately, I don't know if this is appropriate?
我想这没有区别,可以使用 -r
加载 nuclei 模版,也可以将转换后的存为 Python 文件然后使用 -r
加载。如果检测到是 yaml,会自动转换为 Python 插件,这部分代码位于:
https://github.com/knownsec/pocsuite3/blob/30a94290c4ff3dbfbcd56625b685b80541a5972f/pocsuite3/lib/core/register.py#L73-L77
粗略看了下代码,还有很多细节需要完善,建议对照 https://gobysec.net/exp#GoEXP%E6%BC%8F%E6%B4%9E%E6%89%8B%E5%86%8C 完善。 几点建议:
Anyway,尽可能理解自己写的每一行代码~
最后,我目前是独立安全研究员,会在空闲时间关注这个项目。
感谢宝贵的建议!
json
转.py
后通过命令使用时没有通过,我会先解决这个问题;
Is anybody working with add goby parser into pocsuite3?
I am working on it now.
After reading papers by knownsec and debug pocsuite3 program, this work has become smoother.