diff --git a/README.md b/README.md index cafab96..d613d6c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,61 @@ +## 2021.11更新v0.41 + +1.优化listview选择列表事件,可通过上下方向键进行选择, + +由于使用方向键可以移动光标位置,所以可以通过监听onKeyReleased事件来实现,具体实现逻辑如下: + +添加监听事件: + +```java +onKeyReleased="#mListView1Click2" +``` + +事件定义为: + +```java +public void mListView1Click2(KeyEvent event) +``` + +函数为: + +```java +mListView1.getSelectionModel().getSelectedItem() +``` + +通过读取光标来进行获取listview选中的内容 + +2.去除了文件中会显示.DS_store文件 + +3.增加druid1.0.16版本及以后的解密方式 + +4.增加编码模块(Unicode、URL、Base64、Hex、Html、ascii编码),由于平时编码工具很少,要么是burp的编码模块,很难用,要么是某些在线网站,在线网站进行编码,需要有互联网,就导致了在一些内网环境中无法进行编码、解码,所以写了进去,简单介绍下: + +Unicode模块 +![image](https://user-images.githubusercontent.com/48286013/142168767-f1c1d0a0-bd5e-4cf6-ac81-614ad2097729.png) +![image](https://user-images.githubusercontent.com/48286013/142168787-4cecf2f2-a438-441a-9284-1e2023568e0d.png) + +URL模块 +![image](https://user-images.githubusercontent.com/48286013/142168842-636decd2-8274-40b7-94cc-71cf3310a6a3.png) +![image](https://user-images.githubusercontent.com/48286013/142168853-52ebffb1-db60-4bb0-90a8-6b4df9351cc5.png) + +Base64模块 +![image](https://user-images.githubusercontent.com/48286013/142168894-7646ae1c-49bd-43c9-a4d3-55d5ea38de32.png) +![image](https://user-images.githubusercontent.com/48286013/142168912-696026a1-062c-435a-87fb-d18adf56696c.png) + +Hex模块 +![image](https://user-images.githubusercontent.com/48286013/142168964-9fdefedb-2aac-4f82-ae2a-eaee5769ccf7.png) +![image](https://user-images.githubusercontent.com/48286013/142168988-c4a3c648-bfa6-4f80-8650-a004dd31490b.png) + +Html模块 +![image](https://user-images.githubusercontent.com/48286013/142169035-04363225-dc93-4723-81ba-93df392d441b.png) +![image](https://user-images.githubusercontent.com/48286013/142169056-c8e3587f-044c-4bdb-909f-a246afac9d8d.png) + +ascii模块 +![image](https://user-images.githubusercontent.com/48286013/142169215-d5441ec3-2c00-4fd4-8ea5-8cc3a800fe35.png) +![image](https://user-images.githubusercontent.com/48286013/142169093-f7fe18f0-8cfe-4002-bd9b-619abecaf93d.png) + + + ## 2021.11.15更新 v0.4 1.完善密码模块对druid密码的解密,在druid 1.0.16版本及之前 ![image](https://user-images.githubusercontent.com/48286013/141799695-c135ea10-7a0c-4276-bc9c-4ecbec16e465.png)