Skip to content

Instantly share code, notes, and snippets.

@NeaSTDL
NeaSTDL / agent.py
Created August 16, 2017 02:38
Cuckoo Agent to be installed on guest nodes
#!/usr/bin/env python
# Copyright (C) 2015-2017 Cuckoo Foundation.
# This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org
# See the file 'docs/LICENSE' for copying permission.
import argparse
import cgi
import io
import json
import os
@NeaSTDL
NeaSTDL / cuckoo_setup.sh
Last active March 25, 2018 21:11
Cuckoo Sandbox Installation Script [Ubuntu 16.04.1] [v0.3]
#!/bin/bash
# ***********************************************************
#
# Functions definition
#
# ***********************************************************
# Function to print N blank lines
function print_blanks {
for (( c=1; c<=$1; c++ ))