Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
pgpdump — A PGP packet visualizer | Kitploit
工具/GitHubGitHub/kazu-yamamoto/pgpdump
Encryption/Decryption ToolsCryptographyBinary AnalysisEmail Security
GitHubkazu-yamamoto/pgpdump

pgpdump

A PGP packet visualizer

查看仓库网站
187376个月前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

GitHub Actions status

pgpdump:一个 PGP 数据包可视化工具

  • Kazu Yamamoto [email protected]
  • 2010 年 8 月 16 日

概述

pgpdump 是一个 PGP 数据包可视化工具,用于显示 OpenPGP(RFC 4880)和 PGP 版本 2(RFC 1991)的数据包格式。

下面是一个示例:

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)

安装

请按照以下步骤从发布 tarball 安装 pgpdump:

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

要从 Git 构建,请在上述命令之前运行 autoreconf -fviW all。

可以通过 Homebrew 获取 Mac OS X 的二进制版本:

root@kitploit:~
% brew install pgpdump

用法

要了解如何使用 pgpdump,请键入 pgpdump -h。

一些示例存储在 test 目录中。此外,您还可以可视化自己的 pubring 和 secring。

主页

pgpdump 的官方主页是:

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

已知问题

  • pgpdump 假设压缩数据包会一直持续到指定文件的末尾。

测试

要运行所有测试:

root@kitploit:~
% make check

或:

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

要运行特定测试:

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

或:

root@kitploit:~
% make
% ./test/test test/pub.res test/sig.res
下载工具