Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
ioccheck — Una herramienta para simplificar el proceso de investigar IOCs. | Kitploit
Herramientas/GitHubGitHub/ranguli/ioccheck
Herramientas DefensivasGestión de Indicadores de Compromiso (IOC)OSINT (Inteligencia de Fuentes Abiertas)Análisis de HashRecopilación de InformaciónInteligencia de AmenazasArchived
GitHubranguli/ioccheck

ioccheck

Una herramienta para simplificar el proceso de investigar IOCs.

Ver Repositorio
256hace 4 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

ioccheck

Documentation Status Tests Maintainability PyPi Status codecov

Una herramienta para simplificar el proceso de investigar hashes de archivos, direcciones IP y otros indicadores de compromiso (IOCs).

Características

  • Consulta hashes en múltiples servicios de inteligencia de amenazas, desde un solo comando o unas pocas líneas de Python.
  • Actualmente soporta los siguientes servicios:
    • VirusTotal
    • MalwareBazaar
    • Shodan.io
  • Soporte planificado:
    • URLhaus
Descargar herramienta
  • OTX
  • InQuest Labs
  • MalShare
  • Malpedia
  • Maltiverse
  • Inicio rápido

    root@kitploit:~
    pip install ioccheck
    

    También puedes ejecutar el código directamente

    root@kitploit:~
    git clone https://github.com/ranguli/ioccheck && cd ioccheck
    poetry install
    

    Completa ~/.config/ioccheck/credentials con una entrada para cada servicio del que tengas credenciales:

    root@kitploit:~
    [virustotal]
    api_key=YOUR_API_KEY_HERE
    
    [malwarebazaar]
    api_key=YOUR_API_KEY_HERE
    
    [shodan]
    api_key=YOUR_API_KEY_HERE
    
    [twitter]
    consumer_key=YOUR_API_KEY_HERE
    consumer_secret=YOUR_API_KEY_HERE
    access_token=YOUR_API_KEY_HERE
    access_secret=YOUR_API_KEY_HERE
    

    Uso

    root@kitploit:~
    ➜  ioccheck 275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f
    
    Checking hash 275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f.
    [*] Hashing algorithm:
    SHA256
    
    [*] VirusTotal URL:
    https://virustotal.com/gui/file/275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f/
    
    [*] VirusTotal detections:
    61 engines (81%) detected this file.
    
    ╒══════════════╤════════════╤═══════════════════════════════╕
    │ Antivirus    │ Detected   │ Result                        │
    ╞══════════════╪════════════╪═══════════════════════════════╡
    │ Malwarebytes │ No         │                               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Avast        │ Yes        │ EICAR Test-NOT virus!!!       │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ ClamAV       │ Yes        │ Win.Test.EICAR_HDB-1          │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Kaspersky    │ Yes        │ EICAR-Test-File               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ BitDefender  │ Yes        │ EICAR-Test-File (not a virus) │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Paloalto     │ No         │                               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ TrendMicro   │ Yes        │ Eicar_test_file               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ FireEye      │ Yes        │ EICAR-Test-File (not a virus) │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Sophos       │ Yes        │ EICAR-AV-Test                 │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Microsoft    │ Yes        │ Virus:DOS/EICAR_Test_File     │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ McAfee       │ Yes        │ EICAR test file               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ Fortinet     │ Yes        │ EICAR_TEST_FILE               │
    ├──────────────┼────────────┼───────────────────────────────┤
    │ AVG          │ Yes        │ EICAR Test-NOT virus!!!       │
    ╘══════════════╧════════════╧═══════════════════════════════╛
    
    [*] VirusTotal reputation:
    3392
    

    Usando la API

    Creando un hash

    root@kitploit:~
    >>> from ioccheck import Hash
    >>> from ioccheck.services import VirusTotal
    >>> eicar = Hash("275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f")
    >>> # What kind of hash is this?
    >>> print(eicar.hash_type)
    SHA256
    

    Buscando un hash

    root@kitploit:~
    >>> # With no arguments, check() tries all supported services. API keys grabbed from ~/.ioccheck by default.
    >>> eicar.check()
    >>> # Alternatively:
    >>> eicar.check(services=VirusTotal, config_path=/foo/bar/.ioccheck)
    

    Investigando un hash

    root@kitploit:~
    >>> # Check the VirusTotal report to see if Sophos detects our hash
    >>> eicar.reports.virustotal.get_detections(engines=["Sophos"])
    {'Sophos': {'category': 'malicious', 'engine_name': 'Sophos', 'engine_version': '1.0.2.0', 'result': 'EICAR-AV-Test', 'method': 'blacklist', 'engine_update': '20210314'}}
    >>> # What is this hash known as?
    >>> print(eicar.reports.virustotal.name)
    'eicar.com-2224'
    >>> # How many AV engines are detecting this hash?
    >>> eicar.reports.virustotal.detection_count
    60
    
    root@kitploit:~
    >>> # Just show me the VirusTotal API response!
    >>> eicar.reports.virustotal.api_response
    <vt.object.Object file 275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f>