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
hdcp-genkey — Genera claves de fuente y sumidero HDCP a partir de la clave maestra filtrada | Kitploit
Herramientas/GitHubGitHub/rjw57/hdcp-genkey
Seguridad de Sistemas EmbebidosHerramientas de Cifrado/DescifradoIngeniería InversaCriptografíaSeguridad de Hardware
GitHubrjw57/hdcp-genkey

hdcp-genkey

Genera claves de fuente y sumidero HDCP a partir de la clave maestra filtrada

Ver Repositorio
16230hace 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

Ejemplo de generación de claves HDCP

Este script implementa una versión sencilla del algoritmo de generación de claves HDCP en Python utilizando la clave maestra HDCP filtrada (que se encuentra en master-key.txt).

root@kitploit:~
Usage: generate_key.py [options]

Options:
  -h, --help            show this help message and exit
  -m FILE, --master=FILE
                        load master key from FILE
  -k, --sink            generate a sink key rather than a source key
  --ksv=KSV             use a specific KSV expressed in hexadecimal
  -j, --json            output key and KSV as JSON
  -t, --test            generate source and sink keys and test they work

Ejemplos:

root@kitploit:~
# Generate a sink key with KSV 0x54f0af39a8 and output the result in JSON
./generate_key.py -k --ksv 54f0af39a8 -j

# Generate a source key with a random KSV and output the result in a 
# human-readable form
./generate_key.py

# Run a self-test to make sure the source a sink key generation is consistent
./generate_key.py -t
Descargar herramienta