求助cccrypt 相关 求解 hlep

请问cccrypt 我怎么打印request 加密后的秘文 和 response 的秘文;
追问:如果我想时时的修改明文内容,有办法通过frida转发给burp ,在burp里面修改完了再把结果返回给Frida吗?
onEnter: function (args) {
if (this.operation == 0) {
console.log(“In buffer:”)
console.log(hexdump(ptr(this.inBuffer), {
length: this.inLength.toInt32(),
header: true,
ansi: true
}))
}
},
onLeave: function (retVal) {
if (this.operation == 1) {
console.log(“Out buffer:”)
console.log(hexdump(ptr(this.outBuffer), {
length: Memory.readUInt(this.outCountPtr),
header: true,
ansi: true
}))
}
}

已经解决了 ;关贴吧;