Project: Dump iOS Text Views

Try this code out now by running

$ frida --codeshare dki/dump-ios-text-views -f YOUR_BINARY
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
'use strict';
/* small script to dump UITextField and UITextView attributes for a view
* (keyWindow by default if invoked with no arg)
*
* primarily to see the autocorrectType setting without dumping the whole UI
*/
var UITextAutocorrectionType = ["default", "no", "yes"]
function dumpUIText(view) {
if (!view) {
view = ObjC.classes.UIWindow.keyWindow();
}
var subviews = view.subviews();
var count = subviews.count();
for (var i = 0; i < count; i++) {
var x = subviews.objectAtIndex_(i);
if (x.isKindOfClass_(ObjC.classes.UITextField) || x.isKindOfClass_(ObjC.classes.UITextView)) {
console.log("<" + x.$className + ": " + x.handle + ">");
console.log(" autocorrectionType: " + UITextAutocorrectionType[x.autocorrectionType()]);
if (x.text() != "") {
console.log(" content: " + x.text());
}
// this may not always work, i'm making some assumptions about subviews
} else if (x.isKindOfClass_(ObjC.classes.UITextFieldLabel)) {
console.log(" Label: " + x.text());
}
dumpUIText(x);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Fingerprint: 46ed3eb8c7841fc78f12ca968f1a62de98105bb4ae9de0d614fe5d132227eaa9