Skip to content

Commit 1ff1702

Browse files
committed
Correct share instruction for arb read
1 parent 54ba676 commit 1ff1702

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/AppListView.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ struct AppItemView: View {
1414
}
1515
Section {
1616
if let bundlePath = appDetails["Path"] {
17-
ShareLink(item: URL(string: "file://a\(bundlePath)")!) {
18-
Text("Share app bundle folder")
17+
Button("Copy app bundle folder") {
18+
UIPasteboard.general.string = "file://a\(bundlePath)"
1919
}
2020
}
2121
if let containerPath = appDetails["Container"] {
22-
ShareLink(item: URL(string: "file://a\(containerPath)")!) {
23-
Text("Share app data folder")
22+
Button("Copy app data folder") {
23+
UIPasteboard.general.string = "file://a\(containerPath)"
2424
}
2525
}
2626
} header: {
2727
Text("Arbitrary read exploit")
2828
} footer: {
29-
Text("Only supported on iOS 18.2b1 and older. For this exploit, folders can only be shared via AirDrop.\nIf you're sharing App Store apps, please note that it will still be encrypted.")
29+
Text("After copying path, open Settings, paste it in search bar, select all again and tap Share.\n\nOnly supported on iOS 18.2b1 and older. For this exploit, folders can only be shared via AirDrop.\nIf you're sharing App Store apps, please note that it will still remain encrypted.")
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)