Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0Chencc/DaE
CTFCrackTools 's BurpSuite Plugin - Decode and Encode
https://github.com/0Chencc/DaE
Last synced: 3 months ago
JSON representation
CTFCrackTools 's BurpSuite Plugin - Decode and Encode
- Host: GitHub
- URL: https://github.com/0Chencc/DaE
- Owner: 0Chencc
- License: gpl-3.0
- Created: 2021-02-10T07:48:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-05T16:42:51.000Z (over 2 years ago)
- Last Synced: 2024-05-13T20:33:51.791Z (6 months ago)
- Language: Java
- Size: 2.1 MB
- Stars: 80
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - 0Chencc/DaE - CTFCrackTools 's BurpSuite Plugin - Decode and Encode (Java)
README
# DaE - Decode and Encode
[CTFCrackTools](https://github.com/Acmesec/CTFCrackTools) 's BurpSuite Plugin - Decode and EncodeMany people suggested that I develop BurpSuite version, so I ported this tool to Burp
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://github.com/0Chencc/DaE/blob/main/LICENSE)
[![language](https://img.shields.io/badge/Language-Java/Kotlin-orange.svg)](https://github.com/0Chencc/DaE/)
# Support***Decode/Encode as***
- MorseCode- BaconCode
- Base64
- Base32
- URL
- Unicode
- HtmlCode
- VigenereCode
......
***Decrypt as***
- Fence
- Casar
- PigCode
- Rot13
- Hex2String
- String2Hex
- Unicode2Ascii
- Ascii2Unicode
- Reverse
......
***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*
```python
#-*- 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
![](img/1.png)