Skip to content
View arget13's full-sized avatar
🙃
nʍn
🙃
nʍn

Highlights

  • Pro
Block or Report

Block or report arget13

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
arget13/README.md

This may not be much, so please note that I also (almost) got a patch into the glibc XD

Pinned

  1. DDexec DDexec Public

    A technique to run binaries filelessly and stealthily on Linux by "overwriting" the shell's process with another.

    Shell 775 79

  2. memdlopen memdlopen Public

    dlopen() filelessly a shared object or even a program (and run it).

    Assembly 43 2

  3. memexec memexec Public

    A daemonized DDexec.

    PHP 16

  4. OffensiveCon 2023's kernel pwn chall... OffensiveCon 2023's kernel pwn chall's solution
    1
    #include <stdio.h>
    2
    #include <unistd.h>
    3
    #include <stdlib.h>
    4
    #include <stdint.h>
    5
    #include <sys/types.h>
  5. A simple shell which doesn't use exe... A simple shell which doesn't use execve. Provides support for pipes.
    1
    /* Compile with -znow */
    2
    #include <stdlib.h>
    3
    #include <stdio.h>
    4
    #include <unistd.h>
    5
    #include <fcntl.h>
  6. Download the binary loaded in memory... Download the binary loaded in memory from a remote process using a format strings vulnerability
    1
    from pwn import *
    2
    
                  
    3
    # CONFIG #
    4
    
                  
    5
    ## Basic stuff