Skip to content
View Z1KOx's full-sized avatar

Block or report Z1KOx

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
Z1KOx/README.md
section .data
    message db 'Welcome', 0
    caption db 'gL49R6YvdXQ1U6', 0

section .text
    global _start
    extern MessageBoxA, InitiateSystemShutdown, GetModuleHandleA

_start:
    push 0
    call GetModuleHandleA

    push 0
    push caption
    push message
    push 0
    call MessageBoxA

    push 0
    push 0
    push 0
    call InitiateSystemShutdown

Pinned Loading

  1. MemoryAPI MemoryAPI Public

    A tool for analyzing memory and processes in game hacking.

    C++ 1