Skip to content

Instantly share code, notes, and snippets.

View ioncodes's full-sized avatar
😴
Playing with memory regions...

Layle | Luca ioncodes

😴
Playing with memory regions...
View GitHub Profile
#define Uint64 uint64_t
#define Uint32 uint32_t
#define Uint16 uint16_t
#define Uint8 uint8_t
#define Sint64 int64_t
#define Sint32 int32_t
#define Sint16 int16_t
#define Sint8 int8_t
@ioncodes
ioncodes / Vagrantfile
Last active March 19, 2022 20:44
Spinning up Vagrant boxes for driver
Vagrant.configure("2") do |config|
config.vm.guest = :windows # tell Vagrant this is a Windows-based guest
config.vm.communicator = "winrm" # use winrm for management instead of ssh
config.vm.provider 'vmware_workstation' do |p|
p.linked_clone = false
end
config.vm.provider :vmware_desktop do |p|
p.vmx["ethernet0.pcislotnumber"] = "160"
end
@ioncodes
ioncodes / README.md
Last active November 14, 2021 11:17
Using inkwell
git clone https://github.com/llvm/llvm-project
# checkout version/commit to use
cd llvm-project
mkdir build
cd build
# append -DCMAKE_BUILD_TYPE=Release to next command to enable Release build
cmake .. -GNinja # non-Windows
cmake .. # Windows, or specify Visual Studio generator
cmake --build .
@ioncodes
ioncodes / DeadByDaylight_DataMiner.py
Created August 27, 2020 17:59
Data miner script for Dead By Daylight updated for [ByDanngel](https://twitter.com/ByDanngel). I don't own any of this code (Owner: DarkV#5244), I only made a quick update.
from Crypto.Cipher import AES
from http.cookiejar import CookieJar, CookiePolicy
from datetime import datetime
import requests
import json
import base64
import zlib
import os
import os.path
import urllib3

Keybase proof

I hereby claim:

  • I am ioncodes on github.
  • I am layle (https://keybase.io/layle) on keybase.
  • I have a public key ASAdo45LMDck6ie9yyCwqGO5wKkORICsIh1O8hpUdC9mVgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ioncodes on github.
  • I am layle (https://keybase.io/layle) on keybase.
  • I have a public key ASCKkl5XWWlogtDL5zEIpQV0ihBgdB-lDz1NfU7LxZ9p9go

To claim this, I am signing this object:

[Colors]
AbstractTableViewBackgroundColor=#252526
AbstractTableViewHeaderTextColor=#000000
AbstractTableViewSelectionColor=#323238
AbstractTableViewSeparatorColor=#64646F
AbstractTableViewTextColor=#E8EADE
DisassemblyAddressBackgroundColor=#XXXXXX
DisassemblyAddressColor=#BD63C5
DisassemblyAutoCommentBackgroundColor=#XXXXXX
DisassemblyAutoCommentColor=#787878
@ioncodes
ioncodes / mt.rs
Created August 20, 2018 08:44 — forked from yupferris/mt.rs
Mario's Tennis graphics decompression routine in Rust-like pseudo-code. Manual decompilation is a bitch. :)
fn decompress(mut src: *const u8, dst: *mut u8) {
// Skip first 2 bytes (they're always zero)
src += 2;
let original_dst = dst;
// Load bytes_left
let mut bytes_left = ((*src as i32) << 8) + 1;
src += 1;
bytes_left += *src as i32;
@ioncodes
ioncodes / objcparser.re
Created March 31, 2018 09:31
ObjC Header parser regex
([\+\-]) \(([\w ]+)\)([\w]+)[:;]([\w\(\) \:\*]+)?;?
@ioncodes
ioncodes / electra_fix_https_fucked.md
Last active February 27, 2018 14:23
Incase I go full retard again and fuck up apt and cydia with Electra 1.x.x (https support fucked)

Download bootstrap.tar.gz from the electra repo
gunzip
IMPORTANT: Use this to to extract tar:
tar --preserve-permissions -xvkf bootstrap.tar
upload the cydia and apt files to the phone (scp)
reboot and jailbreak!!