If you’re not familiar with Deno, check out the official website at https://deno.land/. In short, Deno is a more secure alternative to Node (the name is literally Node reversed: no_de -> de_no), created by the same founder as Node.
A couple of days ago, the Deno blog published an article titled “Roll your own JavaScript runtime”
https://deno.com/blog/roll-your-own-javascript-runtime
err: “Unable to read file” “./log.txt” {“code”:”ENOENT”}
out: “Read from a file” “./log.txt” “contents:” “I can write to a file.”
out: “Removing file” “./log.txt”
out: “File removed”
...
iOS14 added a privacy protection feature, when current App reads content other Apps copied to clipboard, will have a brief prompt. As below:
Can breakpoint all UIPasteboard methods to check all clipboard-related behaviors in App.
Breakpoint all UIPasteboard methods can use command below:
breakpoint set -r '\[UIPasteboard .*\]$'
First breakpoint at main, then input above command in lldb terminal.
(Figure above only screenshotted part of UIPasteboard methods)
Summary
Hmm, everyone try~ Will discover besides our own calls, system also occasionally triggers UIPasteboard related calls.
Very interesting~
...
First time in history to make Android system run on iPhone. Currently (March 6, 2020) version only supports iPhone7/7 Plus. (iOS system version no requirement)
Project Sandcastle: Android for the iPhone
Project address: https://projectsandcastle.org/
Happened to have an iPhone7, experienced it. Steps simply summarized, share with everyone. Ideal steps below, but due to macOS security mechanisms, steps 2 and 3 not so smooth and pleasant.
Use checkra1n to jailbreak
Run start_mac.sh
Run setup_mac.sh
...