Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix requirements.txt when execute command pip install -r requirements.txt #37

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<img title="SARA" src="https://img.shields.io/badge/CODENAME%20-SARA-SCRIPT?colorA=grey&colorB=blue&style=for-the-badge"> <img title="SARA" src="https://img.shields.io/badge/VERSION%20-3.0-SCRIPT?colorA=grey&colorB=blue&style=for-the-badge">
## What's New?
Added requirements.txt When Error Execute Command pip install -r requirements.txt
### About
SARA is a simple tool to create Trojan or Ransomware for Android devices
### Disclaimer
This tool is made for education purpose only, the author is not responsible for any loses or damage caused by this programs
### Installation
* Kali Linux, Ubuntu, Debian, Termux (proot-distro: Ubuntu)
```bash
git clone https://github.com/termuxhackers-id/SARA && cd SARA && sudo bash install.sh && python3 sara.py
git clone https://github.com/IHNGEYMING/SARA && cd SARA && sudo bash install.sh && python3 sara.py
```
### Demo
* Generate Custom Trojan (metasploit)
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/bash
sudo apt-get install aapt wget python3 python3-pip zipalign imagemagick openjdk-8-jdk -y
wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.8.1.jar
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.10.0.jar
sudo mv apktool /usr/bin/apktool && sudo chmod +x /usr/bin/apktool
sudo mv apktool_2.8.1.jar /usr/bin/apktool.jar && sudo chmod +x /usr/bin/apktool.jar
sudo mv apktool_2.10.0.jar /usr/bin/apktool.jar && sudo chmod +x /usr/bin/apktool.jar
pip install Pillow
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
Pillow