HackerTrans
トップ新着トレンドコメント過去質問紹介求人

rrampage

4,881 カルマ登録 13 年前

投稿

Poison, redzones and shadows: inside KASAN

bootlin.com
18 ポイント·投稿者 rrampage·8 日前·0 コメント

How to Train Your Goblin

goblins.mchen.workers.dev
4 ポイント·投稿者 rrampage·先月·0 コメント

Dealing with cancel safety in async Rust

rfd.shared.oxide.computer
7 ポイント·投稿者 rrampage·先月·0 コメント

Academic Research Papers in Open Source Code

papergrep.dev
2 ポイント·投稿者 rrampage·8 か月前·0 コメント

PoC for Critical Lua Engine Vulnerabilities in Redis 7.4.5

redrays.io
3 ポイント·投稿者 rrampage·9 か月前·0 コメント

Nothing fails like a history of success

surfingcomplexity.blog
1 ポイント·投稿者 rrampage·10 か月前·0 コメント

When SSRF Is Enough: Full Docker Escape on Windows Docker Desktop(CVE-2025-9074)

blog.qwertysecurity.com
1 ポイント·投稿者 rrampage·11 か月前·0 コメント

AUR Chaos Malware: An Analysis

mh4ckt3mh4ckt1c4s.xyz
3 ポイント·投稿者 rrampage·11 か月前·0 コメント

Perplexity is using stealth, undeclared crawlers to evade no-crawl directives

blog.cloudflare.com
1,315 ポイント·投稿者 rrampage·11 か月前·748 コメント

Firefox-patch-bin, librewolf-fix-bin AUR packages contain malware

lists.archlinux.org
146 ポイント·投稿者 rrampage·12 か月前·134 コメント

How I Became the First Linux User in India

medium.com
2 ポイント·投稿者 rrampage·12 か月前·0 コメント

Understanding Quake's Fast Inverse Square Root

betterexplained.com
2 ポイント·投稿者 rrampage·昨年·0 コメント

Pgconf.dev 2025 Wraps Up with Great Success in Montreal

hornetlabs.ca
1 ポイント·投稿者 rrampage·昨年·0 コメント

A disk is a bunch of bits (2023)

cyberdemon.org
38 ポイント·投稿者 rrampage·昨年·6 コメント

Creative usernames and Spotify account hijacking

engineering.atspotify.com
4 ポイント·投稿者 rrampage·昨年·0 コメント

An Implementation of J – Roger Hui (1992) [pdf]

jsoftware.com
2 ポイント·投稿者 rrampage·昨年·0 コメント

A Quick Journey into the Linux Kernel

lucavall.in
3 ポイント·投稿者 rrampage·昨年·0 コメント

How fast can you open 1000 files?

lemire.me
5 ポイント·投稿者 rrampage·昨年·1 コメント

The Trouble with Leader Elections in distributed systems

blog.joemag.dev
6 ポイント·投稿者 rrampage·昨年·0 コメント

Defining LLM Red Teaming

developer.nvidia.com
1 ポイント·投稿者 rrampage·昨年·0 コメント

コメント

rrampage
·4 か月前·議論
Fun read! I built a minimal Linux shell [0] in c and Zig last year which does not depend on libc. It was a great way to learn about execve, the new-ish clone3 syscall and how Linux starts a process. Parsing strings is the least fun part of the building the shell.

[0] https://gist.github.com/rrampage/5046b60ca2d040bcffb49ee38e8...
rrampage
·7 か月前·議論
Recurse center is awesome! The community is curious, kind and supportive. I did 2 batches there and each one expanded my horizons as a programmer.
rrampage
·昨年·議論
I've been building small programs in Zig, C and ARM64 assembly without relying on libc and only using Linux syscalls directly.

Some examples:

- A minimal C shell with built-ins like cd, pwd, type: https://gist.github.com/rrampage/5046b60ca2d040bcffb49ee38e8...

- Terminal Snake game which fits in a QR code using Linux syscalls for drawing: https://gist.github.com/rrampage/2a781662645dc2fcba45784eb58...

- HTTP server with sendfile support in ARM64 assembly: https://gist.github.com/rrampage/d31e75647a77badb3586ebae1e4...

I learned to handcraft a static ELF binary using just GNU assembler (no linker): https://gist.github.com/rrampage/74586d0a0a451f43b546b169d46... . Trying to see if I can craft a small assembler in ARM64
rrampage
·昨年·議論
The paper title is "Sandboxing: Foolproof Boundaries vs. Unbounded Foolishness"
rrampage
·2 年前·議論
Yurichev's SAT/SMT by Example [0] is a great (free!) resource for learning how to model problems to SAT/SMT

[0] - https://smt.st/