The argument is a math expression that can contain flag names, parenthesis, addition, substraction, multiplication of immediates of contents of memory using brackets.

Some example commands:

Observe how the prompt offset changes. The first line moves the current offset to the address 0x10.

The second does a relative seek 4 bytes forward.

And finally, the last 2 commands are undoing, and redoing the last seek operations.

Instead of using just numbers, we can use complex expressions, or basic arithmetic operations to represent the address to seek.

To do this, check the ?$? Help message which describes the internal variables that can be used in the expressions. For example, this is the same as doing s+4 .

  1. [0x00000000]> s $$+4
  1. [0x00000000]> s rsp+0x40

Here’s the full help of the s command. We will explain in more detail below.

  1. [0x00000000]> s?
  2. Usage: s # Help for the seek commands. See ?$? to see all variables
  3. | s Print current address
  4. | s.hexoff Seek honoring a base from core->offset
  5. | s:pad Print current address with N padded zeros (defaults to 8)
  6. | s addr Seek to address
  7. | s- Undo seek
  8. | s-* Reset undo seek history
  9. | s- n Seek n bytes backward
  10. | s--[n] Seek blocksize bytes backward (/=n)
  11. | s+ Redo seek
  12. | s+ n Seek n bytes forward
  13. | s[j*=!] List undo seek history (JSON, =list, *r2, !=names, s==)
  14. | s/ DATA Search for next occurrence of 'DATA'
  15. | sa [[+-]a] [asz] Seek asz (or bsize) aligned to addr
  16. | sb Seek aligned to bb start
  17. | sC[?] string Seek to comment matching given string
  18. | sf Seek to next function (f->addr+f->size)
  19. | sf function Seek to address of specified function
  20. | sf. Seek to the beginning of current function
  21. | sg/sG Seek begin (sg) or end (sG) of section or file
  22. | sl[?] [+-]line Seek to line
  23. | sn/sp ([nkey]) Seek to next/prev location, as specified by scr.nkey
  24. | so [N] Seek to N next opcode(s)
  25. | sr pc Seek to register
  26. | ss Seek silently (without adding an entry to the seek history)
  27. > s 10+0x80 ; seek at 0x80+10

If you want to inspect the result of a math expression, you can evaluate it using the ? command. Simply pass the expression as an argument. The result can be displayed in hexadecimal, decimal, octal or binary formats.

There are also subcommands of ? that display the output in one specific format (base 10, base 16 ,…). See ?v and ?vi.

In the visual mode, you can press (undo) or U (redo) inside the seek history to return back to previous or forward to the next location.

As a test file, let’s use a simple hello_world.c compiled in Linux ELF format. After we compile it let’s open it with radare2:

  1. $ r2 hello_world

Now we have the command prompt:

  1. [0x00400410]>

And it is time to go deeper.

Seek to an address 0x0. An alternative command is simply 0x0

  1. [0x00400410]> s 0x0
  2. [0x00000000]>

Print current address:

There is an alternate way to print current position: ?v $$.

Seek N positions forward, space is optional:

  1. [0x00000000]> s+ 128
  2. [0x00000080]>

Undo last two seeks to return to the initial address:

  1. [0x00000080]> s-
  2. [0x00000000]> s-
  3. [0x00400410]>

We are back at 0x00400410.

There’s also a command to show the seek history:

  1. [0x00400410]> s*
  2. f undo_3 @ 0x400410
  3. f undo_2 @ 0x40041a
  4. f undo_1 @ 0x400410
  5. f undo_0 @ 0x400411
  6. # Current undo/redo position.