Files
CopilotGitHubcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
6693085677 Consolidate scattered CVE/exploit dirs and restore Markdown link format in README (#78)
* chore: consolidate CVE and exploit directories and update README links

* fix: revert README links from HTML anchors back to Markdown format

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-07-04 15:42:15 +08:00

13 lines
277 B
Makefile

#
# Makefile
#
# Created by Ilias Morad.
# Copyright © 2019 Ilias Morad. All rights reserved.
#
main: exploit.c gadgets.c kernel.s
nasm -f macho32 -o kernel.o kernel.s
gcc -o exploit -m32 -Wl,-pagezero_size,0 -masm=intel exploit.c gadgets.c kernel.o
clean:
rm exploit *.o