- Windows 11
- WSL2 Ubuntu 20.04
- 文字をジグザグに転置する。
- online tool : https://cryptii.com/pipes/rail-fence-cipher
- online tool : https://www.dcode.fr/monoalphabetic-substitution
- key : nothing
- online tool : https://morse.ariafloat.com/en/
- key : shift number
- online tool
- key : a meaningful word
- online tool : https://linesegment.web.fc2.com/application/cipher/Vigenere.html
デジタルデータの解析。
- ファイル中に埋め込まれている別のファイルを解析。
$ sudo apt install binwalk
$ binwalk <File>
- 内部データ構造に基づいてファイルを復元する。
- ディスクイメージファイルにも適用可能。
$ sudo apt install foremost
$ foremost <File>
- 画像や動画などのメディアファイルからExif情報を抽出。
$ sudo apt install exiftool
$ exiftool <Media-File>
- ディスクイメージファイルを解析。
$ fls <Disk-image-File>
- ディスクイメージファイルを復元。
$ icat <Disk-image-File> <inode-Number> > <output-File>
- ボリュームシステム(パーティションテーブル)のパーティションレイアウト情報を表示。
$ mmls <Disk-image-File>
- pdf中のテキストデータを抽出。
$ sudo apt install poppler-utils
$ pdftotext <PDF-File>
- ローカルにWebサイトを丸ごとミラーリング。
- ホストを名前としたディレクトリが作成され、そこに出力される。
$ wget -m <URL>