3 Matching Annotations
- Jul 2024
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
5905
-
- Nov 2022
-
www.caichinger.com www.caichinger.com
-
Android also has a function to log all traffic into a file, which can later be copied to a computer for analysis in Wireshark.
-
- Jan 2022
-
shkspr.mobi shkspr.mobi
-
This runs a loop 555 times. Takes a screenshot, names it for the loop number with padded zeros, taps the bottom right of the screen, then waits for a second to ensure the page has refreshed. Slow and dull, but works reliably.
Simple bash script to use via ADB to automatically scan pages:
#!/bin/bash for i in {00001..00555}; do adb exec-out screencap -p > $i.png adb shell input tap 1000 2000 sleep 1s done echo All done
-