Skip to content

Commit

Permalink
Run :ies only on app classes
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Dec 10, 2024
1 parent e7ba497 commit 92487bc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/agent/lib/info/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ export function listEntrypointSymbols(args: string[]): string {
const classes = ObjC.classes;
Object.keys(classes).forEach(function (className: string) {
var cls = ObjC.classes[className];
if (cls.$moduleName !== null && cls.$moduleName !== "main") {
continue;
}
var methods = cls.$methods; // $ownMethods?
methods.forEach(function (methodName) {
try {
Expand Down

0 comments on commit 92487bc

Please sign in to comment.