Skip to content
View 00nx's full-sized avatar

Block or report 00nx

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

v4ms

section .data
    message db 'spinnin back', 0

section .text
    global _start

_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, message
    mov edx, 9
    int 0x80

    mov eax, 1
    xor ebx, ebx
    int 0x80

Popular repositories Loading

  1. exodus-decryptor exodus-decryptor Public

    simple exodus seed phrase decryptor

    JavaScript 8 3

  2. vc-runner vc-runner Public

    discord mass vc joiner written purely in javascript, fast and stable for running 24/7 even with 100+ tokens.

    JavaScript 2

  3. 00nx 00nx Public

  4. tcp-connection tcp-connection Public

    an example for a simple tcp connection written purely in C

    C

  5. hashed hashed Public

    Forked from chrisveness/crypto

    Reference implementations of AES & SHA cryptographic functions

    JavaScript