mirror of
https://github.com/Noratrieb/jompiler.git
synced 2026-01-14 14:05:01 +01:00
ASLR in action
This commit is contained in:
parent
96f2dcf8af
commit
741b1000b3
2 changed files with 49 additions and 10 deletions
6
input.c
6
input.c
|
|
@ -1,10 +1,10 @@
|
|||
// #include<elf.h>
|
||||
|
||||
int main(int argc)
|
||||
int main(int argc, int argv)
|
||||
{
|
||||
int x = 100;
|
||||
int x = 200;
|
||||
return x;
|
||||
thisismyfakeconstantbecauseidonthaveconstant(x - 1);
|
||||
return argv;
|
||||
}
|
||||
|
||||
int thisismyfakeconstantbecauseidonthaveconstant(int x)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue