Skip to content

Instantly share code, notes, and snippets.

View mrexodia's full-sized avatar
❤️
‌‌

Duncan Ogilvie mrexodia

❤️
‌‌
View GitHub Profile
@mrexodia
mrexodia / ConsoleColor.h
Created May 25, 2019 14:44
ConsoleColor
//Copyleft Vincent Godin
//https://www.codeproject.com/Articles/16431/Add-color-to-your-std-cout
#pragma once
#include <iostream>
#ifdef _WIN32
#include <windows.h>
inline void setAttributes(unsigned int attributes)
@mrexodia
mrexodia / shades.ini
Last active April 25, 2019 11:50
Shades of gray by Joao Marques (http://i.imgur.com/ne8ZWpx.png)
[Colors]
AbstractTableViewBackgroundColor=#808080
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#0F9FFF
AbstractTableViewSeparatorColor=#000000
AbstractTableViewTextColor=#000000
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#000000
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#008000
@mrexodia
mrexodia / darktheme.ini
Last active March 10, 2019 04:29
Dark Theme by tr4ceflow (https://i.imgur.com/1Jf38zh.png)
[Colors]
AbstractTableViewBackgroundColor=#272822
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#363930
AbstractTableViewSeparatorColor=#555A4C
AbstractTableViewTextColor=#FFFFFF
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#AE81FF
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#808080
@mrexodia
mrexodia / Deck - True Draco Demise.txt
Created October 8, 2018 20:31
Deck - True Draco Demise.txt
MAINBOARD
3 Amano-Iwato
3 Card of Demise
3 Disciples of the True Dracophoenix
3 Dragonic Diagram
3 True Draco Apocalypse
3 True Draco Heritage
2 Anti-Spell Fragrance
2 Cosmic Cyclone
2 Ignis Heat, the True Dracowarrior
0:000> lm
start end module name
00400000 00407000 image00400000 (deferred)
740c0000 7420d000 MSVBVM50 (pdb symbols) c:\symbols\msvbvm50.pdb\3AEF4F631\msvbvm50.pdb
77120000 771ab000 OLEAUT32 (deferred)
774e0000 7761e000 ole32 (deferred)
77c10000 77c68000 msvcrt (deferred)
77dd0000 77e6b000 ADVAPI32 (deferred)
77e70000 77f03000 RPCRT4 (deferred)
77f10000 77f59000 GDI32 (deferred)
@mrexodia
mrexodia / build-git.sh
Last active February 5, 2018 17:05 — forked from pescobar/build-git.sh
compile git with openssl instead of gnutls (Ubuntu 14.04) https://askubuntu.com/a/1003308/774721
#!/usr/bin/env bash
# Clear out all previous attempts
rm -rf "/tmp/source-git/"
# Add PPA for latest git
sudo add-apt-repository --enable-source ppa:git-core/ppa
sudo apt-get update
# Get the dependencies for git, then get openssl
#include "FindPattern.h"
#include <algorithm>
#include <cctype>
#include <string>
using namespace std;
struct PatternByte
{
struct PatternNibble
@mrexodia
mrexodia / UnityCli.cs
Created October 22, 2017 23:13
UnityCli
using System;
using System.IO;
using System.Linq;
using System.Threading;
using System.Diagnostics;
using System.Text.RegularExpressions;
namespace UnityCli
{
public static class Program
@mrexodia
mrexodia / analysis.md
Last active July 12, 2017 19:18
The Legend of Zelda: Breath of the Wild CEMU 1.8.0b [Multi-Lang] - HZolomon malware analysis
; struct LIST_HEAD //list_head points here {
; VEH_ENTRY* FLink;
; VEH_ENTRY* BLink;
; }
;
; struct VEH_ENTRY { //cur_entry points here
; VEH_ENTRY* FLink;
; VEH_ENTRY* BLink;
; DWORD Count;
; DWORD Alignment;