Categories > Exploiting > Roblox >

Easy Exploits DLL Link Extractor. Can be used for BetterSploits!

Valkyrie

Discord: en.valkyrie

vip

Posts: 24

Threads: 4

Joined: Aug, 2023

Reputation: 7

Posted

Below is the SRC and Image to the Tool! (You need DNLIB Package Installed to use!!!!)
https://media.discordapp.net/attachments/1148610306285781063/1151931347577864192/image.png

  • 0

Added

using dnlib.DotNet;
using dnlib.DotNet.Emit;
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection.Emit;
using System.Security.Policy;

class Program
{
    static  void Main(string[] args)
    {
        WebClient wc = new WebClient();
        string injdownload = wc.DownloadString("https://easyexploits.com/eelink.txt");
        Console.ForegroundColor = ConsoleColor.Green;
        Console.WriteLine("Accuired Injector Download link.");
        string[] parts = injdownload.Split('/');
        string filename = parts[parts.Length - 1];
        Console.WriteLine("Accuired Injector Name");

        wc.DownloadFile(injdownload, filename);
        Console.WriteLine("Downloaded Injector.");


        ModuleDefMD module = ModuleDefMD.Load(filename);
        MethodDef targetMethod = null;
        wc.Dispose();
        
        foreach (var type in module.GetTypes())
        {
            targetMethod = type.Methods.FirstOrDefault(m => m.HasBody && m.Body.HasInstructions &&
                m.Body.Instructions.Any(i => i.OpCode == dnlib.DotNet.Emit.OpCodes.Ldstr && i.Operand.ToString().Contains("Module.dll")));

            if (targetMethod != null)
                break;
        }

        if (targetMethod != null)
        {
            string extractedString = targetMethod.Body.Instructions
                .Where(i => i.OpCode == dnlib.DotNet.Emit.OpCodes.Ldstr && i.Operand.ToString().Contains("Module.dll"))
                .Select(i => i.Operand.ToString())
                .FirstOrDefault();

            if (extractedString != null)
            {
                Console.WriteLine("Successfully Retrieved Module Link!");
                Console.WriteLine();
                Console.ForegroundColor= ConsoleColor.White;
                Console.WriteLine("EEINJ-Link: " + injdownload);
                Console.WriteLine("Filename: " + filename);
                Console.WriteLine("Module Link: " + extractedString);
            }
            else
            {
                Console.WriteLine("no string not found.");
            }
        }
        else
        {
            Console.WriteLine("method not found.");
        }
        Console.WriteLine("Pres any key to continue.....");
        Console.ReadKey();
        File.Delete(filename);
    }
}
  • 0

Posts: 1474

Threads: 95

Joined: Oct, 2019

Reputation: 93

Replied

I Like It But It's Not Really Practical Imo.

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )