Skip to main content

High level API on top of r2pipe

Project description

R2Papi for Python

This is PoC of the future autogenerated API bindings for r2pipe.

Usage example

We need to have a common API definition for all languages across r2pipe.

import r2pipe
from r2papi import R2Api

r = R2Api (r2pipe.open("/bin/ls"))
if r.info().stripped:
	print "This binary is stripped"

r.searchIn('io.sections.exec')
r.analyzeCalls()
print r.at('entry0').hexdump(16)
print r.at('sym.imp.setenv').hexdump(16)

print r.at('entry0').disasm(10)

r.seek('entry0');
r.analyzeFunction()
print r.disasmFunction()
for fcn in r.functions():
	print fcn.name

r[0:10]
# '\x7fELF\x02\x01\x01\x00\x00\x00'

r[1]
# 'E'

r.quit()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

r2papi-0.1.2.tar.gz (13.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page