Skip to content

Instantly share code, notes, and snippets.

/**
* @fikir Burak ONGAN
* @tarih 02.01.2013
* @yazar Eray ARSLAN
*/
#include <iostream>
#include <cstdlib>
#include <conio.h>
#include <time.h>
@erayarslan
erayarslan / yilan_medition.cpp
Created July 17, 2014 10:43
Yılan mEdition
/**
* @fikir Burak ONGAN
* @tarih 02.01.2013
* @yazar Eray ARSLAN
*
* @surum mEdition - Musa Edition
* @yeni ESC'ye basinca oyunun durmasi ve devam etmesi
*/
#include <iostream>
/*
* @author Eray Arslan
* @date 08.11.2012
* @mail relf-@hotmail.com
*/
#include <iostream>
using namespace std;
@erayarslan
erayarslan / form_post.py
Created July 17, 2014 10:44
mechanize Form Post
import mechanize
browser = mechanize.Browser()
browser.set_handle_robots(False)
browser.open('http://www.erayarslan.com/notmine')
browser.select_form(nr=0)
browser.form['message'] = 'ohhh luuu'
browser.submit()
#include <windows.h>
#include "md5.h"
#include "include/mysql.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
MD5 sifrele;
@erayarslan
erayarslan / palette_term.cpp
Created July 17, 2014 10:45
Console Palette
#include <iostream>
#include <conio.h>
#include <time.h>
#include <windows.h>
//buyukluk
#define bx 10
#define by 50
char bos=' ';
char dolu='O';
using namespace std;
@erayarslan
erayarslan / dor.pwn
Created July 17, 2014 10:47
Death or Alive
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Gebermissin/Yasiyorsun"
#define AUTHOR "Eray Arslan"
#define VERSION "1.0"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
@erayarslan
erayarslan / msgbox.cpp
Created July 17, 2014 10:47
MessageBox
#include <iostream>
#include <windows.h>
using namespace std;
int mesaj();
int main()
{
int cevap=mesaj();
@erayarslan
erayarslan / caps_lock.cpp
Created July 17, 2014 10:48
Caps Lock Checker
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
if (GetKeyState(VK_CAPITAL)==1)
{
cout<<"Acik";
@erayarslan
erayarslan / _victim.cpp
Created July 17, 2014 10:49
Memory Hack Victim
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int veri=54; //Mudahale edecegimiz degisken
while(1)
{