Textractor_test/GUI/mainwindow.cpp

128 lines
3.6 KiB
C++
Raw Normal View History

2018-07-22 06:40:16 +08:00
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "QCoreApplication"
2018-07-24 13:57:54 +08:00
#include "QTextBrowser"
2018-07-23 07:53:51 +08:00
#include "QMessageBox"
2018-07-24 13:57:54 +08:00
#include "QComboBox"
2018-07-24 03:25:02 +08:00
#include "QLineEdit"
#include "QInputDialog"
#include <QCursor>
#include <Qt>
2018-07-23 07:53:51 +08:00
#include <Windows.h>
2018-07-24 03:25:02 +08:00
#include <qdebug.h>
#include <Psapi.h>
2018-07-23 07:53:51 +08:00
#include "../texthook/host.h"
2018-07-22 06:40:16 +08:00
2018-07-24 13:57:54 +08:00
QMainWindow* mainWindow;
QComboBox* processCombo;
QComboBox* ttCombo;
QTextBrowser* textOutput;
2018-07-24 03:25:02 +08:00
QString GetModuleName(DWORD processId, HMODULE module = NULL)
{
2018-07-26 01:46:59 +08:00
HANDLE handle = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processId);
wchar_t buffer[MAX_PATH];
GetModuleFileNameExW(handle, module, buffer, MAX_PATH);
CloseHandle(handle);
return QString::fromWCharArray(wcsrchr(buffer, L'\\') + 1);
2018-07-24 03:25:02 +08:00
}
2018-07-24 13:57:54 +08:00
QString ProcessString(DWORD processId)
2018-07-24 03:25:02 +08:00
{
2018-07-26 01:46:59 +08:00
return QString("%1: %2").arg(QString::number(processId), GetModuleName(processId));
2018-07-24 13:57:54 +08:00
}
QString TextThreadString(TextThread* thread)
{
2018-07-26 01:46:59 +08:00
ThreadParameter tp = thread->GetThreadParameter();
return QString("%1:%2:%3:%4:%5: ").arg(
QString::number(thread->Number()),
QString::number(tp.pid),
QString::number(tp.hook, 16),
QString::number(tp.retn, 16),
QString::number(tp.spl, 16)
).toUpper();
2018-07-24 03:25:02 +08:00
}
2018-07-22 06:40:16 +08:00
MainWindow::MainWindow(QWidget *parent) :
2018-07-26 01:46:59 +08:00
QMainWindow(parent),
ui(new Ui::MainWindow),
hostSignaller(new HostSignaller)
2018-07-22 06:40:16 +08:00
{
2018-07-26 01:46:59 +08:00
ui->setupUi(this);
mainWindow = this;
processCombo = mainWindow->findChild<QComboBox*>("processCombo");
ttCombo = mainWindow->findChild<QComboBox*>("ttCombo");
textOutput = mainWindow->findChild<QTextBrowser*>("textOutput");
2018-07-24 03:25:02 +08:00
2018-07-26 01:46:59 +08:00
hostSignaller->Initialize();
connect(hostSignaller, &HostSignaller::AddProcess, this, &MainWindow::AddProcess);
connect(hostSignaller, &HostSignaller::RemoveProcess, this, &MainWindow::RemoveProcess);
connect(hostSignaller, &HostSignaller::AddThread, this, &MainWindow::AddThread);
connect(hostSignaller, &HostSignaller::RemoveThread, this, &MainWindow::RemoveThread);
connect(hostSignaller, &HostSignaller::ThreadOutput, this, &MainWindow::ThreadOutput);
Host::Open();
2018-07-22 06:40:16 +08:00
}
MainWindow::~MainWindow()
{
2018-07-26 01:46:59 +08:00
Host::Close();
delete hostSignaller;
delete ui;
2018-07-22 06:40:16 +08:00
}
2018-07-23 07:53:51 +08:00
void MainWindow::AddProcess(unsigned int processId)
2018-07-24 13:57:54 +08:00
{
2018-07-26 01:46:59 +08:00
processCombo->addItem(ProcessString(processId));
2018-07-24 13:57:54 +08:00
}
void MainWindow::RemoveProcess(unsigned int processId)
2018-07-24 13:57:54 +08:00
{
2018-07-26 01:46:59 +08:00
processCombo->removeItem(processCombo->findText(QString::number(processId) + ":", Qt::MatchStartsWith));
2018-07-24 13:57:54 +08:00
}
void MainWindow::AddThread(TextThread* thread)
2018-07-24 13:57:54 +08:00
{
2018-07-26 01:46:59 +08:00
ttCombo->addItem(
TextThreadString(thread) +
QString::fromWCharArray(Host::GetHookName(thread->GetThreadParameter().pid, thread->GetThreadParameter().hook).c_str())
);
2018-07-24 13:57:54 +08:00
}
void MainWindow::RemoveThread(TextThread* thread)
2018-07-24 13:57:54 +08:00
{
2018-07-26 01:46:59 +08:00
int threadIndex = ttCombo->findText(QString::number(thread->Number()) + ":", Qt::MatchStartsWith);
ttCombo->removeItem(threadIndex);
if (threadIndex == ttCombo->currentIndex())
{
ttCombo->setCurrentIndex(0);
on_ttCombo_activated(0);
}
}
void MainWindow::ThreadOutput(TextThread* thread, QString output)
{
2018-07-26 01:46:59 +08:00
if (ttCombo->currentText().startsWith(TextThreadString(thread)))
{
textOutput->moveCursor(QTextCursor::End);
textOutput->insertPlainText(output);
textOutput->moveCursor(QTextCursor::End);
}
2018-07-24 13:57:54 +08:00
}
2018-07-24 03:25:02 +08:00
void MainWindow::on_attachButton_clicked()
2018-07-23 07:53:51 +08:00
{
2018-07-26 01:46:59 +08:00
Host::InjectProcess(QInputDialog::getInt(this, "Process ID?", "You can find this under Task Manager -> Details"));
2018-07-24 13:57:54 +08:00
}
void MainWindow::on_detachButton_clicked()
{
2018-07-26 01:46:59 +08:00
Host::DetachProcess(processCombo->currentText().split(":")[0].toInt());
2018-07-24 13:57:54 +08:00
}
void MainWindow::on_ttCombo_activated(int index)
{
2018-07-26 01:46:59 +08:00
textOutput->setText(QString::fromWCharArray(Host::GetThread(ttCombo->itemText(index).split(":")[0].toInt())->GetStore().c_str()));
textOutput->moveCursor(QTextCursor::End);
2018-07-23 07:53:51 +08:00
}