Advertisement
metalx1000

Stream Android screen with busybox nc

Mar 3rd, 2024
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. Casting Android Screen Across Network with Busybox nc
  2. (this is not encrypted)
  3.  
  4. # On Desktop
  5. busybox nc -lp 8022|ffplay - 2>/dev/null
  6.  
  7. # On Android Device
  8. screenrecord --output-format=h264 -|busybox nc <DESKTOP IP> 8022
  9.  
  10. # Or run as on liner on desktop
  11. (busybox nc -lp 8022|ffplay - 2>/dev/null)&(adb shell screenrecord --output-format=h264 -|busybox nc <DESKTOP IP> 8022)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement