Skip to content

Commit

Permalink
release knife v1.8
Browse files Browse the repository at this point in the history
支持复杂格式的自定义payload以base64格式进行配置,可通过Config_Custom_Payload_Base64配置
使用模拟输入(Robot)来实现SQLMap等外部命令的输入,以支持命令行的历史记录,方便自行编辑命令(windows\kali\ubuntu测试通过,MAC未通过)
支持以二级菜单显示所有knife的菜单,减少对burp右键菜单的占用,可通过Put_MenuItems_In_One_Menu参数配置

json参数遍历逻辑优化,使Insert XSS的功能可以更好地支持JSON参数
updateCookie功能中输入值逻辑判断优化
setcookie的逻辑优化避免rehook操作,以修复在logger++中一个请求出现2次的问题
U2C逻辑优化,以修复tab消失的bug
openwithBrower逻辑优化,尽量避免中文导致的getSelectionBounds不准确问题,url拼接逻辑优化。
调整菜单顺序,将个人使用频率高的菜单前移
  • Loading branch information
bit4woo committed May 25, 2020
1 parent db588a3 commit ba40905
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>com.bit4woo.burp</groupId>
<version>1.7</version>
<version>1.8</version>

<repositories>
<repository>
Expand Down
2 changes: 1 addition & 1 deletion src/U2C/U2CTabFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public Component getUiComponent()
@Override
public boolean isEnabled(byte[] content, boolean isRequest)
{
System.out.println("isEnabled called");
//System.out.println("isEnabled called");
if (isJSON(content, isRequest)) {
return true;
}
Expand Down

0 comments on commit ba40905

Please sign in to comment.