2024-08-06 21:13:41 +08:00
|
|
|
import static org.junit.Assert.assertNotNull;
|
|
|
|
|
2024-07-31 18:02:39 +08:00
|
|
|
import java.util.ArrayList;
|
2024-08-06 21:13:41 +08:00
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.HashSet;
|
2024-07-31 18:02:39 +08:00
|
|
|
import java.util.List;
|
2024-08-06 21:13:41 +08:00
|
|
|
import java.util.Set;
|
2024-07-31 18:02:39 +08:00
|
|
|
|
2024-08-06 21:13:41 +08:00
|
|
|
import org.apache.commons.collections4.BidiMap;
|
|
|
|
import org.apache.commons.collections4.bidimap.DualHashBidiMap;
|
2024-07-31 18:02:39 +08:00
|
|
|
import docking.widgets.filter.ContainsTextFilterFactory;
|
|
|
|
import docking.widgets.filter.TextFilter;
|
|
|
|
import docking.widgets.filter.TextFilterFactory;
|
2024-08-06 21:13:41 +08:00
|
|
|
import edu.uci.ics.jung.graph.Graph;
|
2024-07-31 18:02:39 +08:00
|
|
|
import ghidra.app.script.GhidraScript;
|
2024-08-06 21:13:41 +08:00
|
|
|
import ghidra.feature.fid.db.FidFile;
|
|
|
|
import ghidra.feature.fid.db.FidFileManager;
|
|
|
|
import ghidra.graph.GDirectedGraph;
|
|
|
|
import ghidra.graph.GEdge;
|
|
|
|
import ghidra.graph.jung.JungDirectedGraph;
|
|
|
|
import ghidra.program.model.address.Address;
|
|
|
|
import ghidra.program.model.address.AddressIterator;
|
|
|
|
import ghidra.program.model.address.AddressSetView;
|
|
|
|
import ghidra.program.model.block.BasicBlockModel;
|
|
|
|
import ghidra.program.model.block.CodeBlock;
|
|
|
|
import ghidra.program.model.block.CodeBlockIterator;
|
|
|
|
import ghidra.program.model.block.CodeBlockModel;
|
|
|
|
import ghidra.program.model.block.CodeBlockReference;
|
|
|
|
import ghidra.program.model.block.CodeBlockReferenceIterator;
|
|
|
|
import ghidra.program.model.block.graph.CodeBlockVertex;
|
|
|
|
import ghidra.program.model.listing.Function;
|
|
|
|
import ghidra.program.model.listing.FunctionManager;
|
|
|
|
import ghidra.program.model.listing.Program;
|
|
|
|
import ghidra.program.model.symbol.FlowType;
|
|
|
|
import ghidra.program.model.symbol.Reference;
|
|
|
|
import ghidra.program.model.symbol.ReferenceIterator;
|
|
|
|
import ghidra.program.model.symbol.ReferenceManager;
|
2024-07-31 18:02:39 +08:00
|
|
|
import ghidra.program.model.symbol.Symbol;
|
|
|
|
import ghidra.program.model.symbol.SymbolIterator;
|
|
|
|
import ghidra.program.model.symbol.SymbolTable;
|
2024-08-06 21:13:41 +08:00
|
|
|
import ghidra.util.exception.CancelledException;
|
|
|
|
import ghidra.util.task.TaskMonitor;
|
2024-07-31 18:02:39 +08:00
|
|
|
|
|
|
|
public class FindCallScript extends GhidraScript {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void run() throws Exception {
|
2024-08-06 21:13:41 +08:00
|
|
|
ContainsTextFilterFactory factory = new ContainsTextFilterFactory(false, true);
|
|
|
|
|
|
|
|
find_send_msg(factory);
|
|
|
|
findFunction(factory,"SendMessageMgr::sendMsg");
|
|
|
|
findFunction(factory,"AppMsgMgr::sendFile");
|
|
|
|
findFunction(factory,"SendMessageMgr::sendImageMsg");
|
|
|
|
findFunction(factory,"SyncMgr::doAddMsg");
|
|
|
|
findFunction(factory,"ChatRoomMgr::doModChatRoomMemberNickName");
|
2024-07-31 18:02:39 +08:00
|
|
|
|
2024-08-06 21:13:41 +08:00
|
|
|
findFunction2(factory,"New_ChatMsg");
|
|
|
|
findFunction2(factory,"Free_ChatMsg");
|
|
|
|
findFunction2(factory,"New_ChatRoomInfo");
|
|
|
|
findFunction2(factory,"Free_ChatRoomInfo");
|
|
|
|
findFunction2(factory,"New_ChatRoom");
|
|
|
|
findFunction2(factory,"Free_ChatRoom");
|
|
|
|
findFunction2(factory,"New_Contact");
|
|
|
|
findFunction2(factory,"Free_Contact");
|
|
|
|
findFunction2(factory,"New_WAUpdatableMsgInfo");
|
|
|
|
findFunction2(factory,"Free_WAUpdatableMsgInfo");
|
|
|
|
findFunction2(factory,"New_AppMsgInfo");
|
|
|
|
findFunction2(factory,"Free_AppMsgInfo");
|
|
|
|
findFunction2(factory,"New_MMReaderItem");
|
|
|
|
findFunction2(factory,"Free_MMReaderItem");
|
|
|
|
findFunction2(factory,"New_WCPayInfo");
|
|
|
|
findFunction2(factory,"Free_WCPayInfo");
|
|
|
|
findFunction2(factory,"New_WebViewPageConfig");
|
|
|
|
findFunction2(factory,"Free_WebViewPageConfig");
|
|
|
|
|
|
|
|
findMgr(factory, "SendMessageMgr::SendMessageMgr", "GetSendMessageMgr");
|
|
|
|
findMgr(factory, "AccountServiceMgr::AccountServiceMgr", "GetAccountServiceMgr");
|
|
|
|
findMgr(factory, "AppMsgMgr::AppMsgMgr", "GetAppMsgMgr");
|
|
|
|
findMgr(factory, "ContactMgr::ContactMgr", "GetContactMgr");
|
|
|
|
findMgr(factory, "ChatRoomMgr::ChatRoomMgr", "GetChatRoomMgr");
|
|
|
|
findMgr(factory, "SNSDataMgr::SNSDataMgr", "GetSNSDataMgr");
|
|
|
|
findMgr(factory, "SNSTimeLineMgr::SNSTimeLineMgr", "GetSNSTimeLineMgr");
|
|
|
|
findMgr(factory, "ChatMgr::ChatMgr", "GetChatMgr");
|
|
|
|
findMgr(factory, "FavoriteMgr::FavoriteMgr", "GetFavoriteMgr");
|
|
|
|
findMgr(factory, "PreDownLoadMgr::PreDownLoadMgr", "GetPreDownLoadMgr");
|
|
|
|
findMgr(factory, "CustomSmileyMgr::CustomSmileyMgr", "GetCustomSmileyMgr");
|
|
|
|
findMgr(factory, "LockWechatMgr::LockWechatMgr", "GetLockWechatMgr");
|
|
|
|
findMgr(factory, "QRCodeLoginMgr::QRCodeLoginMgr", "GetQRCodeLoginMgr");
|
|
|
|
findMgr(factory, "VoiceMgr::VoiceMgr", "GetVoiceMgr");
|
|
|
|
findMgr(factory, "WebViewMgr::WebViewMgr", "GetWebViewMgr");
|
|
|
|
findMgr(factory, "SearchContactMgr::SearchContactMgr", "GetSearchContactMgr");
|
|
|
|
findMgr(factory, "PublicMsgMgr::PublicMsgMgr", "GetPublicMsgMgr");
|
|
|
|
findMgr(factory, "MultiDBMsgMgr::MultiDBMsgMgr", "GetMultiDBMsgMgr");
|
|
|
|
findMgr(factory, "FavoriteStorageMgr::FavoriteStorageMgr", "GetFavoriteStorageMgr");
|
|
|
|
findMgr(factory, "HardLinkMgr::HardLinkMgr", "GetHardLinkMgr");
|
|
|
|
|
2024-07-31 18:02:39 +08:00
|
|
|
}
|
2024-08-06 21:13:41 +08:00
|
|
|
|
|
|
|
private boolean checkFidFile() {
|
|
|
|
FidFileManager fidFileManager = FidFileManager.getInstance();
|
|
|
|
List<FidFile> userFid = fidFileManager.getFidFiles();
|
|
|
|
if (userFid.isEmpty()) {
|
|
|
|
printerr("please import 3.9.11.25.fid fid file.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-07-31 18:02:39 +08:00
|
|
|
void find_send_msg(ContainsTextFilterFactory factory) {
|
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
2024-08-06 21:13:41 +08:00
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, "SendMessageMgr::sendMsg", factory,
|
|
|
|
"SendMessageMgr::sendMsg");
|
2024-07-31 18:02:39 +08:00
|
|
|
for (Symbol symbol : searchSymbol) {
|
2024-08-06 21:13:41 +08:00
|
|
|
println("const uint64_t kSendTextMsg = " + symbol.getAddress().toString());
|
2024-07-31 18:02:39 +08:00
|
|
|
}
|
|
|
|
}
|
2024-08-06 21:13:41 +08:00
|
|
|
|
|
|
|
void findFunction(ContainsTextFilterFactory factory, String functionName) {
|
|
|
|
assertNotNull(factory);
|
|
|
|
assertNotNull(functionName);
|
|
|
|
String name = "";
|
|
|
|
String[] split = functionName.split("::");
|
|
|
|
if (split.length > 1) {
|
|
|
|
name = split[1];
|
|
|
|
char upperCase = Character.toUpperCase(split[1].charAt(0));
|
|
|
|
name = upperCase + split[1].substring(1);
|
|
|
|
} else {
|
|
|
|
char upperCase = Character.toUpperCase(functionName.charAt(0));
|
|
|
|
name = upperCase + functionName.substring(1);
|
|
|
|
}
|
2024-07-31 18:02:39 +08:00
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
2024-08-06 21:13:41 +08:00
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, functionName, factory, functionName);
|
2024-07-31 18:02:39 +08:00
|
|
|
for (Symbol symbol : searchSymbol) {
|
2024-08-06 21:13:41 +08:00
|
|
|
println("const uint64_t k" + name + " = " + symbol.getAddress().toString());
|
2024-07-31 18:02:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-06 21:13:41 +08:00
|
|
|
void findFunction2(ContainsTextFilterFactory factory, String functionName) {
|
|
|
|
assertNotNull(factory);
|
|
|
|
assertNotNull(functionName);
|
|
|
|
String name = "";
|
|
|
|
String split = functionName.replace("_", "");
|
|
|
|
char upperCase = Character.toUpperCase(split.charAt(0));
|
|
|
|
name = upperCase + split.substring(1);
|
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, functionName, factory, functionName);
|
|
|
|
for (Symbol symbol : searchSymbol) {
|
|
|
|
println("const uint64_t k" + name + " = " + symbol.getAddress().toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void find_Mgr(ContainsTextFilterFactory factory) throws CancelledException {
|
|
|
|
if (!checkFidFile()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
|
|
|
FunctionManager functionManager = currentProgram.getFunctionManager();
|
|
|
|
ReferenceManager referenceManager = currentProgram.getReferenceManager();
|
|
|
|
|
|
|
|
List<Address> addresses = new ArrayList<>();
|
|
|
|
List<Symbol> searchMgr = searchSymbol(symbolTable, "SendMessageMgr::SendMessageMgr", factory,
|
|
|
|
"SendMessageMgr::SendMessageMgr");
|
|
|
|
for (Symbol symbol : searchMgr) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
ReferenceIterator referencesTo = referenceManager.getReferencesTo(address);
|
|
|
|
while (referencesTo.hasNext()) {
|
|
|
|
Reference next = referencesTo.next();
|
|
|
|
Address fromAddress = next.getFromAddress();
|
|
|
|
println("fromAddress " + fromAddress.toString());
|
|
|
|
Function functionAt = functionManager.getFunctionContaining(fromAddress);
|
|
|
|
if (null != functionAt) {
|
|
|
|
addresses.add(functionAt.getEntryPoint());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, "GetSendMessageMgr", factory, "GetSendMessageMgr");
|
|
|
|
for (Symbol symbol : searchSymbol) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
if (addresses.contains(address)) {
|
|
|
|
println("const uint64_t kGetSendMessageMgr = " + address.toString() + ";");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void find_SendMessageMgr(ContainsTextFilterFactory factory) throws CancelledException {
|
|
|
|
if (!checkFidFile()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
|
|
|
FunctionManager functionManager = currentProgram.getFunctionManager();
|
|
|
|
|
|
|
|
List<Address> addresses = new ArrayList<>();
|
|
|
|
List<Symbol> searchMgr = searchSymbol(symbolTable, "SendMessageMgr::SendMessageMgr", factory,
|
|
|
|
"SendMessageMgr::SendMessageMgr");
|
|
|
|
for (Symbol symbol : searchMgr) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
addresses.add(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, "GetSendMessageMgr", factory, "GetSendMessageMgr");
|
|
|
|
for (Symbol symbol : searchSymbol) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
Function function = functionManager.getFunctionAt(address);
|
|
|
|
if (null != function) {
|
|
|
|
AddressSetView functionBody = function.getBody();
|
|
|
|
Address entryPoint = function.getEntryPoint();
|
|
|
|
Set<Reference> references = getReferencesFrom(currentProgram, functionBody, monitor);
|
|
|
|
for (Reference reference : references) {
|
|
|
|
monitor.checkCancelled();
|
|
|
|
Address toAddress = reference.getToAddress();
|
|
|
|
if (toAddress.equals(entryPoint)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Function calledFunction = functionManager.getFunctionAt(toAddress);
|
|
|
|
if (null != calledFunction) {
|
|
|
|
if (addresses.contains(toAddress)) {
|
|
|
|
println("const uint64_t kGetSendMessageMgr = " + address.toString() + ";");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void findMgr(ContainsTextFilterFactory factory, String mgr, String getMgr) throws CancelledException {
|
|
|
|
if (!checkFidFile()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SymbolTable symbolTable = currentProgram.getSymbolTable();
|
|
|
|
FunctionManager functionManager = currentProgram.getFunctionManager();
|
|
|
|
|
|
|
|
List<Address> addresses = new ArrayList<>();
|
|
|
|
List<Symbol> searchMgr = searchSymbol(symbolTable, mgr, factory, mgr);
|
|
|
|
for (Symbol symbol : searchMgr) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
addresses.add(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Symbol> searchSymbol = searchSymbol(symbolTable, getMgr, factory, getMgr);
|
|
|
|
for (Symbol symbol : searchSymbol) {
|
|
|
|
Address address = symbol.getAddress();
|
|
|
|
Function function = functionManager.getFunctionAt(address);
|
|
|
|
if (null != function) {
|
|
|
|
AddressSetView functionBody = function.getBody();
|
|
|
|
Address entryPoint = function.getEntryPoint();
|
|
|
|
Set<Reference> references = getReferencesFrom(currentProgram, functionBody, monitor);
|
|
|
|
for (Reference reference : references) {
|
|
|
|
monitor.checkCancelled();
|
|
|
|
Address toAddress = reference.getToAddress();
|
|
|
|
if (toAddress.equals(entryPoint)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Function calledFunction = functionManager.getFunctionAt(toAddress);
|
|
|
|
if (null != calledFunction) {
|
|
|
|
if (addresses.contains(toAddress)) {
|
|
|
|
println("const uint64_t k" + getMgr + " = " + address.toString() + " ;");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected Set<Reference> getReferencesFrom(Program program, AddressSetView addresses, TaskMonitor monitor)
|
|
|
|
throws CancelledException {
|
|
|
|
Set<Reference> set = new HashSet<>();
|
|
|
|
ReferenceManager referenceManager = program.getReferenceManager();
|
|
|
|
AddressIterator addressIterator = addresses.getAddresses(true);
|
|
|
|
while (addressIterator.hasNext()) {
|
|
|
|
monitor.checkCancelled();
|
|
|
|
Address address = addressIterator.next();
|
|
|
|
Reference[] referencesFrom = referenceManager.getReferencesFrom(address);
|
|
|
|
if (referencesFrom != null) {
|
|
|
|
for (Reference reference : referencesFrom) {
|
|
|
|
set.add(reference);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Symbol> searchSymbol(SymbolTable symbolTable, String text, TextFilterFactory factory, String filterText) {
|
2024-07-31 18:02:39 +08:00
|
|
|
List<Symbol> list = new ArrayList<>();
|
|
|
|
TextFilter textFilter = factory.getTextFilter(filterText);
|
|
|
|
SymbolIterator symbols = symbolTable.getSymbols(text);
|
|
|
|
while (symbols.hasNext()) {
|
|
|
|
Symbol next = symbols.next();
|
2024-08-06 21:13:41 +08:00
|
|
|
if (textFilter.matches(next.getName())) {
|
2024-07-31 18:02:39 +08:00
|
|
|
list.add(next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|