コード例 #1
0
def left(request, left_id):

    decrpt_task_id = until.decrpt(left_id)
    left = results_db.analysis.find_one({"info.id": int(decrpt_task_id)}, {
        "target": 1,
        "info": 1
    })
    if not left:
        return render_to_response(
            "error.html", {"error": "No analysis found with specified ID"},
            context_instance=RequestContext(request))
    else:
        if "info" in left:
            left["info"]["base64id"] = left_id

    if left["target"]["category"] == "url":
        records = results_db.analysis.find(
            {
                "$and": [{
                    "target.url": left["target"]["url"]
                }, {
                    "info.id": {
                        "$ne": int(decrpt_task_id)
                    }
                }]
            }, {
                "target": 1,
                "info": 1
            })
    else:
        #print decrpt_task_id
        #print left["target"]["file"]["md5"]
        #Select all analyses with same file hash.
        records = results_db.analysis.find(
            {
                "$and": [{
                    "target.file.md5": left["target"]["file"]["md5"]
                }, {
                    "info.id": {
                        "$ne": int(decrpt_task_id)
                    }
                }]
            }, {
                "target": 1,
                "info": 1
            })

    compare_element = []

    for single_record in records:
        new = single_record

        new["info"]["base64id"] = until.encrpt(new["info"]["id"])
        compare_element.append(new)

    return render_to_response("compare/left.html", {
        "left": left,
        "records": compare_element
    },
                              context_instance=RequestContext(request))
コード例 #2
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def status(request, task_id):
    decrpt_task_id = until.decrpt(task_id)
    task = Database().view_task(decrpt_task_id)
    if not task:
        return render_to_response(
            "error.html",
            {"error": "The specified task doesn't seem to exist."},
            context_instance=RequestContext(request))

    completed = False
    if task.status == "reported":
        return redirect('analysis.views.report', task_id=task_id)

    status = task.status
    if status == "completed":
        status = "processing"

    return render_to_response("submission/status.html", {
        "completed": completed,
        "status": status,
        "task_id": until.encrpt(task_id)
    },
                              context_instance=RequestContext(request))
コード例 #3
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def left(request, left_id):
    decrpt_task_id = until.decrpt(left_id)
    if enabledconf["mongodb"]:
        left = results_db.analysis.find_one({"info.id": int(decrpt_task_id)}, {
            "target": 1,
            "info": 1
        })
    if enabledconf["elasticsearchdb"]:
        hits = es.search(index=fullidx,
                         doc_type="analysis",
                         q="info.id: \"%s\"" % decrpt_task_id)["hits"]["hits"]
        if hits:
            left = hits[-1]["_source"]
        else:
            left = None
    if not left:
        return render_to_response(
            "error.html", {"error": "No analysis found with specified ID"},
            context_instance=RequestContext(request))
    else:
        if "info" in left:
            left["info"]["base64id"] = left_id

    # Select all analyses with same file hash.
    if enabledconf["mongodb"]:
        records = results_db.analysis.find(
            {
                "$and": [{
                    "target.file.md5": left["target"]["file"]["md5"]
                }, {
                    "info.id": {
                        "$ne": int(decrpt_task_id)
                    }
                }]
            }, {
                "target": 1,
                "info": 1
            })
        compare_element = []

        for single_record in records:
            new = single_record

            new["info"]["base64id"] = until.encrpt(new["info"]["id"])
            compare_element.append(new)

    if enabledconf["elasticsearchdb"]:
        records = list()
        results = es.search(
            index=fullidx,
            doc_type="analysis",
            q="target.file.md5: \"%s\" NOT info.id: \"%s\"" %
            (left["target"]["file"]["md5"], decrpt_task_id))["hits"]["hits"]
        for item in results:
            records.append(item["_source"])

    return render_to_response("compare/left.html", {
        "left": left,
        "records": compare_element
    },
                              context_instance=RequestContext(request))
コード例 #4
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def ajax_submit_url(request):
    if request.method == "POST":
        package = request.POST.get("package", "")
        timeout = min(force_int(request.POST.get("timeout")), 60 * 60 * 24)
        options = request.POST.get("options", "")
        priority = force_int(request.POST.get("priority"))
        machine = request.POST.get("machine", "")
        gateway = request.POST.get("gateway", None)
        clock = request.POST.get("clock", None)
        custom = request.POST.get("custom", "")
        memory = bool(request.POST.get("memory", False))
        enforce_timeout = bool(request.POST.get("enforce_timeout", False))
        status = bool(request.POST.get("user_status", False))

        #        if not status:
        #            user_status=0
        #        else:
        #            user_status=1

        if request.user.id == None:
            user_id = 1
        else:
            user_id = request.user.id

        tags = request.POST.get("tags", None)

        if request.POST.get("free"):
            if options:
                options += ","
            options += "free=yes"

        if request.POST.get("nohuman"):
            if options:
                options += ","
            options += "nohuman=yes"

        if request.POST.get("tor"):
            if options:
                options += ","
            options += "tor=yes"

        if request.POST.get("process_memory"):
            if options:
                options += ","
            options += "procmemdump=yes"

        if request.POST.get("kernel_analysis"):
            if options:
                options += ","
            options += "kernel_analysis=yes"

        if gateway and gateway in settings.GATEWAYS:
            if "," in settings.GATEWAYS[gateway]:
                tgateway = random.choice(settings.GATEWAYS[gateway].split(","))
                ngateway = settings.GATEWAYS[tgateway]
            else:
                ngateway = settings.GATEWAYS[gateway]
            if options:
                options += ","
            options += "setgw=%s" % (ngateway)

        db = Database()
        task_ids = []
        task_machines = []

        if machine.lower() == "all":
            for entry in db.list_machines():
                task_machines.append(entry.label)
        else:
            task_machines.append(machine)

        if "url" in request.POST and request.POST.get("url").strip():
            url = request.POST.get("url").strip()
            if not url:
                return render_to_response(
                    "error.html", {"error": "You specified an invalid URL!"},
                    context_instance=RequestContext(request))

            url = url.replace("hxxps://", "https://").replace(
                "hxxp://", "http://").replace("[.]", ".")
            for entry in task_machines:
                task_id = db.add_url(url=url,
                                     package=package,
                                     timeout=timeout,
                                     options=options,
                                     priority=priority,
                                     machine=entry,
                                     custom=custom,
                                     memory=memory,
                                     enforce_timeout=enforce_timeout,
                                     tags=tags,
                                     clock=clock,
                                     user_status=status,
                                     user_id=user_id)
                if task_id:
                    #pp.pprint(task_id)
                    task_ids.append(until.encrpt(task_id))

        tasks_count = len(task_ids)
        if tasks_count > 0:
            return HttpResponse(json.dumps({"correct": "%s" % task_ids[0]}),
                                content_type="application/json")
        else:
            return HttpResponse(json.dumps(
                {"error": "Error adding task to Cuckoo's database."}),
                                content_type="application/json")
コード例 #5
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def ajax_submit_file(request):
    if request.method == "POST":
        package = request.POST.get("package", "")
        timeout = min(force_int(request.POST.get("timeout")), 60 * 60 * 24)
        options = request.POST.get("options", "")
        priority = force_int(request.POST.get("priority"))
        machine = request.POST.get("machine", "")
        gateway = request.POST.get("gateway", None)
        clock = request.POST.get("clock", None)
        custom = request.POST.get("custom", "")
        memory = bool(request.POST.get("memory", False))
        enforce_timeout = bool(request.POST.get("enforce_timeout", False))
        status = request.POST.get("user_status", False)
        print "AJAX SUBMIT FILE USER STATUS %s" % status

        #if not status:
        #    user_status=0
        #else:
        #    user_status=1

        if request.user.id == None:
            user_id = 1
        else:
            user_id = request.user.id

        tags = request.POST.get("tags", None)

        if request.POST.get("free"):
            if options:
                options += ","
            options += "free=yes"

        if request.POST.get("nohuman"):
            if options:
                options += ","
            options += "nohuman=yes"

        if request.POST.get("tor"):
            if options:
                options += ","
            options += "tor=yes"

        if request.POST.get("process_memory"):
            if options:
                options += ","
            options += "procmemdump=yes"

        if request.POST.get("kernel_analysis"):
            if options:
                options += ","
            options += "kernel_analysis=yes"

        if gateway and gateway in settings.GATEWAYS:
            if "," in settings.GATEWAYS[gateway]:
                tgateway = random.choice(settings.GATEWAYS[gateway].split(","))
                ngateway = settings.GATEWAYS[tgateway]
            else:
                ngateway = settings.GATEWAYS[gateway]
            if options:
                options += ","
            options += "setgw=%s" % (ngateway)

        db = Database()
        task_ids = []
        task_machines = []

        if machine.lower() == "all":
            for entry in db.list_machines():
                task_machines.append(entry.label)
        else:
            task_machines.append(machine)

        tempfilePath = request.POST.get("file_path", "")
        print "AJAX SUBMIT FILE TAMP FILE PATH %s" % tempfilePath
        if tempfilePath:
            for entry in task_machines:
                print type(tempfilePath)
                print "AJAX LIST MACHINE NAME %s" % entry
                task_ids_new = db.demux_sample_and_add_to_db(
                    file_path=tempfilePath,
                    package=package,
                    timeout=timeout,
                    options=options,
                    priority=priority,
                    machine=entry,
                    custom=custom,
                    memory=memory,
                    enforce_timeout=enforce_timeout,
                    tags=tags,
                    clock=clock,
                    user_status=status,
                    user_id=user_id)
            #pp.pprint(task_ids_new)
            final_task_ids = []
            for taskId in task_ids_new:
                final_task_ids.append(until.encrpt(taskId))
            task_ids.extend(final_task_ids)

            tasks_count = len(task_ids)
            pp.pprint(task_ids)
            # task_ids = ["YXNkZmRzZmFkc2YxMTVkc2Zhc2RmYXNkZg=="]
            # tasks_count = 1
            if tasks_count > 0:
                return HttpResponse(json.dumps({"correct":
                                                "%s" % task_ids[0]}),
                                    content_type="application/json")
            else:
                return HttpResponse(json.dumps(
                    {"error": "Error adding task to Cuckoo's database."}),
                                    content_type="application/json")
        else:
            return HttpResponse(json.dumps(
                {"error": "Error adding task to Cuckoo's database."}),
                                content_type="application/json")
コード例 #6
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def submit_file(request):
    if request.method == "POST":
        package = request.POST.get("package", "")
        timeout = min(force_int(request.POST.get("timeout")), 60 * 60 * 24)
        options = request.POST.get("options", "")
        priority = force_int(request.POST.get("priority"))
        machine = request.POST.get("machine", "")
        gateway = request.POST.get("gateway", None)
        clock = request.POST.get("clock", None)
        custom = request.POST.get("custom", "")
        memory = bool(request.POST.get("memory", False))
        enforce_timeout = bool(request.POST.get("enforce_timeout", False))
        status = bool(request.POST.get("user_status", False))
        if not status:
            user_status = 0
        else:
            user_status = 1

        if request.user.id == None:
            user_id = 1
        else:
            user_id = request.user.id

        tags = request.POST.get("tags", None)

        if request.POST.get("free"):
            if options:
                options += ","
            options += "free=yes"

        if request.POST.get("nohuman"):
            if options:
                options += ","
            options += "nohuman=yes"

        if request.POST.get("tor"):
            if options:
                options += ","
            options += "tor=yes"

        if request.POST.get("process_memory"):
            if options:
                options += ","
            options += "procmemdump=yes"

        if request.POST.get("kernel_analysis"):
            if options:
                options += ","
            options += "kernel_analysis=yes"

        if gateway and gateway in settings.GATEWAYS:
            if "," in settings.GATEWAYS[gateway]:
                tgateway = random.choice(settings.GATEWAYS[gateway].split(","))
                ngateway = settings.GATEWAYS[tgateway]
            else:
                ngateway = settings.GATEWAYS[gateway]
            if options:
                options += ","
            options += "setgw=%s" % (ngateway)

        db = Database()
        task_ids = []
        task_machines = []

        if machine.lower() == "all":
            for entry in db.list_machines():
                task_machines.append(entry.label)
        else:
            task_machines.append(machine)

        if "sample" in request.FILES:

            for sample in request.FILES.getlist("sample"):
                if sample.size == 0:
                    return render_to_response(
                        "error.html", {"error": "You uploaded an empty file."},
                        context_instance=RequestContext(request))
                elif sample.size > settings.MAX_UPLOAD_SIZE:
                    return render_to_response("error.html", {
                        "error":
                        "You uploaded a file that exceeds that maximum allowed upload size."
                    },
                                              context_instance=RequestContext(
                                                  request))

                # Moving sample from django temporary file to Cuckoo temporary storage to
                # let it persist between reboot (if user like to configure it in that way).
                print type(sample.name)
                path = store_temp_file(sample.read(), sample.name)
                pp.pprint("\nFile Path is %s\n" % path)
                currentMD5 = until.getBigFileMD5(path)

                provious_analysis = results_db.analysis.find({
                    "target.file.md5":
                    currentMD5
                }).sort([["_id", -1]])

                task = []

                for single in provious_analysis:
                    #pp.pprint(single)
                    single["info"]["base64"] = until.encrpt(
                        single["info"]["id"])
                    single["info"]["filename"] = single["target"]["file"][
                        "name"]
                    pp.pprint(single["info"])
                    task.append(single["info"])

                second_post = json.dumps(
                    {
                        "file_path": path,
                        "package": package,
                        "timeout": timeout,
                        "options": options,
                        "machine": machine,
                        "priority": priority,
                        "custom": custom,
                        "memory": memory,
                        "enforce_timeout": enforce_timeout,
                        "tags": tags,
                        "clock": clock,
                        "user_status": user_status,
                        "user_id": user_id
                    },
                    sort_keys=True)
                pp.pprint(second_post)

                if provious_analysis.count() >= 1:
                    return render_to_response(
                        "submission/ShowSimilar.html", {
                            "tasks": task,
                            "params": second_post
                        },
                        context_instance=RequestContext(request))
                else:
                    #tempfilePath = request.POST.get("file_path", "")
                    for entry in task_machines:
                        task_ids_new = db.demux_sample_and_add_to_db(
                            file_path=path,
                            package=package,
                            timeout=timeout,
                            options=options,
                            priority=priority,
                            machine=entry,
                            custom=custom,
                            memory=memory,
                            enforce_timeout=enforce_timeout,
                            tags=tags,
                            clock=clock,
                            user_status=user_status,
                            user_id=user_id)
                    pp.pprint(task_ids_new)
                    final_task_ids = []
                    for taskId in task_ids_new:
                        final_task_ids.append(until.encrpt(taskId))
                    task_ids.extend(final_task_ids)

                    tasks_count = len(task_ids)
                    pp.pprint(task_ids)

                    if tasks_count > 0:

                        return render_to_response(
                            "submission/complete.html", {
                                "tasks": task_ids,
                                "tasks_count": tasks_count
                            },
                            context_instance=RequestContext(request))
                    else:
                        return render_to_response(
                            "error.html", {
                                "error":
                                "Error adding task to Cuckoo's database."
                            },
                            context_instance=RequestContext(request))
    else:
        enabledconf = dict()
        enabledconf["vt"] = settings.VTDL_ENABLED
        enabledconf["kernel"] = settings.OPT_ZER0M0N
        enabledconf["memory"] = Config("processing").memory.get("enabled")
        enabledconf["procmemory"] = Config("processing").procmemory.get(
            "enabled")
        enabledconf["tor"] = Config("auxiliary").tor.get("enabled")
        if Config("auxiliary").gateways:
            enabledconf["gateways"] = True
        else:
            enabledconf["gateways"] = False
        enabledconf["tags"] = False
        # Get enabled machinery
        machinery = Config("cuckoo").cuckoo.get("machinery")
        # Get VM names for machinery config elements
        vms = [
            x.strip() for x in getattr(Config(machinery), machinery).get(
                "machines").split(",")
        ]
        # Check each VM config element for tags
        for vmtag in vms:
            if "tags" in getattr(Config(machinery), vmtag).keys():
                enabledconf["tags"] = True

        files = os.listdir(
            os.path.join(settings.CUCKOO_PATH, "analyzer", "windows",
                         "modules", "packages"))

        packages = []
        for name in files:
            name = os.path.splitext(name)[0]
            if name == "__init__":
                continue

            packages.append(name)

        # Prepare a list of VM names, description label based on tags.
        machines = []
        for machine in Database().list_machines():
            tags = []
            for tag in machine.tags:
                tags.append(tag.name)

            if tags:
                label = machine.label + ": " + ", ".join(tags)
            else:
                label = machine.label

            machines.append((machine.label, label))

        # Prepend ALL/ANY options.
        machines.insert(0, ("", "First available"))
        machines.insert(1, ("all", "All"))

        return render_to_response("submission/submit_file.html", {
            "packages": sorted(packages),
            "machines": machines,
            "gateways": settings.GATEWAYS,
            "config": enabledconf
        },
                                  context_instance=RequestContext(request))
コード例 #7
0
ファイル: views.py プロジェクト: lixiangning888/final_version
def submit_url(request):
    if request.method == "POST":
        package = request.POST.get("package", "")
        timeout = min(force_int(request.POST.get("timeout")), 60 * 60 * 24)
        options = request.POST.get("options", "")
        priority = force_int(request.POST.get("priority"))
        machine = request.POST.get("machine", "")
        gateway = request.POST.get("gateway", None)
        clock = request.POST.get("clock", None)
        custom = request.POST.get("custom", "")
        memory = bool(request.POST.get("memory", False))
        enforce_timeout = bool(request.POST.get("enforce_timeout", False))
        status = bool(request.POST.get("user_status", False))

        if not status:
            user_status = 0
        else:
            user_status = 1

        if request.user.id == None:
            user_id = 1
        else:
            user_id = request.user.id

        tags = request.POST.get("tags", None)

        if request.POST.get("free"):
            if options:
                options += ","
            options += "free=yes"

        if request.POST.get("nohuman"):
            if options:
                options += ","
            options += "nohuman=yes"

        if request.POST.get("tor"):
            if options:
                options += ","
            options += "tor=yes"

        if request.POST.get("process_memory"):
            if options:
                options += ","
            options += "procmemdump=yes"

        if request.POST.get("kernel_analysis"):
            if options:
                options += ","
            options += "kernel_analysis=yes"

        if gateway and gateway in settings.GATEWAYS:
            if "," in settings.GATEWAYS[gateway]:
                tgateway = random.choice(settings.GATEWAYS[gateway].split(","))
                ngateway = settings.GATEWAYS[tgateway]
            else:
                ngateway = settings.GATEWAYS[gateway]
            if options:
                options += ","
            options += "setgw=%s" % (ngateway)

        db = Database()
        task_ids = []
        task_machines = []

        if machine.lower() == "all":
            for entry in db.list_machines():
                task_machines.append(entry.label)
        else:
            task_machines.append(machine)

        if "url" in request.POST and request.POST.get("url").strip():
            url = request.POST.get("url").strip()
            if not url:
                return render_to_response(
                    "error.html", {"error": "You specified an invalid URL!"},
                    context_instance=RequestContext(request))

            provious_analysis = results_db.analysis.find({
                "target.url": url
            }).sort([["_id", -1]])

            task = []

            for single in provious_analysis:
                #pp.pprint(single)
                single["info"]["base64"] = until.encrpt(single["info"]["id"])
                single["info"]["url"] = single["target"]["url"]
                pp.pprint(single["info"])
                task.append(single["info"])

            second_post = json.dumps(
                {
                    "url": url,
                    "package": package,
                    "timeout": timeout,
                    "options": options,
                    "priority": priority,
                    "custom": custom,
                    "memory": memory,
                    "enforce_timeout": enforce_timeout,
                    "tags": tags,
                    "clock": clock,
                    "user_status": user_status,
                    "user_id": user_id
                },
                sort_keys=True)

            if provious_analysis.count() >= 1:
                return render_to_response(
                    "submission/ShowSimilarUrl.html", {
                        "tasks": task,
                        "params": second_post
                    },
                    context_instance=RequestContext(request))

            url = url.replace("hxxps://", "https://").replace(
                "hxxp://", "http://").replace("[.]", ".")
            for entry in task_machines:
                task_id = db.add_url(url=url,
                                     package=package,
                                     timeout=timeout,
                                     options=options,
                                     priority=priority,
                                     machine=entry,
                                     custom=custom,
                                     memory=memory,
                                     enforce_timeout=enforce_timeout,
                                     tags=tags,
                                     clock=clock,
                                     user_status=user_status,
                                     user_id=user_id)
                if task_id:
                    #pp.pprint(task_id)
                    task_ids.append(until.encrpt(task_id))

        tasks_count = len(task_ids)
        if tasks_count > 0:
            return render_to_response("submission/complete.html", {
                "tasks": task_ids,
                "tasks_count": tasks_count
            },
                                      context_instance=RequestContext(request))
        else:
            return render_to_response(
                "error.html",
                {"error": "Error adding task to Cuckoo's database."},
                context_instance=RequestContext(request))
    else:
        enabledconf = dict()
        enabledconf["vt"] = settings.VTDL_ENABLED
        enabledconf["kernel"] = settings.OPT_ZER0M0N
        enabledconf["memory"] = Config("processing").memory.get("enabled")
        enabledconf["procmemory"] = Config("processing").procmemory.get(
            "enabled")
        enabledconf["tor"] = Config("auxiliary").tor.get("enabled")
        if Config("auxiliary").gateways:
            enabledconf["gateways"] = True
        else:
            enabledconf["gateways"] = False
        enabledconf["tags"] = False
        # Get enabled machinery
        machinery = Config("cuckoo").cuckoo.get("machinery")
        # Get VM names for machinery config elements
        vms = [
            x.strip() for x in getattr(Config(machinery), machinery).get(
                "machines").split(",")
        ]
        # Check each VM config element for tags
        for vmtag in vms:
            if "tags" in getattr(Config(machinery), vmtag).keys():
                enabledconf["tags"] = True

        files = os.listdir(
            os.path.join(settings.CUCKOO_PATH, "analyzer", "windows",
                         "modules", "packages"))

        packages = []
        for name in files:
            name = os.path.splitext(name)[0]
            if name == "__init__":
                continue

            packages.append(name)

        # Prepare a list of VM names, description label based on tags.
        machines = []
        for machine in Database().list_machines():
            tags = []
            for tag in machine.tags:
                tags.append(tag.name)

            if tags:
                label = machine.label + ": " + ", ".join(tags)
            else:
                label = machine.label

            machines.append((machine.label, label))

        # Prepend ALL/ANY options.
        machines.insert(0, ("", "First available"))
        machines.insert(1, ("all", "All"))

        return render_to_response("submission/submit_url.html", {
            "packages": sorted(packages),
            "machines": machines,
            "gateways": settings.GATEWAYS,
            "config": enabledconf
        },
                                  context_instance=RequestContext(request))