Skip to content
View sumin-world's full-sized avatar
:octocat:
:octocat:

Block or report sumin-world

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 250 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
sumin-world/README.md

sumin-world πŸ¦€

πŸ€” Why this name?
use std::ops::BitOr;

struct S(&'static str);

impl BitOr for S {
    type Output = String;
    fn bitor(self, rhs: Self) -> Self::Output {
        format!("{} in {}!", self.0, rhs.0)
    }
}

fn main() {
    println!("{}", S("sum") | S("world"));
}

Sometimes the answer is in the code itself ✨

Typing SVG


πŸ”§ Tech Stack


πŸš€ Featured Projects

🌐 Network Programming

  • TCP HTTP Client (C)

    • Non-blocking connect, DNS multi-A failover, recv timeout
    • Production-ready HTTP/1.1 implementation
  • Multi-client Echo Server (C)

    • select() based I/O multiplexing
    • Timeout & keepalive support

πŸ”’ System Security & Programming

  • Signal Handling Demo (C)

    • POSIX signal handling with CI/CD automation
    • Interactive demo with automated testing
  • Tiny Shell (C)

    • Job control, signal handling, race condition prevention
    • Process management & I/O redirection

πŸ¦€ Rust Experiments

  • One-liner Challenge: sum in world = suminworld!
  • Custom operators & trait implementations

πŸ”₯ Recent Activity

  1. ⬆️ Pushed 1 commit(s) to sumin-world/suminworld-ctf
  2. ⬆️ Pushed 2 commit(s) to sumin-world/AeroCrab
  3. πŸŽ‰ Merged PR #1 in sumin-world/AeroCrab
  4. ⬆️ Pushed 1 commit(s) to sumin-world/suminworld-ctf
  5. ⬆️ Pushed 1 commit(s) to sumin-world/suminworld-ctf

πŸ“ Latest Blog Posts


🐿️ Research Interests

  • System Hacking: Buffer overflow, heap exploitation, ROP chains
  • Network Security: ARP/DNS spoofing, session hijacking, packet analysis
  • Linux Internals: Syscalls, process management, memory subsystem
  • CTF Practice: Dreamhack, pwnable.kr, OverTheWire

πŸ† Competitive Programming

count

πŸ’‘ "Learning by building, one system call at a time"

Pinned Loading

  1. rust-security-suminworld rust-security-suminworld Public

    let'sRUst!

    Rust

  2. gluesql gluesql Public

    Forked from gluesql/gluesql

    GlueSQL is quite sticky. It attaches to anywhere.

    Rust

  3. suminworld-system-lab suminworld-system-lab Public

    System programming & networking lab (C, Linux, OSTEP practice)

    C

  4. AeroCrab AeroCrab Public

    BitCrab Alumni Code Study

    C