Git Product home page Git Product logo

cuckoo-osx-analyzer's Introduction

cuckoo-osx-analyzer

Build Status GitHub version Code Climate My GSoC project aiming at building an OS X analyzer for Cuckoo Sandbox project.

⚠️ WIP ⚠️

Usage

See also: bootstrap_host.sh and bootstrap_guest.sh

Guest machine setup
  1. Install pt_deny_attach kernel extension suggested by @phretor. That's an optional step, see this comment for more details.

  2. Since this analyser uses some utilities that require additional privileges to run, you may want to enable passwordless sudo for them. This may be accomplished by modifying /etc/sudoers file:

--- a/etc/sudoers
+++ b/etc/sudoers
@@ -43,3 +43,5 @@ root  ALL=(ALL) ALL
# Samples
# %users  ALL=/sbin/mount /cdrom,/sbin/umount /cdrom
# %users  localhost=/sbin/shutdown -h now
+
+ username   ALL=(root) NOPASSWD: /usr/sbin/dtrace
+ username   ALL=(root) NOPASSWD: /bin/date

(replace username above with an actual user name).

  1. Set the network settings: IP address, subnet mask, router address and DNS servers:
$ sudo networksetup -setmanual Ethernet 192.168.56.101 255.255.255.0 192.168.56.1
$ sudo networksetup -setdnsservers Ethernet 8.8.8.8 8.8.4.4

Also, if you're using VirtualBox: don't forget to setup your host-only internet adapter and attach it to the guest machine.

  1. Download and launch Cuckoo's agent.py:
$ curl -o /Users/Shared/agent.py https://raw.githubusercontent.com/cuckoobox/cuckoo/master/agent/agent.py
$ python /Users/Shared/agent.py
  1. Take a VM snapshot. It's cmd+T for VirtualBox.
On the host side (OS X)
  1. Setup internet traffic forwarding to and from your guest machine. Here's an example of using pfctl to forward traffic to and from vboxnet0 interface:
$ sudo sysctl -w net.inet.ip.forwarding=1

$ rules="nat on en1 from vboxnet0:network to any -> (en1)
pass inet proto icmp all
pass in on vboxnet0 proto udp from any to any port domain keep state
pass quick on en1 proto udp from any to any port domain keep state"

$ echo "$rules" > ./pfrules
$ sudo pfctl -e -f ./pfrules
$ rm -f ./pfrules

Note that you'll have to re-enable traffic forwarding every time you reboot the host machine.

  1. Clone this repository:
$ git clone https://github.com/rodionovd/cuckoo-osx-analyzer.git ~/cuckoo-osx-analyzer
# Or (if you prefer SSH):
# $ git clone [email protected]:rodionovd/cuckoo-osx-analyzer.git cuckoo-osx-analyzer
  1. Symlink analyzer/darwin directory from this repository to your own copy of Cuckoo Sandbox:
$ cd /path/to/cuckoo/sandbox/
$ cd ./analyzer
$ ln -s ~/cuckoo-osx-analyzer/analyzer/darwin darwin
  1. Submit an analysis job:
$ ./utils/submit.py --platform darwin ~/bin/sample

Adding custom API signatures

You can add custom API signatures and define data types in signatures.json and types.yml files.

Tests

You can run the test suite with nose:

$ cd ./cuckoo-osx-analyzer
$ sudo -H pip install -r requirements.txt
$ nosetests

NOTE: Running Cuckoo integration tests requires Cuckoo to be installed in the same directory as the analyzer itself:

$ ls cuckoo cuckoo-osx-analyzer


See also: [`.travis.yml`](https://github.com/rodionovd/cuckoo-osx-analyzer/blob/master/.travis.yml) and [Travis CI project](https://travis-ci.org/rodionovd/cuckoo-osx-analyzer).


### Roadmap, issues and reports  

See my [weekly reports](https://github.com/rodionovd/cuckoo-osx-analyzer/wiki/GSoC-weekly-reports) and [Issues](https://github.com/rodionovd/cuckoo-osx-analyzer/issues).


-----

Dmitry Rodionov, [email protected]  
2015

cuckoo-osx-analyzer's People

Contributors

rodionovd 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.