Un-Authorized.Access.mp4
Watch Tutorial on YouTube: https://www.youtube.com/watch?v=HD-c2H3NoW8
What is
Trojan
?
A Trojan is a type of malware.
Trojans, or Trojan horses, are malware that disguise themselves as legitimate programs or software.
They use social engineering to trick users into installing them.
Once installed, Trojans can perform actions like:
- Exporting files
- Modifying data
- Deleting files
- Stealing information
- Sending premium SMS texts.
Trojans can also act as a delivery vehicle for other threats.
For example, a Trojan can overwrite files on a machine and then send itself to the victim's contact list.
To avoid Trojans, you can:
- Surf the web carefully
- Avoid opening email attachments without thinking
- Only obtain programs from secure sources
- Keep your operating system up-to-date
- Use an always-on virus scanner
Trojans get their name from the hollow wooden horse that the Greeks hid inside of during the Trojan War.
keyevent.json absent | keyevent.json present |
Pairing Code
: Wireless debugging
# Pair device with pairing code
>>> adb pair
adb.exe: usage: adb pair HOST[:PORT] [PAIRING CODE]
One Time
USB Connect
Restart the adb server by running the commands adb kill-server
and adb start-server
in your command prompt
# Connect via USB
>>> adb usb
restarting in USB mode
>>> adb tcpip 5555
restarting in TCP mode port: 5555
# Disconnect USB
>>> adb devices
List of devices attached
RZ8N60JN0EE device
>>> adb shell "ip addr show wlan0 | grep -e wlan0$ | cut -d\" \" -f 6 | cut -d/ -f 1"
192.168.0.103
>>> adb connect 192.168.0.103:5555
connected to 192.168.0.103:5555
# audio forwarding and recording
>>> scrcpy --tcpip=192.168.0.102 --audio-source=mic -r "screen recording.mp4"