Results 1 to 4 of 4
  1. #1
    Borodulin's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Communisty
    Posts
    105
    Reputation
    10
    Thanks
    73
    My Mood
    Sleepy

    Exclamation Need Help Making dll injector

    I can't find public Class

    Code:
    #pragma once
    
    
    namespace Golden {
    
    	using namespace System;
    	using namespace System::ComponentModel;
    	using namespace System::Collections;
    	using namespace System::Windows::Forms;
    	using namespace System::Data;
    	using namespace System::Drawing;
    
    	/// <summary>
    	/// Summary for Form1
    	///
    	/// WARNING: If you change the name of this class, you will need to change the
    	///          'Resource File Name' property for the managed resource compiler tool
    	///          associated with all .resx files this class depends on.  Otherwise,
    	///          the designers will not be able to interact properly with localized
    	///          resources associated with this form.
    	/// </summary>
    	public ref class Form1 : public System::Windows::Forms::Form
    	{
    	public:
    		Form1(void)
    		{
    			InitializeComponent();
    			//
    			//TODO: Add the constructor code here
    			//
    		}
    
    	protected:
    		/// <summary>
    		/// Clean up any resources being used.
    		/// </summary>
    		~Form1()
    		{
    			if (components)
    			{
    				delete components;
    			}
    		}
    	private: System::Windows::Forms::Button^  button1;
    	protected: 
    	private: System::Windows::Forms::TextBox^  textBox1;
    	private: System::Windows::Forms::TextBox^  textBox2;
    	private: System::Windows::Forms::Timer^  timer1;
    	private: System::Windows::Forms::OpenFileDialog^  openFileDialog1;
    	private: System::Windows::Forms::Label^  label1;
    	private: System::Windows::Forms::Label^  label2;
    	private: System::Windows::Forms::Label^  label3;
    	private: System::Windows::Forms::Label^  label4;
    	private: System::ComponentModel::IContainer^  components;
    
    	private:
    		/// <summary>
    		/// Required designer variable.
    		/// </summary>
    
    
    #pragma region Windows Form Designer generated code
    		/// <summary>
    		/// Required method for Designer support - do not modify
    		/// the contents of this method with the code editor.
    		/// </summary>
    		void InitializeComponent(void)
    		{
    			this->components = (gcnew System::ComponentModel::Container());
    			this->button1 = (gcnew System::Windows::Forms::Button());
    			this->textBox1 = (gcnew System::Windows::Forms::TextBox());
    			this->textBox2 = (gcnew System::Windows::Forms::TextBox());
    			this->timer1 = (gcnew System::Windows::Forms::Timer(this->components));
    			this->openFileDialog1 = (gcnew System::Windows::Forms::OpenFileDialog());
    			this->label1 = (gcnew System::Windows::Forms::Label());
    			this->label2 = (gcnew System::Windows::Forms::Label());
    			this->label3 = (gcnew System::Windows::Forms::Label());
    			this->label4 = (gcnew System::Windows::Forms::Label());
    			this->SuspendLayout();
    			// 
    			// button1
    			// 
    			this->button1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->button1->Location = System::Drawing::Point(138, 12);
    			this->button1->Name = L"button1";
    			this->button1->Size = System::Drawing::Size(134, 23);
    			this->button1->TabIndex = 0;
    			this->button1->Text = L"Browse...";
    			this->button1->UseVisualStyleBackColor = true;
    			this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
    			// 
    			// textBox1
    			// 
    			this->textBox1->Location = System::Drawing::Point(139, 41);
    			this->textBox1->Name = L"textBox1";
    			this->textBox1->Size = System::Drawing::Size(133, 20);
    			this->textBox1->TabIndex = 1;
    			// 
    			// textBox2
    			// 
    			this->textBox2->Location = System::Drawing::Point(139, 93);
    			this->textBox2->Name = L"textBox2";
    			this->textBox2->Size = System::Drawing::Size(133, 20);
    			this->textBox2->TabIndex = 2;
    			// 
    			// timer1
    			// 
    			this->timer1->Tick += gcnew System::EventHandler(this, &Form1::timer1_Tick);
    			// 
    			// openFileDialog1
    			// 
    			this->openFileDialog1->FileName = L"openFileDialog1";
    			// 
    			// label1
    			// 
    			this->label1->AutoSize = true;
    			this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->label1->Location = System::Drawing::Point(12, 45);
    			this->label1->Name = L"label1";
    			this->label1->Size = System::Drawing::Size(39, 16);
    			this->label1->TabIndex = 3;
    			this->label1->Text = L"DLL:";
    			this->label1->Click += gcnew System::EventHandler(this, &Form1::label1_Click);
    			// 
    			// label2
    			// 
    			this->label2->AutoSize = true;
    			this->label2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->label2->Location = System::Drawing::Point(12, 97);
    			this->label2->Name = L"label2";
    			this->label2->Size = System::Drawing::Size(69, 16);
    			this->label2->TabIndex = 4;
    			this->label2->Text = L"Process:";
    			this->label2->Click += gcnew System::EventHandler(this, &Form1::label2_Click);
    			// 
    			// label3
    			// 
    			this->label3->AutoSize = true;
    			this->label3->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point, 
    				static_cast<System::Byte>(0)));
    			this->label3->Location = System::Drawing::Point(12, 237);
    			this->label3->Name = L"label3";
    			this->label3->Size = System::Drawing::Size(55, 16);
    			this->label3->TabIndex = 5;
    			this->label3->Text = L"Status:";
    			// 
    			// label4
    			// 
    			this->label4->AutoSize = true;
    			this->label4->Location = System::Drawing::Point(135, 240);
    			this->label4->Name = L"label4";
    			this->label4->Size = System::Drawing::Size(35, 13);
    			this->label4->TabIndex = 6;
    			this->label4->Text = L"label4";
    			// 
    			// Form1
    			// 
    			this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
    			this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
    			this->ClientSize = System::Drawing::Size(284, 262);
    			this->Controls->Add(this->label4);
    			this->Controls->Add(this->label3);
    			this->Controls->Add(this->label2);
    			this->Controls->Add(this->label1);
    			this->Controls->Add(this->textBox2);
    			this->Controls->Add(this->textBox1);
    			this->Controls->Add(this->button1);
    			this->Name = L"Form1";
    			this->Text = L"Form1";
    			this->Load += gcnew System::EventHandler(this, &Form1::Form1_Load);
    			this->ResumeLayout(false);
    			this->PerformLayout();
    
    		}
    #pragma endregion
    	private: System::Void label1_Click(System::Object^  sender, System::EventArgs^  e) {
    			 }
    private: System::Void label2_Click(System::Object^  sender, System::EventArgs^  e) {
    		 }
    private: System::Void Form1_Load(System::Object^  sender, System::EventArgs^  e) {
    			 button1.text = "Browse..."
    label1.text = "Waiting for users input..."
    timer1.interval = 50
    timer1.start()
    
    		 }
    private: System::Void timer1_Tick(System::Object^  sender, System::EventArgs^  e) {
    			 If IO.File.Exists(OpenFileDialog1.FileName) Then
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    If TargetProcess.Length = 0 Then
    Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe")
    
    Else
    Timer1.Stop()
    Me.Label1.Text = "Successfully Injected!"
    Call Inject()
    End If
    Else
    
    End If
    		 }
    private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
    			 OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
    OpenFileDialog1.ShowDialog()
    Dim FileName As String
    FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1 .FileName.LastIndexOf("\"))
    Dim DllFileName As String = FileName.Replace("\", "")
    Me.TextBox2.Text = (DllFileName)
    		 }
    };
    }
    I want to put in public class

    Code:
    Private TargetProcessHandle As Integer
    Private pfnStartAddr As Integer
    Private pszLibFileRemote As String
    Private TargetBufferSize As Integer
    
    Public Const PROCESS_VM_READ = &H10
    Public Const TH32CS_SNAPPROCESS = &H2
    Public Const MEM_COMMIT = 4096
    Public Const PAGE_READWRITE = 4
    
    
    Public Const PROCESS_CREATE_THREAD = (&H2)
    Public Const PROCESS_VM_OPERATION = (&H8)
    Public Const PROCESS_VM_WRITE = (&H20)
    Dim DLLFileName As String
    Public Declare Function ReadProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer
    
    Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( _
    ByVal lpLibFileName As String) As Integer
    
    Public Declare Function VirtualAllocEx Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpAddress As Integer, _
    ByVal dwSize As Integer, _
    ByVal flAllocationType As Integer, _
    ByVal flProtect As Integer) As Integer
    
    Public Declare Function WriteProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer
    
    Public Declare Function GetProcAddress Lib "kernel32" ( _
    ByVal hModule As Integer, ByVal lpProcName As String) As Integer
    
    Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" ( _
    ByVal lpModuleName As String) As Integer
    
    Public Declare Function CreateRemoteThread Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpThreadAttributes As Integer, _
    ByVal dwStackSize As Integer, _
    ByVal lpStartAddress As Integer, _
    ByVal lpParameter As Integer, _
    ByVal dwCreationFlags As Integer, _
    ByRef lpThreadId As Integer) As Integer
    
    Public Declare Function OpenProcess Lib "kernel32" ( _
    ByVal dwDesiredAccess As Integer, _
    ByVal bInheritHandle As Integer, _
    ByVal dwProcessId As Integer) As Integer
    
    Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
    ByVal lpClassName As String, _
    ByVal lpWindowName As String) As Integer
    
    Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" ( _
    ByVal hObject As Integer) As Integer
    
    
    Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
    
    Private Sub Inject()
    On Error GoTo 1 ' If error occurs, app will close without any error messages
    Timer1.Stop()
    Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
    TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
    pszLibFileRemote = OpenFileDialog1.FileName
    pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
    TargetBufferSize = 1 + Len(pszLibFileRemote)
    Dim Rtn As Integer
    Dim LoadLibParamAdr As Integer
    LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
    Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
    CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
    CloseHandle(TargetProcessHandle)
    1: Me.Show()
    End Sub

    Where i put a code in Public Class? I can't find them so I need help.


    It's my first time coding C++
    Washington Approved Legalize Marijuana!
    I live in Washington, I Have Marlboro Weed


  2. #2
    shafaga's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    15
    My Mood
    Angry
    you may see it added auto or it will deleted auto after adding some () at end or the left from right will be wrong like this )( this will be FTOLS

    thx if i helped

  3. #3
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    The 2nd code is visual basic LOOOOOOOOL

    Code:
    Public Class Form1
    
    End Class
    PS: It's detected.
    Last edited by Biesi; 09-10-2012 at 08:59 AM.

  4. #4
    Lightning'sBackup's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    86
    Reputation
    57
    Thanks
    8
    My Mood
    Lonely
    lol first code is in C++

Similar Threads

  1. pa help naman how to make dll injector using dev c++ ?
    By public hucks in forum WarRock Philippines Help & Discussions
    Replies: 18
    Last Post: 09-03-2012, 06:40 PM
  2. [Help] Please i need help making a .dll hack for crossfire
    By The Sam14 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 0
    Last Post: 07-28-2012, 08:19 AM
  3. Need help making working .dll files for Combat arms
    By SPIKESx in forum Combat Arms Coding Help & Discussion
    Replies: 9
    Last Post: 11-16-2011, 10:09 PM
  4. [Solved] need Help using .dll's and injectors
    By ryansnipe007 in forum CrossFire Help
    Replies: 8
    Last Post: 08-06-2011, 02:36 PM
  5. [Solved] Hey Guys I Need Help Making Combat Arms DLL HACK
    By shiningliger in forum Combat Arms Help
    Replies: 2
    Last Post: 08-04-2011, 04:23 AM