This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
TARGET = "https://?/forgot_password.php" | |
EMAIL1 = "" | |
EMAIL2 = "" | |
payload = { | |
'email[]': [EMAIL1, EMAIL2], | |
'submit': 'Reset Password' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main: | |
li $v0, 4 | |
la $a0, prompt | |
syscall | |
li $v0, 5 | |
syscall | |
move $t0, $v0 | |
lw $t1, a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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)) { |