diff --git a/Reverse/Reykjavik/README.md b/Reverse/Reykjavik/README.md index 9d17e16..aeac73f 100644 --- a/Reverse/Reykjavik/README.md +++ b/Reverse/Reykjavik/README.md @@ -4,6 +4,8 @@ The main idea to find the flag is to use GDB to navigate across instructions. #### Step-1: Using `gdb -q Rejkjavik`, we get can hop on to the `main` function using break points. The command for the same would be `b * main`. After reaching, using `ni` Next Instriction, we land up to the flag as mentioned below. +**Note: You should also learn the SLR for stripped and non-stripped binaries.** + #### Step-2: Finally, the flag becomes: -`CTFlearn{Eye_L0ve_Iceland_U}` \ No newline at end of file +`CTFlearn{Eye_L0ve_Iceland_}`