I hereby claim:
- I am reb311ion on github.
- I am reb311ion (https://keybase.io/reb311ion) on keybase.
- I have a public key ASBArrJuAMJiwEUze3K1tk44uZqTMtDYzo25-Ol_RXS_-Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include <tchar.h> | |
#include <windows.h> | |
#include <iostream> | |
#include <string> | |
BOOL AdjustCurrentProcessToken(void) | |
{ | |
HANDLE hToken; | |
TOKEN_PRIVILEGES sTP; |
using System; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
namespace Tinycc | |
{ | |
class Program | |
{ |
using System; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
namespace Transfersh | |
{ | |
class Program | |
{ | |
static int Main(string[] args) | |
{ |
/* | |
Disclaimer | |
I'm not responsible for any actions, and or damages, caused by | |
this code. You bear the full responsibility of your actions and | |
acknowledge that this code was created for demonstration purposes | |
only and its main purpose is NOT to be used maliciously, or on any | |
system that you do not own, or have the right to use. | |
*/ | |
using System; |
from z3 import * | |
import binascii | |
zs = Solver() | |
findInputLen = 19 | |
findInput = [BitVec("findInput[%d]" % i,8)for i in range(0,findInputLen)] | |
SumInt = BitVec("SumInt",32) | |
forbiddenCharsList = "|}{\\/\"\'!@#%^&*()=+- ,;~><`:.[]" |