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
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 |
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
// 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 |
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
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 |
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
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") { |
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
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); |
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
static string CreateDownloadLink(string File) // Important to note AnonFile has a 20gb file size limit (which is overkill for most applications) | |
{ | |
string ReturnValue = string.Empty; | |
try | |
{ | |
using (WebClient Client = new WebClient()) | |
{ | |
byte[] Response = Client.UploadFile("https://api.anonfiles.com/upload", File);// Thanks noobencoder for pointing out that Anonfile changed domains since when I originally wrote this 3 years ago. It's fixed now. | |
string ResponseBody = Encoding.ASCII.GetString(Response); | |
if (ResponseBody.Contains("\"error\": {")) |
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
using System; | |
using System.Net; | |
using System.Text.RegularExpressions; | |
namespace Proxy_Scraper | |
{ | |
class Engine | |
{ | |
public static string ScrapeProxies() | |
{ |