https://android.jlelse.eu/hacking-android-app-with-frida-a85516f4f8b7
https://www.frida.re/docs/android/
https://gsec.hitb.org/materials/sg2016/whitepapers/Hacking%20Soft%20Tokens%20-%20Bernhard%20Mueller.pdf
Senin, 24 Desember 2018
Hacking Android app with Frida
Selasa, 02 Mei 2017
Selasa, 21 Februari 2017
Malboxes
https://gosecure.net/2017/02/16/introducing-malboxes-a-tool-to-build-malware-analysis-virtual-machines/
Introducing Malboxes: a Tool to Build Malware Analysis Virtual Machines
decompile py2exe
* https://github.com/matiasb/unpy2exe
* https://github.com/NVISO-BE/decompile-py2exe
Sabtu, 08 Februari 2014
SmartDec : Native code to C/C++ decompiler.
Standalone
- Supports x86 and x86-64 architectures.
- Reads ELF and PE file formats.
- Reconstructs functions, their names and arguments, local and global variables, expressions, integer, pointer and structural types, all types of control-flow structures, including switch.
- Has a nice graphical user interface with one-click navigation between assembler code and reconstructed program.
- The only decompiler that handles 64-bit code.
IDA Pro plug-in
- Enjoys all executable file formats supported by the disassembler.
- Benefits from IDA's signature search, parsers of debug information, and demanglers.
- Push-button decompilation of a chosen function or the whole program.
- Easy jumping between the disassembler and the decompiled code.
- Full GUI integration.
(Read More..)
Rabu, 15 Januari 2014
Sabtu, 14 Desember 2013
Minggu, 08 Desember 2013
Sabtu, 09 November 2013
Jumat, 08 November 2013
Minggu, 03 November 2013
x86 Instruction Encoding Revealed: Bit Twiddling for Fun and Profit
Sabtu, 10 Agustus 2013
ospy
oSpy is a tool which aids in reverse-engineering
software running on the Windows platform. With the amount of proprietary
systems that exist today (synchronization protocols, instant messaging,
etc.), the amount of work required to keep up when developing
interoperable solutions will quickly become a big burden when limited to
traditional techniques. However, when the sniffing is done on the API
level it allows a much more fine-grained view of what's going on. Seeing
return-addresses for each recv/send call (for example), can prove
useful when you want to look at the processing code at that spot in a
debugger or static analysis tool. And if an application uses encrypted
communication it's easy to intercept these calls as well. oSpy
already intercepts one such API, and is the API used by MSN Messenger,
Google Talk, etc. for encrypting/decrypting HTTPS data. Another neat
feature is when wanting to see how an application behaves when in a
firewalled environment. Normally you would have to simulate such an
environment by configuring firewalls etc., which not only is
time-consuming, but might also cripple the rest of the applications
you've got running. oSpy solves this problem by a feature called
softwalling which allows you to set rules based on the type of
function-call, the return-address, local/remote address/port, etc., and
lets you choose which error to signal back to the application when the
rule matches. This way you can make the application think that for
example a connect() timed out, connection was refused, there was no
route to host, etc.
Getting Involved
Want to help out? oSpy is an open source project and contributions are most appreciated! Whether you want to help out with artwork, code, documentation or anything else, don't hesitate to contact me at oleavr at gmail dot com.http://code.google.com/p/ospy/ (Read More..)
HookME 0.2 – API Spying Tool
http://www.sectechno.com/2013/04/28/hookme-0-2-api-spying-tool/
Description
HookME is a software designed for intercepting communications by hooking the desired process and hooking the API calls for sending and receiving network data (even SSL clear data). HookMe provides a nice graphic user interface allowing you to change the packet content in real time, dropping or forwarding the packet. It also has a python system plugin to extend the HookMe functionality.It can be used for a lot of purposes such as:
- Analyzing and modifying network protocols
- Creation of malware or backdoors embebed into network protocols
- Protocol vulnerability memory patching
- Firewall at protocol layer
- As postexplotation tool
- whatever you can create with plugins using your imagination
https://code.google.com/p/hookme/ (Read More..)
frida : Everything in reverse, for free! {python}
😹 Frida is an open-source toolkit for interactive and scriptable ƃuıɹǝǝuıƃuǝ ǝsɹǝʌǝɹ.
😹 You can inspect and manipulate processes running locally, over the network, or across platforms.
😹 You can inject your own scripts into black box processes to execute custom debugging logic.
http://frida.github.io/