Add 7.61 HV exploit.

This commit is contained in:
Andy Nguyen
2026-06-30 10:44:21 +02:00
parent 5a5aab694b
commit 975e57ccd2
16 changed files with 421 additions and 6 deletions

18
shellcode_0607/linker.ld Normal file
View File

@@ -0,0 +1,18 @@
/* linker.ld */
ENTRY(main)
SECTIONS
{
. = 0x1000; /* 0x1000 to avoid warnings from linker */
/* Place our custom header first */
.shell_code :
{
*(.entry_point)
*(.text)
*(.text.*)
*(.data*)
*(.rodata*)
*(.bss)
*(.bss.*)
}
}