Skip to content

Instantly share code, notes, and snippets.

View andrewpisula's full-sized avatar

Andrew Pisula andrewpisula

View GitHub Profile
@andrewpisula
andrewpisula / Program.cs
Last active November 4, 2021 21:07
Very crude homemade encryption I made in my free time.
using System;
using System.Text;
namespace encryption_poc_lol
{
class Program
{
// Written by Mysteriousss in 30 minutes on 11/2/2021. Uploading this to GitHub at 10:04 PM
// Discord : ζ͜͡๖ۣmysteriou็็็s็็็ss#4579
@andrewpisula
andrewpisula / dllmain.cpp (print exploit)
Created April 23, 2020 16:10
A simple exploit that prints to the developer console in ROBLOX, written in C++.
// dllmain.cpp : Defines the entry point for the DLL application.
#define _CRT_SECURE_NO_WARNINGS
#include <Windows.h>
#include <string>
#include <iostream>
#define aslr(address) address - 0x400000 + (DWORD)GetModuleHandle(NULL)
#define print_msg 0
#define error_msg 3
@andrewpisula
andrewpisula / Program.cs
Created April 7, 2020 01:25
this was written by me two years ago, don't base my current knowledge off of this code. I have improved sense then.
using System;
using System.IO;
using System.Text;
// This code detects cyber source, axon source, and ryse source.
// this was written by me two years ago, don't base my current knowledge off of this code. I have improved sense then.
namespace AxonDetector
{
class Program
@andrewpisula
andrewpisula / Lua C Parser
Created November 23, 2018 16:46
A simple lua c parser I wrote when I was bored.
DWORD HandlerState;
void LuaC_Handler(std::vector<std::string> it) {
if (HandlerState == NULL) {
HandlerState = rlua_newthread(rawstate);
}
if (it.at(0) == "getglobal") {
rlua_getglobal(HandlerState, it.at(1).c_str());
}
if (it.at(0) == "getfield") {
@andrewpisula
andrewpisula / Cyberhound's Failure
Created November 22, 2018 02:20
Cyberhound sent this to a group chat in a file named 'myfailure.txt'. This is supposed to be a fly script converted to lua-c but he failed. This is a incomplete.
add_command(adminpower::modisterator, "fly", "fly ~ makes you fly", [](std::vector<std::string> args, std::string caller)->std::string {
if (!initiated_flying) {
initiated_flying = true;
rlua_getservice(r_L, "Players");
rlua_getfield(r_L, -1, "LocalPlayer");
rlua_getfield(r_L, -1, "Character");
rlua_getfield(r_L, -1, "Humanoid");
rlua_getfield(r_L, -1, "Died");
rlua_getfield(r_L, -1, "connect");
rlua_pushvalue(r_L, -2);
@andrewpisula
andrewpisula / Download Link Creator.cs
Last active October 3, 2021 02:53
C# Function to upload a file to anonfile.com
@andrewpisula
andrewpisula / Engine.cs
Created June 18, 2018 14:16
A Proxy Scraper created by mysterious.
using System;
using System.Net;
using System.Text.RegularExpressions;
namespace Proxy_Scraper
{
class Engine
{
public static string ScrapeProxies()
{