Skip to content
View 1ndahous3's full-sized avatar
👌
nice
👌
nice

Block or report 1ndahous3

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Pinned Loading

  1. br3k br3k Public

    We have pentest framework at home.

    Rust 9 1

  2. python3 script to save PE modules fr... python3 script to save PE modules from Windows memory dumps (MDMP)
    1
    import sys
    2
    import struct
    3
    
                  
    4
    MDMP_HEADER_SIZE = 4096
    5
    MDMP_SIGNATURE = b'MDMP'
  3. python3 script to save ELF modules f... python3 script to save ELF modules from Linux memory dumps (core dump)
    1
    import sys
    2
    import struct
    3
    from ctypes import *
    4
    
                  
    5
    # ELF Header Definitions