Skip to content

Instantly share code, notes, and snippets.

View fuzyll's full-sized avatar
🦀

Alexander Taylor fuzyll

🦀
View GitHub Profile
@fuzyll
fuzyll / make_ghidra_app.sh
Last active December 4, 2023 21:09
Script to automatically create a MacOS Application Bundle out of a Ghidra release archive.
#!/usr/bin/env bash
# make_ghidra_app.sh | MacOS App Bundle Creator Script
#
# Copyright (c) 2019 Alexander Taylor <ajtaylor@fuzyll.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
@fuzyll
fuzyll / convert-jekyll-to-zola.rb
Created August 29, 2021 20:03
Short Ruby script to convert blog posts with Jekyll frontmatter into blog posts with Zola frontmatter.
#!/usr/bin/env ruby
require "yaml"
#
# We want to convert this:
#
#---
#layout: post
#published: true
@fuzyll
fuzyll / nes.py
Created July 25, 2016 04:24
Updated version of Binary Ninja's NES plugin (tries to handle more mappers).
# Copyright (c) 2015-2016 Vector 35 LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
@fuzyll
fuzyll / rbc-disasm.rb
Created September 6, 2016 18:36
Rubinius 2.5.2 Disassembler
# Rubinius 2.5.2 disassembler created to solve Sullivan Square in BKP2015 by fuzyll
module Rubinius
# from vm/instructions.def
# used $(grep -e "^instruction" instructions.def | cut -d" " -f2) and some regexes/multiline editing in vim to get this
InstructionMap = {
"0" => { :name => "noop", :args => [] },
"1" => { :name => "push_nil", :args => [] },
"2" => { :name => "push_true", :args => [] },
"3" => { :name => "push_false", :args => [] },
@fuzyll
fuzyll / smb3-notes-2016-07-24.md
Created July 25, 2016 07:03
My notes from DwangoAC's stream on 2016-07-24

@fuzyll's notes from @MrTasBot's late-night stream on 2016-07-24

I wrote these notes right as the stream ended so we could capture the knowledge we gained after streaming for 2-3 hours. I'm hoping to revisit these myself and get to the bottom of things, but we'll see if time permits. In the meantime, a lot of other people in the stream found watching the process helpful. If anyone else wants to keep poking at this and moving forward, go for it! Hopefully, these notes will help.

Files