Releases: yxdm02/EnhancedBurpGPT
Releases · yxdm02/EnhancedBurpGPT
EnhancedBurpGPT-V3.0
具备所有功能的BurpGPT
EnhancedBurpGPT2.5
SSL证书验证修复:在API设置面板中增加了"禁用SSL证书验证"选项,可以解决某些网络环境下的证书验证失败问题
EnhancedBurpGPT2.0
修复Error fetching models: cannot make memory view because object does not have thebuffer interface此类通用错误。

原因:
1.此BP扩展使用的是Jython,Jpython是建立在Java虚拟机上的,它的一些对象实际上是Java对象的包装器,一些行为可能与标准的Python写法不同,特别是在字节处理、编码和解码方面。
2.Python3中,decode()通常用于bytes对象,以将其转换为字符串。而Jpython中,尤其是更早的Jpython版本,urllib2.urlopen().read()返回的对象可能没有实现decode()方法所需的buffer接口。
解决方案:
将.decode('utf-8')替换为str(),避免依赖buffer协议。
现已解决:

EnhancedBurpGPT1.0
send to gpt分析功能
支持自定义prompt、apiurl、apikey、model等
支持自定义上下文大小