Skip to content

Instantly share code, notes, and snippets.

View XenocodeRCE's full-sized avatar
🌊
hψ=eψ

Mr Roux XenocodeRCE

🌊
hψ=eψ
View GitHub Profile
/*
* Name: SigScanSharp
* Author: Striekcarl/GENESIS @ Unknowncheats
* Date: 14/05/2017
* Purpose: Find memory patterns, both individually or simultaneously, as fast as possible
*
* Example:
* Init:
* Process TargetProcess = Process.GetProcessesByName("TslGame")[0];
* SigScanSharp Sigscan = new SigScanSharp(TargetProcess.Handle);
using System;
using System.Linq;
/// <summary>
/// BahNahNah
/// Example sig:
/// 01 02 ?3 04
/// will match with
/// 01 02 A3 04
/// 01 02 03 04
@trcio
trcio / NetsealProvider.php
Last active January 31, 2017 12:02
Scroll all the way down for an example - A wrapper for Netseal's new v2 API - http://seal.nimoru.com/docs/index.php
<?php
// Created by Positron Software
// Wraps all endpoints described at http://seal.nimoru.com/docs/index.php
// Last updated 11/23/2016
class NetsealProvider
{
const ENDPOINT = 'http://seal.nimoru.com/Remote2/';