https://github.com/codiphile/yarashield
A Malware Detection Tool
https://github.com/codiphile/yarashield
Last synced: 10 months ago
JSON representation
A Malware Detection Tool
- Host: GitHub
- URL: https://github.com/codiphile/yarashield
- Owner: codiphile
- License: mit
- Created: 2025-03-09T06:37:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-09T06:48:41.000Z (over 1 year ago)
- Last Synced: 2025-03-17T20:19:37.742Z (about 1 year ago)
- Language: Python
- Size: 1.85 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YaraShield - Advanced Malware Detection Tool
YaraShield is a powerful malware detection tool that leverages YARA rules to identify various threats in files. It provides a user-friendly GUI interface for scanning files and managing YARA rules.


## Features
- **Advanced Malware Detection**: Detect a wide variety of malware types using YARA pattern matching
- **User-Friendly Interface**: Intuitive GUI with file selection, scan results, and rule management
- **Comprehensive Rule Collection**: Built-in rules for detecting:
- Ransomware
- Backdoors
- Cryptominers
- Data exfiltration tools
- Rootkits
- Fileless malware
- Memory injection techniques
- Supply chain attacks
- PowerShell attacks
- Obfuscated JavaScript
- **Rule Management**: View and manage YARA rules through the application
- **Real-time Rule Monitoring**: Automatic detection of rule file changes
- **Detailed Scan Results**: View comprehensive information about detected threats
## Installation
### Prerequisites
- Python 3.7 or higher
- Required Python packages:
- yara-python
- tkinter (usually comes with Python)
### Setup
1. Clone the repository:
```
git clone https://github.com/username/YaraShield.git
cd YaraShield
```
2. Create a virtual environment (recommended):
```
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
```
3. Install required packages:
```
pip install yara-python
```
4. Run the application:
```
python malware_scanner.py
```
## Usage
1. **File Scanning**:
- Select a file to scan using the "Browse" button
- Click "Scan File" to analyze the file
- View the results in the text area
2. **Rule Management**:
- Switch to the "YARA Rules" tab
- View available rule files in the list
- Select a rule file to view its contents
- Click "Reload Rules" to refresh if you've modified rule files externally
## YARA Rules
YaraShield comes with several pre-defined rule files in the `rules` directory:
- `basic_rules.yar`: Simple malware detection rules
- `advanced_malware.yar`: Rules for ransomware, PowerShell attacks, and obfuscated JavaScript
- `advanced_threats.yar`: Rules for backdoors, cryptominers, data exfiltration, and rootkits
- `specialized_threats.yar`: Rules for supply chain attacks, memory injection, fileless malware, and persistence mechanisms
### Creating Custom Rules
You can create your own YARA rules by adding `.yar` files to the `rules` directory. The application will automatically load them at startup or when you click "Reload Rules".
Example of a simple YARA rule:
```yara
rule My_Custom_Rule {
meta:
name = "Custom Malware Detector"
description = "Detects custom malware patterns"
author = "Your Name"
date = "2023-03-09"
severity = "Medium"
strings:
$suspicious_string1 = "malicious_function"
$suspicious_string2 = "evil_code"
condition:
any of them
}
```
## License
[MIT License](LICENSE)
## Author
Mudit Sharma