Categories > Coding > C++ >
how can i make my own exploit dll
Posted
how can i make my own exploit dll
Replied
learn cpp, embed lua in c++, how memory works, and ida. (learning lua will be great, it will help u)
and no, making a custom dll isn't as easy as u might think, u have A LOT to learn.
u could check other dll sources and actually try to understand what all things are and what they do (will be hard) but please don't skid.
dont just get some updated axon source and paste some random functions u found on v3rm and release it. thats skidding and its bad. again, learn instead of skidding. skidding wont help u learn too much.
here's something that will help u learn cpp: https://www.learncpp.com/
(btw correct me if I'm wrong anywhere in this reply, I'm still learning and I'm not the best at these things.)
Cancel
Post
Replied
Languages: c++ (main language for coding APIs as u will be using the format .dll and that contains c++. I'm pretty sure this does the memory editing and stuff, I could be wrong cause I dont do APIs and c++ etc.)
Lua (main language for functions like basic print to advanced like sethiddenproperty. This is easy to learn and easy to come by)
Editors: Visual Studio 2019 (this is the main one I use when doing anything related)
Sources: Axon (try searching up Axon open source, good place to find it is in v3m. Learn how to update the dll and how the functions for and the code looks. Try rewriting some chunks in your own style and format and see where you go. KEEP IN MIND: I'm not encouraging skidding all im saying is look and try to figure yourself and make your own project. Updating a dll and releasing it doesnt mean u made a api it means you r the laziest person more lazy than fat Bob on the other screen releasing his lvl 7 GamerSploit and calling it he never skid it and was all his code.)
Cancel
Post
https://media.discordapp.net/attachments/1010636204225601659/1012865624797610044/sKQybOLT.gif
Replied
just rename wrd one noone will know
Cancel
Post
you will never upset me
i will upset you
Replied
thanks for the information
Cancel
Post
Added
loli im not a skid
Cancel
Post
Replied
someone help me plz, my exploit dont work. the visual studio cant find the WRD API but I installed it. this is my script
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Script_Executor
{
public partial class Form1 : Form
{
[DllImport("WeAreDevs_API.cpp.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern bool LaunchExploit();
[DllImport("WeAreDevs_API.cpp.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern bool SendLuaCScript(string script);
[DllImport("WeAreDevs_API.cpp.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern bool SendLimitedLuaScript(string script);
[DllImport("WeAreDevs_API.cpp.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern bool SendCommand(string script);
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[DllImport("user32.dll")]
public static extern bool ReleaseCapture();
private void FormMoveable_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button1_Click_1(object sender, EventArgs e) -- exit button
{
Application.Exit();
}
private void __Click(object sender, EventArgs e) -- button to minimize
{
this.WindowState = FormWindowState.Minimized;
}
private void label2_Click(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void label1_Click_1(object sender, EventArgs e)
{
}
private void label2_Click_1(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
private void button1_Click_2(object sender, EventArgs e) -- inject
{
string text = fastColoredTextBox1.Text;
SendLimitedLuaScript(text);
}
private void button4_Click(object sender, EventArgs e) - inject <--- problem
{
LaunchExploit();
}
private void button5_Click(object sender, EventArgs e) -- Open File
{
//wassup
OpenFileDialog opendialogfile = new OpenFileDialog();
opendialogfile.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
opendialogfile.FilterIndex = 2;
opendialogfile.RestoreDirectory = true;
if (opendialogfile.ShowDialog() != DialogResult.OK)
return;
try
{
fastColoredTextBox1.Text = "";
System.IO.Stream stream;
if ((stream = opendialogfile.OpenFile()) == null)
return;
using (stream)
this.fastColoredTextBox1.Text = System.IO.File.ReadAllText(opendialogfile.FileName);
}
catch (Exception)
{
int num = (int)MessageBox.Show("An unexpected error has occured", "OOF!", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
private void fastColoredTextBox1_Load(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e) -- text box
{
fastColoredTextBox1.Text = "--Script Here";
}
}
}
this is the problem what visual studio gives
System.DllNotFoundException: 'Unable to load the DLL 'WeAreDevs_API.cpp.dll': The specified module could not be found. (Exception HRESULT: 0x8007007E)'
Cancel
Post
i own synapse x
biggest idiot in town
discord: nakiri#4485
Replied
im not being funny but that tutorial is horrible and quite a lot of the stuff you said in it was completely wrong
Cancel
Post
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
Don't buy exploits its not worth it your gonna quit anyway
Taking accountability will help you excel in life
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post