Skip to content

Commit

Permalink
修复了部分猪圈密码解密失败的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
0Chencc committed Apr 5, 2022
1 parent 9ee26ce commit cf7b997
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'org.ctfcracktools'
version '1.1.2'
version '1.1.3'
buildscript {
ext.kotlin_version = '1.4.10'

Expand Down
2 changes: 1 addition & 1 deletion src/burp/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author linchen
*/
public class Config {
public final static String VERSION = "1.1.2";
public final static String VERSION = "1.1.3";
public final static String SLOGAN = "";
public final static String ABOUT =
"Author:0chen(@0chencc)\n" +
Expand Down
2 changes: 1 addition & 1 deletion src/burp/fuction/CoreFunc.kt
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class CoreFunc{
val keymap= mapOf('A' to 'J','B' to 'K','C' to 'L','D' to 'M',
'E' to 'N','F' to 'O','G' to 'P','H' to 'Q','I' to 'R','J' to 'A','K' to 'B','L' to 'C',
'M' to 'D','N' to 'E','O' to 'F','P' to 'G','Q' to 'H','R' to 'I','S' to 'W','T' to 'X',
'U' to 'Y','V' to 'Z','W' to 'S','X' to 'T')
'U' to 'Y','V' to 'Z','W' to 'S','X' to 'T','Y' to 'U','Z' to 'V')
val word = input.toCharArray()
for (i in word.indices){
if (word[i].isUpperCase()){
Expand Down

0 comments on commit cf7b997

Please sign in to comment.