ADD week 4

This commit is contained in:
2025-03-31 16:31:52 +02:00
parent 84135a321e
commit 86f265f22d
119 changed files with 2243 additions and 0 deletions

View File

@ -0,0 +1 @@
Java source directory to hold module-specific Ghidra scripts.

View File

@ -0,0 +1,11 @@
// Sample Java GhidraScript
// @category Examples
import ghidra.app.script.GhidraScript;
public class SampleScript extends GhidraScript {
@Override
protected void run() throws Exception {
println("Sample script!");
}
}

View File

@ -0,0 +1,8 @@
# Sample PyGhidra GhidraScript
# @category Examples
# @runtime PyGhidra
from java.util import LinkedList
java_list = LinkedList([1,2,3])
block = currentProgram.memory.getBlock('.text')