https://github.com/imvickykumar999/android-trojan-horse
Get Unauthorized Access to Android Devices like TV, Mobile, Tablet etc.
https://github.com/imvickykumar999/android-trojan-horse
adb imvickykumar999 keyevent scrcpy sdcard
Last synced: 10 months ago
JSON representation
Get Unauthorized Access to Android Devices like TV, Mobile, Tablet etc.
- Host: GitHub
- URL: https://github.com/imvickykumar999/android-trojan-horse
- Owner: imvickykumar999
- License: apache-2.0
- Created: 2023-11-17T07:08:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T11:53:42.000Z (over 2 years ago)
- Last Synced: 2025-04-05T10:41:42.634Z (over 1 year ago)
- Topics: adb, imvickykumar999, keyevent, scrcpy, sdcard
- Language: Python
- Homepage: https://www.youtube.com/watch?v=MJW4-Z15fc8
- Size: 90 MB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> # `SD Card Manipulator` || `scrcpy GUI` || `Sensors`
>
> https://github.com/imvickykumar999/Android-Trojan-Horse/assets/50515418/393c2bd3-dcfc-496f-a076-bfb3474d8bf0
Watch Tutorial on YouTube: https://www.youtube.com/watch?v=HD-c2H3NoW8
# `What is` [`Trojan`](https://twitter.com/imvickykumar123/status/1727223882665672735)?
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`](https://stackoverflow.com/a/73605270/11493297)
```bash
# Pair device with pairing code
>>> adb pair
adb.exe: usage: adb pair HOST[:PORT] [PAIRING CODE]
```
## `One Time` [`USB Connect`](https://developer.android.com/tools/adb#wireless)
Restart the adb server by running the commands `adb kill-server` and `adb start-server` in your command prompt
```bash
# 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
```
## `Screen Copy`
```bash
# audio forwarding and recording
>>> scrcpy --tcpip=192.168.0.102 --audio-source=mic -r "screen recording.mp4"
```