Profile Picture

Valkyrie (Discord: en.valkyrie)

Reputation: 7 [rate]

Joined: Aug, 2023

Last online:

Bio

15 year old asian living in germany

Badges

badge badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Commented to thread : who doesn't feel sorry for the WPF UI?


Bruh a tab system is super easywith skidding expecially with Monaco in it. Even a lazy person can do it 5 minutes.

 

Commented to thread : [Release] Advert Free Easy Exploits | With Auto Updater


🥹 How shall i fix my code?

Created a new thread : [Release] Advert Free Easy Exploits | With Auto Updater


Github Download
Virus Total (It dont run on Win 7)

You use how you would use Easy Exploits API.
The only thing change is the Inject code.

private void Inject()
{
        string injdownload = Client.DownloadString("https://easyexploits.com/eelink.txt");
        string[] parts = injdownload.Split('/');
        string filename = parts[parts.Length - 1];
        string extractedString = "";
        Client.DownloadFile(injdownload, filename);


        ModuleDefMD module = ModuleDefMD.Load(filename);
        MethodDef targetMethod = null;

        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)
        {
             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)
            {
                try
                {
                  
                    this.Client.DownloadFile(extractedString, "./bin/Fluxus-Module.dll");


                }
                catch
                {
                }
            }
            else
            {
            }
        }
        else
        {
        }
 
        File.Delete(filename);



  this.ModuleDirectory = AppDomain.CurrentDomain.BaseDirectory + "\\bin\\Fluxus-Module.dll";
  if (Process.GetProcessesByName("Windows10Universal").Length == 0)
  {
    int num1 = (int) MessageBox.Show("The target process is not open. Please ensure that the process is running and that you have sufficient permissions to open it.", "Injection Error");
  }
  else
  {
    switch (API.r_inject(this.ModuleDirectory))
    {
      case API.Result.DLLNotFound:
        int num2 = (int) MessageBox.Show("The specified DLL could not be found. Please ensure that the DLL exists and that the path is correct.", "Injection Error");
        break;
      case API.Result.OpenProcFail:
        int num3 = (int) MessageBox.Show("Failed to open the target process.", "Injection Error");
        break;
      case API.Result.AllocFail:
        int num4 = (int) MessageBox.Show("Failed to allocate memory in the target process.", "Injection Error");
        break;
      case API.Result.LoadLibFail:
        int num5 = (int) MessageBox.Show("Failed to load the specified DLL into the target process. Please ensure that the DLL is valid and that it can be loaded into the target process.", "Injection Error");
        break;
      case API.Result.AlreadyInjected:
        int num6 = (int) MessageBox.Show("The specified DLL is already injected into the target process.", "Injection Error");
        break;
      case API.Result.ProcNotOpen:
        int num7 = (int) MessageBox.Show("The target process is not open. Please ensure that Roblox from the Microsoft Store is running.", "Injection Error");
        break;
      case API.Result.Unknown:
        int num8 = (int) MessageBox.Show("An unknown error occurred. Please try again or contact support for assistance.", "Injection Error");
        break;
    }
  }
}

Replied to thread : the literal peak.


The missing im most is the Delta Exploit on the FP

Replied to thread : Easy Exploits DLL Link Extractor. Can be used for BetterSploits!


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);
    }
}

Created a new thread : Easy Exploits DLL Link Extractor. Can be used for BetterSploits!


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

Commented to thread : Electron Spoofer broken!


Pierre, i feel bad for you. I have seen the evidence myself and TBH, it looks fake asf

Replied to thread : Rock Paper Scissors C# Console Application


Interesting...........

Replied to thread : Kiwi X Keyless


https://cdn.discordapp.com/emojis/1103135526623662142.webp?size=96&quality=lossless

Replied to thread : Archimedes (Discord account mass generator)


-_-, Its the 2b2t server

Commented to thread : How would I go on about making a ✨Stellar✨ User Interface in WPF?


@Akula -_-, Also did you accidently give me Negative Reputation?

Commented to thread : How would I go on about making a ✨Stellar✨ User Interface in WPF?


INFORMAL
featuring or having the quality of a star performer or performers.
"a stellar cast had been assembled"