{"id":1082,"date":"2000-12-14T11:08:49","date_gmt":"2000-12-14T02:08:49","guid":{"rendered":"http:\/\/terzeron.com\/?p=1082"},"modified":"2000-12-14T11:08:49","modified_gmt":"2000-12-14T02:08:49","slug":"utility-8%ec%a7%84%ec%88%98-16%ec%a7%84%ec%88%98-%eb%b7%b0%ec%96%b4","status":"publish","type":"post","link":"https:\/\/terzeron.com\/?p=1082","title":{"rendered":"[Utility] 8\uc9c4\uc218, 16\uc9c4\uc218 \ubdf0\uc5b4"},"content":{"rendered":"<p>[ CnUnix ] in KIDS<br \/>\n\uae00 \uc4f4 \uc774(By): yamang (*\ud640\ub85c\uc11c\uae30*)<br \/>\n\ub0a0 \uc9dc (Date): 2000\ub144 12\uc6d4 14\uc77c \ubaa9\uc694\uc77c \uc624\uc804 07\uc2dc 13\ubd84 53\ucd08<br \/>\n\uc81c \ubaa9(Title): \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc \ubcf4\ub294 \ud234<\/p>\n<p>\ubc14\uc774\ub108\ub9ac \ud654\uc77c\uc758 \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc\ub97c \ubcf4\uace0 \uc2f6\uc740\ub370 \uc774\uac70 \ubcf4\ub294 \ud234\uc774 \uba38\uac00 \uc788\uc744\uae4c\uc694.<br \/>\nstrings\ub77c\ub294 \ud234\uc740 \ubc14\uc774\ub108\ub9ac\uc5d0 \ud14d\uc2a4\ud2b8 \ubd80\ubd84\ub9cc \ubcf4\uc5ec\uc8fc\ub294 \uac70 \ub9de\ub098\uc694??<\/p>\n<p>[ CnUnix ] in KIDS<br \/>\n\uae00 \uc4f4 \uc774(By): ahsarang (.\uc544.\uc0ac.\ub791.)<br \/>\n\ub0a0 \uc9dc (Date): 2000\ub144 12\uc6d4 14\uc77c \ubaa9\uc694\uc77c \uc624\uc804 08\uc2dc 19\ubd84 33\ucd08<br \/>\n\uc81c \ubaa9(Title): Re: \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc \ubcf4\ub294 \ud234<\/p>\n<p>od<\/p>\n<p>[ CnUnix ] in KIDS<br \/>\n\uae00 \uc4f4 \uc774(By): terzeron (microkid)<br \/>\n\ub0a0 \uc9dc (Date): 2000\ub144 12\uc6d4 14\uc77c \ubaa9\uc694\uc77c \uc624\uc804 11\uc2dc 08\ubd84 29\ucd08<br \/>\n\uc81c \ubaa9(Title): Re: \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc \ubcf4\ub294 \ud234<\/p>\n<p>\ud5e5\uc0ac \ucf54\ub4dc\ub77c\uba74 Perl \ucc45\uc5d0 \ub098\uc624\ub294 xdump \ucf54\ub4dc\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83\ub3c4 \uad1c\ucc2e\ub2f5\ub2c8\ub2e4. \uadf8\ub7ec\uba74 \uc67c\ucabd\uc5d0\ub294 offset, \uc911\uc559\uc5d0\ub294 \ud5e5\uc0ac\ucf54\ub4dc, \uc6b0\ud3b8\uc5d0\ub294 \uc544\uc2a4\ud0a4 \ubb38\uc790\uac00 \ucd9c\ub825\ub418\uac70\ub4e0\uc694. \uc774\ub7f0 \ud3ec\ub9f7\uc774\uba74 \uc5b4\ub514\uc120\uac00 \ub9ce\uc774 \ubcf8 \uac70\uc8e0?<\/p>\n<blockquote><p>00000080 20747265 652e0a23 20c0cc20 bdbac5a9 tree..# .. &#8230;.<br \/>\n00000090 b8b3c6ae b4c220c7 f6c0e720 b5f0b7ba &#8230;&#8230; &#8230;. &#8230;.<br \/>\n000000a0 c5e4b8ae bacec5cd 20726563 75727369 &#8230;&#8230;.. recursi<br \/>\n000000b0 7665c7cf b0d4206d 7033c6c4 c0cfc0bb ve&#8230;. mp3&#8230;&#8230;<br \/>\n000000c0 20c3a3be c6bcad20 0a2320b1 d7b0cdc0 &#8230;&#8230; .# &#8230;..<\/p><\/blockquote>\n<pre class=\"brush: php\">#!\/usr\/bin\/perl\n#\n# Usage: xdump [file]\n#\n\n# Use the file they specified, if specified\nopen(STDIN, $ARGV[0]) || die \"Can't open $argv[0]: $!\\n\" if $ARGV[0];\n\n# Do it optimally as long as we can read 16 bytes at a time\nwhile (($len = read(STDIN,$data,16)) == 16) {\n# hex code to hexadecimal number, N: a long in \"network\" order.\n@array = unpack('N4', $data);\n# invert non-visible char to '.'\n$data =~ tr\/\\0-\\37\\177-\\377\/.\/;\nprintf \"%8.8lx %8.8lx %8.8lx %8.8lx %8.8lx %s\\n\",\n$offset, @array, $data;\n$offset += 16;\n}\n\n# Now finish up the smaller end than 16 bytes, a byte at a time\nif ($len) {\n@array = unpack('C*', $data); # C: an unsigned char value;\n$data =~ y\/\\0-\\37\\177-\\377\/.\/; # y is a synonym of tr.\nfor (@array) {\n$_ = sprintf('%2.2x', $_);\n}\npush(@array, ' ') while $len++ < 16; # fill right margin with ' '\n$data =~ s\/[^ -~]\/.\/g;\nprintf \"%8.8lx \", $offset;\nprintf \"%s%s%s%s %s%s%s%s %s%s%s%s %s%s%s%s %s\\n\", @array, $data;\n}<\/pre>\n<div class=\"fb-background-color\">\n\t\t\t  <div \n\t\t\t  \tclass = \"fb-comments\" \n\t\t\t  \tdata-href = \"https:\/\/terzeron.com\/?p=1082\"\n\t\t\t  \tdata-numposts = \"100\"\n\t\t\t  \tdata-lazy = \"true\"\n\t\t\t\tdata-colorscheme = \"light\"\n\t\t\t\tdata-order-by = \"time\"\n\t\t\t\tdata-mobile=true>\n\t\t\t  <\/div><\/div>\n\t\t  <style>\n\t\t    .fb-background-color {\n\t\t\t\tbackground: #ffffff !important;\n\t\t\t}\n\t\t\t.fb_iframe_widget_fluid_desktop iframe {\n\t\t\t    width: 100% !important;\n\t\t\t}\n\t\t  <\/style>\n\t\t  ","protected":false},"excerpt":{"rendered":"<p>[ CnUnix ] in KIDS \uae00 \uc4f4 \uc774(By): yamang (*\ud640\ub85c\uc11c\uae30*) \ub0a0 \uc9dc (Date): 2000\ub144 12\uc6d4 14\uc77c \ubaa9\uc694\uc77c \uc624\uc804 07\uc2dc 13\ubd84 53\ucd08 \uc81c \ubaa9(Title): \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc \ubcf4\ub294 \ud234 \ubc14\uc774\ub108\ub9ac \ud654\uc77c\uc758 \ud5e5\uc0ac\ub098 \uc625\ud0c8\ucf54\ub4dc\ub97c \ubcf4\uace0 \uc2f6\uc740\ub370 \uc774\uac70 \ubcf4\ub294 \ud234\uc774 \uba38\uac00 \uc788\uc744\uae4c\uc694. strings\ub77c\ub294 \ud234\uc740 &hellip; <a href=\"https:\/\/terzeron.com\/?p=1082\">\uacc4\uc18d \uc77d\uae30 <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","footnotes":""},"categories":[14],"tags":[],"class_list":["post-1082","post","type-post","status-publish","format-standard","hentry","category-unixlinux"],"_links":{"self":[{"href":"https:\/\/terzeron.com\/index.php?rest_route=\/wp\/v2\/posts\/1082","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/terzeron.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/terzeron.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/terzeron.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/terzeron.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1082"}],"version-history":[{"count":0,"href":"https:\/\/terzeron.com\/index.php?rest_route=\/wp\/v2\/posts\/1082\/revisions"}],"wp:attachment":[{"href":"https:\/\/terzeron.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1082"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/terzeron.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1082"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/terzeron.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1082"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}