This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cls | |
rem Spectre Compatibility Registry Check | |
rem By Peter Chapman <[email protected]> | |
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat /v cadca5fe-87d3-4b96-b7fb-a231484277cc | |
if %ERRORLEVEL% EQU 0 goto :exists | |
color 4 | |
echo FAIL: Registry Key Not Present | |
goto :end | |
:exists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <windows.h> | |
#include <Wincrypt.h> | |
int main(int argc, char *argv[]) | |
{ | |
/* Declare variables */ | |
HCRYPTPROV hCryptProv; | |
BYTE pbData[16]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <tchar.h> | |
#include <windows.h> | |
int main() | |
{ | |
MessageBox(NULL, _T("Testing, 123!"), _T("Test"), MB_OK); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
int main() | |
{ | |
MessageBox(NULL, (LPCWSTR)L"Testing, 123!", (LPCWSTR)L"Test", MB_OK); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <objbase.h> | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
/* Declare variables */ | |
GUID guid; | |
HRESULT result; | |
/* Display a help message */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <rpc.h> | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
/* Declare variables */ | |
UUID uuid; | |
RPC_STATUS result; | |
/* Display a help message */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for f in `ls -X *.zip | sort --version-sort`;\ | |
do rm -rf ~/source/repos/unrar/* ;\ | |
unzip $f -d ~/source/repos/unrar/ ;\ | |
cd ~/source/repos/unrar/ ;\ | |
git add . ;\ | |
git commit -m "Updated to ${f%.zip}" ;\ | |
cd ~/desktop/unrarsrc/ ;\ | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for f in *.tar.gz;\ | |
do rm -rf "${f%.tar.gz}" ;\ | |
mkdir "${f%.tar.gz}" ;\ | |
tar zxvf "$f" -C "${f%.tar.gz}" ;\ | |
zip -r9 "${f%.tar.gz}.zip" "${f%.tar.gz}" ;\ | |
rm -rf "${f%.tar.gz}" ;\ | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This source code contains a authentication routine that will | |
validate Microsoft CD Keys. It is meant that this source code | |
is a learning tool and not a PIRACY tool. It is also meant to | |
show how a large corporation like Microsoft spend MILLIONS of | |
dollars on development and come up with this protection scheme. | |
*BorlandC 3.1 was used to compile this successfully. | |
It is a crime to redistribute these routines in a commercial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
N SHUTDOWN.COM | |
A 100 | |
MOV AX, 1000 | |
MOV SS, AX | |
MOV SP, F000 | |
MOV AX, 5307 | |
MOV BX, 0001 | |
MOV CX, 0003 | |
INT 15 |