Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
hdcp-genkey — Gere chaves de origem e destino HDCP a partir da chave mestra vazada. | Kitploit
Ferramentas/GitHubGitHub/rjw57/hdcp-genkey
Segurança de Sistemas EmbarcadosFerramentas de Criptografia/DescriptografiaEngenharia ReversaCriptografiaSegurança de Hardware
GitHubrjw57/hdcp-genkey

hdcp-genkey

Gere chaves de origem e destino HDCP a partir da chave mestra vazada.

Ver Repositório
16230há 4 anosRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Exemplo de Geração de Chaves HDCP

Este script implementa uma versão simples do algoritmo de geração de chaves HDCP em Python, utilizando a chave mestre HDCP vazada (que está localizada em 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

Exemplos:

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
Baixar ferramenta