You don't have to keep your hands on the yoke during hard turns with the FSD beta. Even with a wheel, it would be hard to signal the right amount of pressure without disengaging when their is a lot of movement going on.
Yeah but with the wheel you can grip it loosely and let it slide through your fingers whenever you want. With the yoke you'll be forced to constantly let go and grab it again to silence the nagging.
Does this work with cert pinning on Android? I was only ever able to bypass that by rooting my device and installing an Xposed module to bypass the pin check.
- Connect an Android emulator or a rooted device to ADB, in which case HTTP Toolkit can do totally automated setup for you.
- Use a non-rooted device, and make some minor config changes to the target application (trivial if it's your own application, slightly more difficult if it's not).
That handles 99% of Android apps, which usually don't actually pin certificates - they generally rely on Android's built-in non-modifiable system certificate store instead.
httptoolkit is best software in market that works so easily and can bypass certs pinning.
Here are steps:
Download frida script from httptoolkit server and binary from frida github repo and download httptoolkit app in andriod. Here are my notes.
```
# Copy the server to the device
adb push ./frida-server-$version-android-$arch /data/local/tmp/frida-server
# ^Change this to match the name of the binary you just extracted
# Enable root access to the device
adb root
# Make the server binary executable
adb shell "chmod 755 /data/local/tmp/frida-server"
# Start the server on your device
adb shell "/data/local/tmp/frida-server &"