Skip to content
View p4nd4sec's full-sized avatar

Block or report p4nd4sec

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
p4nd4sec/README.md

Hi there 👋

p4nd4sec's GitHub Stats

Pinned Loading

  1. Template DLL rust Template DLL rust
    1
    //cargo.toml
    2
    //[dependencies]
    3
    //winapi = { version = "0.3.9", features = ["minwindef","winuser"] }
    4
    
                  
    5
    //[lib]
  2. rust-loadlibrary.rs rust-loadlibrary.rs
    1
    use std::ffi::c_void;
    2
    use std::ptr;
    3
    
                  
    4
    type Error = u32;
    5
    type FnMessageBox = extern "stdcall" fn(hWnd: *const c_void, lpText: *const u16, lpCaption: *const u16, uType: u32) -> i32;
  3. Convert_string.rs Convert_string.rs
    1
    //Ref https://gist.github.com/jimmychu0807/9a89355e642afad0d2aeda52e6ad2424
    2
    use std::str;
    3
    
                  
    4
    fn main() {
    5
      // -- FROM: vec of chars --
  4. llvm-pass-skeleton llvm-pass-skeleton Public

    Forked from sampsyo/llvm-pass-skeleton

    example LLVM pass

    C++

  5. ret-sync ret-sync Public

    Forked from bootleg/ret-sync

    ret-sync is a set of plugins that helps to synchronize a debugging session (WinDbg/GDB/LLDB/OllyDbg2/x64dbg) with IDA/Ghidra/Binary Ninja disassemblers.

    C