All Projects → securisec → r2wiki

securisec / r2wiki

Licence: other
Radare 2 wiki

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to r2wiki

r2yara
r2yara - Module for Yara using radare2 information
Stars: ✭ 30 (-66.29%)
Mutual labels:  radare2, r2
radare2-book
Radare2 official book
Stars: ✭ 628 (+605.62%)
Mutual labels:  radare2, radare
rair-core
RAIR: RAdare In Rust
Stars: ✭ 63 (-29.21%)
Mutual labels:  radare2, radare
Radare2 Pm
Package Manager for Radare2
Stars: ✭ 100 (+12.36%)
Mutual labels:  radare2
Reversing List
Reversing list
Stars: ✭ 106 (+19.1%)
Mutual labels:  radare2
Radare2 Extras
Source graveyard and random candy for radare2
Stars: ✭ 202 (+126.97%)
Mutual labels:  radare2
ghidra-r2web
Ghidra plugin to start an r2 webserver to let r2 interact with it
Stars: ✭ 38 (-57.3%)
Mutual labels:  radare2
Arcore Patch
Attempt to get ARCore Preview 2 running on unsupported devices
Stars: ✭ 74 (-16.85%)
Mutual labels:  radare2
re-scripts
IDA, Ghidra and Radare2 scripts. Also Android scripts to make your life easier.
Stars: ✭ 47 (-47.19%)
Mutual labels:  radare2
R2frida Wiki
This repo aims at providing practical examples on how to use r2frida
Stars: ✭ 168 (+88.76%)
Mutual labels:  radare2
Jni helper
Find JNI function signatures in APK and apply to reverse tools.
Stars: ✭ 154 (+73.03%)
Mutual labels:  radare2
Jupyter Radare2
Just a simple radare2 Jupyter kernel
Stars: ✭ 109 (+22.47%)
Mutual labels:  radare2
Radare2 R2pipe
Access radare2 via pipe from any programming language!
Stars: ✭ 212 (+138.2%)
Mutual labels:  radare2
Radare2 Bindings
Bindings of the r2 api for Valabind and friends
Stars: ✭ 100 (+12.36%)
Mutual labels:  radare2
flashre
Tools to reverse the Toshiba FlashAir SD cards
Stars: ✭ 23 (-74.16%)
Mutual labels:  radare2
R2m2
radare2 + miasm2 = ♥
Stars: ✭ 86 (-3.37%)
Mutual labels:  radare2
Radare2
UNIX-like reverse engineering framework and command-line toolset
Stars: ✭ 15,412 (+17216.85%)
Mutual labels:  radare2
R2vmi
Hypervisor-Level Debugger based on Radare2 / LibVMI, using VMI IO and debug plugins
Stars: ✭ 130 (+46.07%)
Mutual labels:  radare2
R2con2019
r2con2019 - slides and materials
Stars: ✭ 128 (+43.82%)
Mutual labels:  radare2
Radeco
radare2-based decompiler and symbol executor
Stars: ✭ 313 (+251.69%)
Mutual labels:  radare2

Radare2 Wikianalytics

repo size Documentation Read the Docs Twitter Follow Analytics

The goal of this wiki is to make a searchable collection of documents which can be used to find various use cases and help regarding using r2. This is a live wiki and the goal is to updated frequently. If you have a tip, use case or plugin you would like to suggest, either create an issue, or tweet to me at @securisec

This wiki can be used either from the online version, local webapp or from the r2 shell.

Make sure to update the local version everytime before using. The wiki is updated frequently

Credits:

Tons of great youtube videos, the radare2 irc channel, twitter, too many to list. Wiki is powered by https://wiki.js.org/

Online

The wiki is available online at readthedocs http://r2wiki.readthedocs.io/en/latest/

The wiki is available online at radare2.securisec.com
Both the online version and local version supports full search capability. The online version is always upto date.

r2pm installation

  • This wiki can also be installed from r2pm using r2pm -i r2wiki
  • Once installed, use inside r2 with $wiki "some term"
  • Update inside r2 with $wiki -u ''

Local webapp Installation

mkdocs installation

  • pip install mkdocs
  • git clone https://github.com/securisec/r2wiki-rtd.git
  • cd r2wiki-rtd
  • mkdocs serve
  • Open browser to http://localhost:8000

Wiki.js installation

  • Install wiki.js by following these instructions
  • Copy all the files in this repo to the repo directory, or run git clone https://github.com/securisec/radare2_wiki.git repo/ from inside your wiki directory.
  • Allow some time for the search to finish indexing.

Update local installation

  • To update to the latest (this wiki will be updated frequently 😜), simply run
    git pull origin master from inside the repo directory.

From r2 shell

  • Directions can be found in the r2wiki.py

  • In order for this to work, you need a local copy of the wiki. You can get it from github

  • The argument supports regex and the output is in less format

  • Because the output is using less, you can highlight/search using / or show only matching lines by using &

  • /path/to/repo/r2wiki.py needs to be absolute path

  • This can be accessed multiple ways.

    • Method 1: Set an alias in your ~/.radare2rc file
    echo '$'wiki="#"'!'"pipe python /path/to/repo/r2wiki.py" >> ~/.radare2rc
    • Invoke as $wiki arg

    • Method 2: Set an alias from inside r2 shell:
     $wiki=#!pipe python /path/to/r2wiki.py
    
    • invoke as $wiki arg

    • Method 3:
    #!pipe python /path/to/repo/r2wiki.py
    

Tips for local wiki (applies to wiki.js version 1.0.12)

To style your local wiki in a manner similar to the online version, add the following to the /wiki_installation_dir/server/views/layout.pug under the section marked as //- JS / CSS

    style(type='text/css').
      .mkcontent {
        font-family: Arial;
      }

    style(type='text/css').
      .mkcontent {
        font-size: 16px;
      }

To change the search behaviour of your local wiki similar to that of the online version, change the following lines in server/libs/search.js

- Line 73 to 1
- Line 78 to 0
- Line 88 to 3
- Line 175 to 20
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].