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
Herramientas/GitHubGitHub/kazu-yamamoto/pgpdump
Encryption/Decryption ToolsCryptographyBinary AnalysisEmail Security
GitHubkazu-yamamoto/pgpdump

pgpdump

A PGP packet visualizer

Ver RepositorioSitio web
18737hace 6 mesesRevisado 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

GitHub Actions status

pgpdump: un visualizador de paquetes PGP

  • Kazu Yamamoto [email protected]
  • 16 de agosto de 2010

Resumen

pgpdump es un visualizador de paquetes PGP que muestra el formato de paquetes de OpenPGP (RFC 4880) y PGP versión 2 (RFC 1991).

Aquí hay un ejemplo:

root@kitploit:~
% pgpdump test/sig1
Old: Marker Packet(tag 10)(3 bytes)
	String - ...
New: One-Pass Signature Packet(tag 4)(13 bytes)
	New version(3)
	Sig type - Signature of a binary document(0x00).
	Hash alg - SHA1(hash 2)
	Pub alg - DSA Digital Signature Algorithm(pub 17)
	Key ID - 0xA79778E247B63037
	Next packet - other than one pass signature
New: Signature Packet(tag 2)(63 bytes)
	Ver 3 - old
	Hash material(5 bytes):
		Sig type - Signature of a binary document(0x00).
		Creation time - Fri Nov 27 22:35:02 JST 1998
	Key ID - 0xA79778E247B63037
	Pub alg - DSA Digital Signature Algorithm(pub 17)
	Hash alg - SHA1(hash 2)
	Hash left 2 bytes - 8f 82
	DSA r(160 bits) - ...
	DSA s(157 bits) - ...
		-> hash(DSA q bits)

Instalación

Siga los siguientes pasos para instalar pgpdump desde un tarball de lanzamiento:

root@kitploit:~
% ./configure
% make
% su
# make install

Para compilar desde Git, ejecute autoreconf -fviW all antes de ejecutar los comandos anteriores.

Los binarios están disponibles para Mac OS X a través de Homebrew:

root@kitploit:~
% brew install pgpdump

Uso

Para saber cómo usar pgpdump, escriba pgpdump -h.

Algunos ejemplos están almacenados en el directorio test. También puede visualizar su pubring y secring.

Página principal

La página oficial de pgpdump es:

  • https://www.mew.org/~kazu/proj/pgpdump/

Errores

  • pgpdump asume que un paquete comprimido continúa hasta el final del archivo especificado.

Pruebas

Para ejecutar todas las pruebas:

root@kitploit:~
% make check

o:

root@kitploit:~
% make
% ./test/test

Para ejecutar pruebas específicas:

root@kitploit:~
% make check TESTS="test/pub.res test/sig.res"

o:

root@kitploit:~
% make
% ./test/test test/pub.res test/sig.res
Descargar herramienta