diff --git a/modules/CsharpTools.cna b/modules/CsharpTools.cna index 73fda24..fb9ce7c 100644 --- a/modules/CsharpTools.cna +++ b/modules/CsharpTools.cna @@ -13,8 +13,8 @@ popup beacon_bottom { item "DecryptPwd" { $bid = $1['@']; - $dialog = dialog("SharpDecryptPwd", %(type => "-NavicatCrypto",bid => $bid), &SharpDecryptPwd); - drow_combobox($dialog, "type", "Type:", @("-NavicatCrypto", "-TeamViewer", "-FileZilla", "-WinSCP")); + $dialog = dialog("SharpDecryptPwd", %(type => "-WinSCP",bid => $bid), &SharpDecryptPwd); + drow_combobox($dialog, "type", "Type:", @("-TeamViewer", "-FileZilla", "-WinSCP")); dbutton_action($dialog, "Chong!!!"); dialog_show($dialog); } diff --git a/modules/SharpDecryptPwd.exe b/modules/SharpDecryptPwd.exe index fb3b216..d7f55c9 100644 Binary files a/modules/SharpDecryptPwd.exe and b/modules/SharpDecryptPwd.exe differ diff --git a/modules/navi.cna b/modules/navi.cna new file mode 100644 index 0000000..764c662 --- /dev/null +++ b/modules/navi.cna @@ -0,0 +1,15 @@ +sub navicat_password{ + + bexecute_assembly($bid, script_resource("modules/navicatpwd.exe")); + +} +popup beacon_bottom { + menu "NaviDecrypt" { + item "Navicat-Password"{ + $bid = $1['@']; + navicat_password($bid); + } + } +} + + diff --git a/modules/navicatpwd.exe b/modules/navicatpwd.exe new file mode 100644 index 0000000..c574910 Binary files /dev/null and b/modules/navicatpwd.exe differ