Skip to content
View ali0gamer1's full-sized avatar

Block or report ali0gamer1

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

Pinned Loading

  1. Game-Hacking Game-Hacking Public

    C++ 4

  2. data transfer through memory-mapped ... data transfer through memory-mapped file.
    1
    //link: https://stackoverflow.com/questions/22047673/transferring-data-through-a-memory-mapped-file-using-win32-winapi
    2
    //First process (sends the data):
    3
    #include <windows.h>
    4
    #include <stdio.h>
    5
    #include <conio.h>
  3. pneumatic validator solution hackthebox pneumatic validator solution hackthebox
    1
    from string import ascii_letters, digits
    2
    from subprocess import run, PIPE
    3
    from threading import Thread
    4
    
                  
    5
    pasw = "HTB{"
  4. malware_sources malware_sources Public

    Forked from Chiggins/malware_sources

    Pascal

  5. CSAW Quals'17 SVC exploit (my own libc) CSAW Quals'17 SVC exploit (my own libc)
    1
    from pwn import *
    2
    
                  
    3
    target = process("./svc")
    4
    
                  
    5
    
                  
  6. google ctf beginner reversing (no sat) google ctf beginner reversing (no sat)
    1
    """
    2
     ATTENTION: run in gdb using: "gdb ./beginner" and then write: "source lolme.py" 
    3
    4
    """
    5
    import gdb