Skip to content

Instantly share code, notes, and snippets.

View WillDawnlll's full-sized avatar

Dreaming4Morning WillDawnlll

View GitHub Profile
@WillDawnlll
WillDawnlll / highlight_calls.py
Created August 20, 2020 02:56 — forked from jthuraisamy/highlight_calls.py
IDAPython Script to highlight function calls.
"""
IDAPython Script to highlight function calls.
Re-implemented by jthuraisamy (not the original author).
Install to %IDADIR%\plugins\highlight_calls.py.
Run by pressing Ctrl+Alt+H or go to Options -> Highlight Call Instructions.
"""
class HighlightHandler(idaapi.action_handler_t):
@WillDawnlll
WillDawnlll / idapython_cheatsheet.md
Created August 20, 2020 08:45 — forked from icecr4ck/idapython_cheatsheet.md
Cheatsheet for IDAPython
@WillDawnlll
WillDawnlll / decompress.ps1
Created November 4, 2020 10:51 — forked from vortexau/decompress.ps1
Powershell to decompress DEFLATE data
$base64data = "insert compressed and base64 data here"
$data = [System.Convert]::FromBase64String($base64data)
$ms = New-Object System.IO.MemoryStream
$ms.Write($data, 0, $data.Length)
$ms.Seek(0,0) | Out-Null
$sr = New-Object System.IO.StreamReader(New-Object System.IO.Compression.DeflateStream($ms, [System.IO.Compression.CompressionMode]::Decompress))
while ($line = $sr.ReadLine()) {
@WillDawnlll
WillDawnlll / monokai_pro_machine.vim
Created November 25, 2020 02:35
A vim color scheme based on Monokai Pro Filter Machine
" Vim color file
" Converted from Textmate theme using Coloration v0.4.0 (http://github.com/sickill/coloration)
"
" Based on the machine filter from https://monokai.pro
" Edited a little by aaether
" For best results set termguicolors in your vimrc
set background=dark
highlight clear
@WillDawnlll
WillDawnlll / .tmux.clipboard
Created February 9, 2021 03:57 — forked from metacritical/.tmux.clipboard
My tmux config
# configuration for osx clipboard support
set-option -g default-command "reattach-to-user-namespace -l sh"
@WillDawnlll
WillDawnlll / HuddledTricks.psm1
Created June 8, 2021 07:01 — forked from Jaykul/HuddledTricks.psm1
Stupid PowerShell Tricks
#Requires -version 2.0
## Stupid PowerShell Tricks
###################################################################################################
add-type @"
using System;
using System.Runtime.InteropServices;
public class Tricks {
[DllImport("user32.dll")]
private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);