Skip to content

Commit

Permalink
Fix a typo in an example
Browse files Browse the repository at this point in the history
Thanks to Gotcha for pointing it out!
  • Loading branch information
mrexodia authored Jun 11, 2023
1 parent 80975aa commit f265a01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ prolog_end = 0x00007FFFC81C06D6 + 7

dp = Dumpulator("my.dmp", quiet=True)
dp.regs.rcx = 0x1337
dp.start(start=prolog_start, end=prolog_end)
dp.start(begin=prolog_start, end=prolog_end)
print(f"rsp: {hex(dp.regs.rsp)}")
```

Expand Down Expand Up @@ -231,4 +231,4 @@ What sets dumpulator apart from sandboxes like speakeasy and qiling is that the
- [herrcore](https://twitter.com/herrcore) for inspiring me to make this
- [secret club](https://secret.club)
- [JetBrains](https://www.jetbrains.com/opensource/) for free PyCharm license!
- [Image by GraphiqaStock](https://www.freepik.com/free-vector/virus-internet_1040653.htm) on Freepik
- [Image by GraphiqaStock](https://www.freepik.com/free-vector/virus-internet_1040653.htm) on Freepik

0 comments on commit f265a01

Please sign in to comment.