Giter VIP home page Giter VIP logo

taintall's Introduction

TaintAll

TaintAll, a taint analysis and concolic execution tool.

Installation

  • Install boost >= 1.5
  • Install pin = 2.14
  • cd your_pin_path/source/tools
  • git clone https://github.com/onura/TaintAll.git
  • cd TaintAll
  • ./compile.sh
  • open ida-plugin/ta_plugin.py and set CONF_PIN_PATH variable to point your pin directory
  • cp ta_plugin.py into IDA Pro plugin directory.

Usage

  • init plugin
t = ta_plugin()
t.run(1)
  • start tainting at the address
t.a.startTaintAt(0x100000EB0)
  • stop tainting at the address
t.a.stopTaintAt(0x100000F41)
  • taint 5 bytes from the address that RSI register is pointing to
t.a.taintPointer(0x100000F17, Registers.RSI, 5)
  • taint EAX registers
t.a.taintRegister(0x100000BBC, Registers.RAX, RegParts.DWORD)
  • taint 4 bytes from the memory 0x100000992
t.a.taintAddress(0x100000BBC, 0x100000992, 4)
  • start analysis
t.a.startDynamicAnalysis()
  • show/hide taints
t.a.hideTaints()
t.a.showTaints()
  • print tainted registers/memories at the address which the cursor is pointing
t.a.printRegsEA()
t.a.printMemsEA()
  • print all affected addresses
t.a.printAffectedAddrs()

taintall's People

Contributors

onura avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.