Questions tagged «hexdump»




1
hexdump与实际文件内容
当我这样做时hexdump filename.txt,输出如下: 00000000 ac5a 5afb c08d 5d15 26d0 2491 e8c9 8917 00000010 当我这样做时<?= bin2hex(file_get_contents('filename.txt')); ?>: 5aacfb5a8dc0155dd0269124c9e81789 那么为什么hexdump建议内容应该是ac5a5afbc08d5d1526d02491e8c98917PHP 建议的内容5aacfb5a8dc0155dd0269124c9e81789呢?我只是在不正确解释hexdump的输出吗?
16 linux  php  hexdump 

1
尝试访问RAM / dev / mem…表示“不允许操作”
我正在使用Ubuntu 12.04 我阅读了以下有关如何在Linux中访问RAM内容的教程。 http://www.rootninja.com/using-dd-to-search-for-strings-in-memory-or-devices/ 码: dd if=/dev/mem | hexdump -C | grep “string to search for” 所以,我运行代码... 码: sudo dd if=/dev/mem | hexdump -C > NAMEOFOUTPUTFILEHERE.txt 并且...它开始输出十六进制代码,直到几秒钟后,它显示: dd: reading `/dev/mem': Operation not permitted 2056+0 records in 2056+0 records out 1052672 bytes (1.1 MB) copied, 0.44834 s, 2.3 MB/s 基本上,..我能够获得约3.3 MB的RAM转储内容,直到程序停止,并说“不允许操作” …
9 linux  memory  dd  hexdump 

2
hexdump与xxd格式的区别
我在搜索如何进行反向十六进制转储,发现提到了xxd。但是,它似乎不能简单地使用: xxd -r hexdumpfile > binaryfile 然后,我比较了xxd infile和的输出之间的差异hexdump infile,发现了三个差异: xxd输出的地址后面有一个冒号 xxd输出在数据中的位置相反(例如,十六进制转储输出在xxd输出中5a42变为425a) 每行后面有一些额外的字符 我在服务器上只有某些文件的十六进制版本。如何使用xxd正确取回二进制数据?

1
如何使用hd从hexdump获取ascii?
我有这个hexdump: 0100 0000 3f00 0000 0a59 6f55 90df 0100 0f00 0000 6d6f 746f 726f 6c61 2058 5431 3036 3839 3744 3245 3430 3630 3737 4143 3531 3632 3930 3937 3244 3933 3845 4343 我相信它是一个以空格分隔的,8列,零填充,2位十六进制数字。 我想用hexdump(hd)实用程序将这个hexdump转换回ascii。 如何进行? 谢谢。
1 linux  ascii  hexdump 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.