https://github.com/inori/henkakuresearch
https://github.com/inori/henkakuresearch
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/inori/henkakuresearch
- Owner: Inori
- Created: 2018-08-07T13:31:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-07T13:34:16.000Z (almost 8 years ago)
- Last Synced: 2025-05-03T19:39:02.058Z (about 1 year ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vitadays
========
Dependencies
------------
python2
python-capstone
webkooz 0.1
-----------
Allows to play with the Vita's webkit process' memory by leveraging the webkit vuln.
To use, first start the server:
```
chmod a+x serv.py
./serv.py
```
Then with the Vita browse to `http://:8888`.
If all goes well you will see some output from the `serv.py` script.
When you see `%> ` it means that initialization is done.
The supported commands are:
- **x** `addr` `len` : to display `len` bytes from `addr` in a hex-editor-like fashion
- **dis** `addr` `len` `mode` : to disassemble `len` bytes from `addr` in `mode` (thumb or arm, latter is default)
- **dump** `addr` `len` `fname` : to dump `len` bytes from `addr` to `fname`
- **ss** `begaddr` `endaddr` `pattern`: to search for the string `pattern` in [`begaddr`, `endaddr`[
- **reload** : to reload/reset everything
- **scanback** `addr` `step` : to scan back starting from `addr` with a step of `step` until the Vita crashes
- **dispim** `begaddr` `n`: display `n` formatted module imports starting from `begaddr`
- **dispx** `begaddr` `n`: display `n` formatted module exports starting from `begaddr`
- **dispminf** `begaddr`: display a formatted module\_info starting from `begaddr`
- **scanm** `begaddr` : scan for a module\_info starting from `begaddr`
- **exit** : to exit