-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
抛弃过期的旧依赖,引用新的依赖 修复一处代码不规范问题
- Loading branch information
Showing
14 changed files
with
462 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package burp; | ||
|
||
import burp.fuction.PythonFunc; | ||
import burp.fuction.PythonFunc; | ||
|
||
import java.io.File; | ||
|
||
/** | ||
* @author linchen | ||
*/ | ||
public class Config { | ||
public final static String VERSION = "1.1.2"; | ||
public final static String SLOGAN = ""; | ||
public final static String ABOUT = | ||
"Author:0chen(@0chencc)\n" + | ||
"Twitter:@0chencc\n" + | ||
"GitHub:https://github.com/0Chencc\n" + | ||
"Wechat Official Accounts(公众号):XizhouPoetry\n" + | ||
"Repository Url:https://github.com/0Chencc/CTFCrackTools\n" + | ||
"米斯特安全团队招CTF选手,有意向联系[email protected]"; | ||
public final static File PLUGIN_FILE = new File("ctfcracktools_plugins.json"); | ||
public final static File SETTING_FILE = new File("ctfcracktools_setting.json"); | ||
|
||
public static PythonFunc pyFunc = new PythonFunc(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package ctfcracktools.fuction | ||
|
||
class CodeMode { | ||
companion object{ | ||
const val CRYPTO_FENCE = "Fence" | ||
const val CRYPTO_CAESAR = "CaesarCode" | ||
const val CRYPTO_PIG = "PigCode" | ||
const val CRYPTO_ROT13 = "ROT13" | ||
const val CRYPTO_HEX_2_STRING = "Hex2String" | ||
const val CRYPTO_STRING_2_HEX = "String2Hex" | ||
const val CRYPTO_UNICODE_2_ASCII = "Unicode2Ascii" | ||
const val CRYPTO_ASCII_2_UNICODE = "Ascii2Unicode" | ||
const val CRYPTO_REVERSE = "Reverse" | ||
|
||
const val DECODE_MORSE = "MorseDecode" | ||
const val DECODE_BACON = "BaconDecode" | ||
const val DECODE_BASE64 = "Base64Decode" | ||
const val DECODE_BASE32 = "BASE32Decode" | ||
const val DECODE_URL = "UrlDecode" | ||
const val DECODE_UNICODE = "UnicodeDecode" | ||
const val DECODE_HTML = "HtmlDecode" | ||
const val DECODE_VIGENERE = "VigenereDeCode" | ||
|
||
const val ENCODE_MORSE = "MorseEncode" | ||
const val ENCODE_BACON = "BaconEncode" | ||
const val ENCODE_BASE64 = "Base64Encode" | ||
const val ENCODE_BASE32 = "Base32Encode" | ||
const val ENCODE_URL = "UrlEncode" | ||
const val ENCODE_UNICODE = "UnicodeEncode" | ||
const val ENCODE_HTML = "HtmlEncode" | ||
const val ENCODE_VIGENERE = "VigenereEnCode" | ||
} | ||
} |
Oops, something went wrong.