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 は、OpenPGP(RFC 4880)および PGP バージョン 2(RFC 1991)のパケット形式を表示する PGP パケット可視化ツールです。

以下に例を示します:

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 を実行してください。

Mac OS X 向けのバイナリは Homebrew から入手できます:

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
ツールをダウンロード