Skip to content
View n3l5's full-sized avatar

Block or report n3l5

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Submit_ThreatGrid_Samples Submit_ThreatGrid_Samples Public

    Python script to submit files to ThreatGrid bulk sample submit api.

    Python 1

  2. Submit_ReversingLabsA1000_Samples Submit_ReversingLabsA1000_Samples Public

    Python script to submit files to your ReversingLabs A1000 api. To make this script work, you'll need to add some things: rl_base_url - this is the URL to your ReversingLabs A1000 rl_token - this is…

    Python

  3. Submit_ATD_Samples Submit_ATD_Samples Public

    Python script to submit files in a directory or a single file to an ATD server.

    Python

  4. Python script to query AbuseCH Malwa... Python script to query AbuseCH Malware Bazaar for a give hash or file(path).
    1
    import argparse
    2
    import pathlib
    3
    from pathlib import Path
    4
    import hashlib
    5
    import magic
  5. PowerShell script to query AbuseCH M... PowerShell script to query AbuseCH Malware Bazaar for a give hash or file(path).
    1
    [CmdletBinding()]
    2
        param (
    3
            [Parameter(Mandatory=$False)]
    4
            [string]$FileHash,
    5
    
                  
  6. Custom MISP upload script to add a f... Custom MISP upload script to add a file(s) as a new event and add as objects; add the file object and the pe info. (but no sections data); additonally will tag it. **heavily borrowed code from the upload.py in the PyMISP samples.
    1
    #!/usr/bin/env python
    2
    # -*- coding: utf-8 -*-
    3
    from pymisp import ExpandedPyMISP, MISPEvent, MISPAttribute, MISPObject, MISPT
    4
    from pymisp import PyMISP
    5
    from pymisp.tools import make_binary_objects