0Chencc / DaE

CTFCrackTools 's BurpSuite Plugin - Decode and Encode
GNU General Public License v3.0
79 stars 6 forks source link

DaE - Decode and Encode

CTFCrackTools 's BurpSuite Plugin - Decode and Encode

Many people suggested that I develop BurpSuite version, so I ported this tool to Burp

License: GPL v3 language

Support

Decode/Encode as

Decrypt as

Plugin

You can write your own plug-in to import into this framework

(Due to jython problems, python3 is not supported)

Required method:main,author_info

#-*- coding:utf-8 -*-
#demo
def main(input,a,b,c):
    return a+b+c

#authorinfo
def author_info():
    info = {
    "author":"0chen",
    "name":"test_version",
    "key":["a","b","c"],
    "describe":"plugin describe"
    }
    return info

Usage