We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello there, i'm playing around with frida-swift-bridge trying to call swift methods.
frida-swift-bridge
As an example with the following source code:
class URL { init?(urlString: String) { guard let query = URLComponents(string: urlString)?.queryItems else { return nil } } private static func decode(_ secret: String?) -> String? { return secret } }
But when I try to list the methods I get and empty methods list:
[iPhone::test ]-> Swift.modules.test.classes.URL { "$conformances": [], "$fields": [], "$methods": [] }
How could I initialize a URL with a string in Frida? How could I call the decode method on the class instance after?
URL
decode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello there, i'm playing around with
frida-swift-bridge
trying to call swift methods.As an example with the following source code:
But when I try to list the methods I get and empty methods list:
How could I initialize a
URL
with a string in Frida?How could I call the
decode
method on the class instance after?The text was updated successfully, but these errors were encountered: