2

enter image description here

The loop starts with (ˇ) sign. I want to go to the loop's end (^). But I don't know a shortcut to do so.

2
  • Put cursor on instruction and say "run to cursor". Commented Jun 22, 2016 at 16:28
  • @TruthSerum I think it's about jumping (in the CPU view, not with the IP) to the other "end" of the loop/jump brace, not executing until reaching a certain known location. Commented Jun 27, 2016 at 12:49

1 Answer 1

2

It's very simple: Press Enter or right-click and choose "Follow". OllyDbg will then follow the address in the CPU window.

This also works with calls, references in movs or dds, etc., basically everywhere where the brace shows up on the left side.

Sign up to request clarification or add additional context in comments.

1 Comment

By the way you can press minus (in OllyDbg: Numpad minus) to go back to the previous location you were on, and plus to go back from going back (i.e. forward). So I often peek into functions that would get called or branches that would be jumped to by pressing Enter, checking what the function/branch does, and then minus to get back.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.