Skip to content

Instantly share code, notes, and snippets.

@poul1x
poul1x / IDAExportDesktop.md
Last active January 27, 2021 23:45
IDA Pro: how to export desktop
  1. Save your desktop in IDA: Windows -> Save Desktop
  2. Open registry editor (regedit.exe)
  3. Go to Computer\HKEY_CURRENT_USER\SOFTWARE\Hex-Rays\IDA\Desktops
  4. Open $DIS$Default and copy content.
  5. Save content to config.json
  6. Congrats! You've exported IDA desktop
@poul1x
poul1x / clip_alias
Last active December 21, 2020 20:31
WSL Clipboard copy / paste aliases
alias clip_copy="clip.exe" # echo "aaa" | clip_copy
alias clip_paste="powershell.exe Get-Clipboard | dos2unix | xargs" # echo $(clip_paste)