エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Understanding the ELF
I wrote an ELF binary which, when run, prints itself on standard output: $ ./quine > quine2 $ md5... I wrote an ELF binary which, when run, prints itself on standard output: $ ./quine > quine2 $ md5sum quine quine2 5d24b05850f451b5b1e1a87a7c5d57c3 quine 5d24b05850f451b5b1e1a87a7c5d57c3 quine2It doesn’t “cheat” by reading its own file. Instead, it uses how ELF binary files are loaded into memory. To explain how the program works, I’ll show you it byte-by-byte. Along the way, we’ll learn about file
2015/02/08 リンク