sudo apt-get install software-properties-common
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'httparty' | |
require 'fileutils' | |
require 'json' | |
USERNAME = ARGV[0] || "patio11" | |
MAX_TO_FETCH = ARGV[1] | |
puts "Username: #{USERNAME} max to fetch: #{MAX_TO_FETCH || "all"}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
### Ghidra project bulk file import with DLL library resolution | |
### Warning, this file takes bloody ages to run! (40 minutes for 140 files) | |
### ... but it's still faster than using the GUI! | |
### Leigh Oliver 23rd September 2024 | |
### | |
### EXAMPLE USAGE | |
# Import one file... | |
# ./import.sh ./MyProject.gpr ./coredll.dll | |
# Import a list of files... |