Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This commit fixes cantordust for Ghidra 10.0 #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cantordust.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public byte[] getJavaData() {

public void writeBinLocation(){ // run python cleanup.py to recompile program
GhidraProvider mp = new GhidraProvider();
String path = mp.getClass(sourceFile, "Cantordust").getAbsolutePath();
String path = mp.getClass(sourceFile).getAbsolutePath();
path = path.substring(0, path.length()-16);
String fileName = currentDirectory+"ghidra_bin_location.txt";
try{
Expand Down
6 changes: 3 additions & 3 deletions GhidraProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class GhidraProvider extends JavaScriptProvider {
public GhidraProvider(){
super();
}
public File getClass(ResourceFile sourceFile, String className){
return getClassFile(sourceFile, className);
public File getClass(ResourceFile sourceFile){
return sourceFile.getFile(false);
}
}
}