This is a simple script to scan an APK or EXE file for viruses and malware using the VirusTotal API. The script also works on Windows 10, as long as you add single or normal quotation marks around the path to the file:
py BugBusterX.py 'path\to\file\'
Before you can use this script, make sure you have the following:
- An Android device with Termux installed. You can download Termux from F-Droid or the Google Play Store.
- A Virustotal account and API key, which you will have to insert into the code under
API_KEY
- Git and Python installed on your Android device via Termux. Open Termux and run the following commands:
pkg update
pkg upgrade
pkg install git
pkg install python
Set up an SSH key on your Android device so that you can clone the repository from GitHub. Follow these instructions to generate an SSH key and add it to your GitHub account.
Once you have the prerequisites set up, clone the repository:
git clone [email protected]:PapaPeskwo/BugBusterX.git
Navigate to the cloned repository directory:
cd BugBusterX
And install the requirements:
pip install -r requirements.txt
To scan an APK or EXE file, run the following command:
python BugBusterX.py /path/to/your/file.apk
Replace /path/to/your/file.apk with the actual path to the APK or EXE file you want to scan.
The script will upload the file to VirusTotal, wait for the analysis to complete, and display the results. If the file is safe, it will display "The file is safe." Otherwise, it will display the results from any antivirus engines that detected the file as suspicious or malicious.
Contributions are welcome. If you would like to contribute to this project, please fork the repository and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.