Skip to content

Instantly share code, notes, and snippets.

View Compro-Prasad's full-sized avatar
🔨
Building stuff. Mostly software.

Compro Prasad Compro-Prasad

🔨
Building stuff. Mostly software.
View GitHub Profile
@Compro-Prasad
Compro-Prasad / simple_brute_force.cpp
Created September 5, 2016 12:37
Program to character based brute force attempts to break your password. It doesn't store your passwords.
/*
This program is free to modify, distribute, redistribute and
execute on any machine on this planet. So feel free and go ahead.
*/
/*
This is not real hacking with the help of brute force algorithm.
But i would say i have neither seen a brute force attack nor
its source code.
@Compro-Prasad
Compro-Prasad / pascal_triangle.cpp
Created August 29, 2016 15:04
C code to generate the largest pascal's triangle on the screen
#include <stdio.h>
#include <math.h>
#ifndef LINUX
#define LINUX
#endif
/* uncomment the following line if you get compilation errors */
//#undef LINUX