ronin-support 0.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. data/.document +4 -0
  2. data/.rspec +1 -0
  3. data/.yardopts +1 -0
  4. data/COPYING.txt +504 -0
  5. data/ChangeLog.md +4 -0
  6. data/Gemfile +23 -0
  7. data/README.md +98 -0
  8. data/Rakefile +29 -0
  9. data/gemspec.yml +20 -0
  10. data/lib/ronin/extensions.rb +28 -0
  11. data/lib/ronin/extensions/file.rb +63 -0
  12. data/lib/ronin/extensions/ip_addr.rb +220 -0
  13. data/lib/ronin/extensions/kernel.rb +45 -0
  14. data/lib/ronin/extensions/meta.rb +22 -0
  15. data/lib/ronin/extensions/meta/object.rb +24 -0
  16. data/lib/ronin/extensions/string.rb +200 -0
  17. data/lib/ronin/formatting.rb +26 -0
  18. data/lib/ronin/formatting/binary.rb +22 -0
  19. data/lib/ronin/formatting/digest.rb +22 -0
  20. data/lib/ronin/formatting/extensions.rb +25 -0
  21. data/lib/ronin/formatting/extensions/binary.rb +24 -0
  22. data/lib/ronin/formatting/extensions/binary/file.rb +35 -0
  23. data/lib/ronin/formatting/extensions/binary/integer.rb +147 -0
  24. data/lib/ronin/formatting/extensions/binary/string.rb +363 -0
  25. data/lib/ronin/formatting/extensions/digest.rb +23 -0
  26. data/lib/ronin/formatting/extensions/digest/file.rb +117 -0
  27. data/lib/ronin/formatting/extensions/digest/string.rb +80 -0
  28. data/lib/ronin/formatting/extensions/http.rb +23 -0
  29. data/lib/ronin/formatting/extensions/http/integer.rb +57 -0
  30. data/lib/ronin/formatting/extensions/http/string.rb +102 -0
  31. data/lib/ronin/formatting/extensions/text.rb +23 -0
  32. data/lib/ronin/formatting/extensions/text/array.rb +125 -0
  33. data/lib/ronin/formatting/extensions/text/string.rb +206 -0
  34. data/lib/ronin/formatting/http.rb +22 -0
  35. data/lib/ronin/formatting/text.rb +22 -0
  36. data/lib/ronin/network.rb +29 -0
  37. data/lib/ronin/network/esmtp.rb +22 -0
  38. data/lib/ronin/network/extensions.rb +29 -0
  39. data/lib/ronin/network/extensions/esmtp.rb +22 -0
  40. data/lib/ronin/network/extensions/esmtp/net.rb +100 -0
  41. data/lib/ronin/network/extensions/http.rb +22 -0
  42. data/lib/ronin/network/extensions/http/net.rb +661 -0
  43. data/lib/ronin/network/extensions/imap.rb +22 -0
  44. data/lib/ronin/network/extensions/imap/net.rb +124 -0
  45. data/lib/ronin/network/extensions/pop3.rb +22 -0
  46. data/lib/ronin/network/extensions/pop3/net.rb +92 -0
  47. data/lib/ronin/network/extensions/smtp.rb +22 -0
  48. data/lib/ronin/network/extensions/smtp/net.rb +110 -0
  49. data/lib/ronin/network/extensions/ssl.rb +22 -0
  50. data/lib/ronin/network/extensions/ssl/net.rb +147 -0
  51. data/lib/ronin/network/extensions/tcp.rb +22 -0
  52. data/lib/ronin/network/extensions/tcp/net.rb +304 -0
  53. data/lib/ronin/network/extensions/telnet.rb +22 -0
  54. data/lib/ronin/network/extensions/telnet/net.rb +156 -0
  55. data/lib/ronin/network/extensions/udp.rb +22 -0
  56. data/lib/ronin/network/extensions/udp/net.rb +226 -0
  57. data/lib/ronin/network/http.rb +24 -0
  58. data/lib/ronin/network/http/exceptions.rb +22 -0
  59. data/lib/ronin/network/http/exceptions/unknown_request.rb +29 -0
  60. data/lib/ronin/network/http/http.rb +290 -0
  61. data/lib/ronin/network/http/proxy.rb +307 -0
  62. data/lib/ronin/network/imap.rb +49 -0
  63. data/lib/ronin/network/network.rb +41 -0
  64. data/lib/ronin/network/pop3.rb +49 -0
  65. data/lib/ronin/network/smtp.rb +24 -0
  66. data/lib/ronin/network/smtp/email.rb +143 -0
  67. data/lib/ronin/network/smtp/smtp.rb +68 -0
  68. data/lib/ronin/network/ssl.rb +47 -0
  69. data/lib/ronin/network/tcp.rb +22 -0
  70. data/lib/ronin/network/telnet.rb +109 -0
  71. data/lib/ronin/network/udp.rb +22 -0
  72. data/lib/ronin/path.rb +132 -0
  73. data/lib/ronin/support.rb +28 -0
  74. data/lib/ronin/support/inflector.rb +40 -0
  75. data/lib/ronin/support/version.rb +27 -0
  76. data/lib/ronin/templates.rb +23 -0
  77. data/lib/ronin/templates/erb.rb +75 -0
  78. data/lib/ronin/templates/template.rb +161 -0
  79. data/ronin-support.gemspec +10 -0
  80. data/spec/extensions/file_spec.rb +24 -0
  81. data/spec/extensions/ip_addr_spec.rb +171 -0
  82. data/spec/extensions/kernel_spec.rb +30 -0
  83. data/spec/extensions/string_spec.rb +177 -0
  84. data/spec/formatting/binary/helpers/hexdumps.rb +16 -0
  85. data/spec/formatting/binary/helpers/hexdumps/ascii.bin +0 -0
  86. data/spec/formatting/binary/helpers/hexdumps/hexdump_decimal_shorts.txt +17 -0
  87. data/spec/formatting/binary/helpers/hexdumps/hexdump_hex_bytes.txt +17 -0
  88. data/spec/formatting/binary/helpers/hexdumps/hexdump_hex_shorts.txt +17 -0
  89. data/spec/formatting/binary/helpers/hexdumps/hexdump_octal_bytes.txt +17 -0
  90. data/spec/formatting/binary/helpers/hexdumps/hexdump_octal_shorts.txt +17 -0
  91. data/spec/formatting/binary/helpers/hexdumps/hexdump_repeated.txt +6 -0
  92. data/spec/formatting/binary/helpers/hexdumps/od_decimal_bytes.txt +17 -0
  93. data/spec/formatting/binary/helpers/hexdumps/od_decimal_ints.txt +17 -0
  94. data/spec/formatting/binary/helpers/hexdumps/od_decimal_quads.txt +17 -0
  95. data/spec/formatting/binary/helpers/hexdumps/od_decimal_shorts.txt +17 -0
  96. data/spec/formatting/binary/helpers/hexdumps/od_hex_bytes.txt +17 -0
  97. data/spec/formatting/binary/helpers/hexdumps/od_hex_ints.txt +17 -0
  98. data/spec/formatting/binary/helpers/hexdumps/od_hex_quads.txt +17 -0
  99. data/spec/formatting/binary/helpers/hexdumps/od_hex_shorts.txt +17 -0
  100. data/spec/formatting/binary/helpers/hexdumps/od_octal_bytes.txt +17 -0
  101. data/spec/formatting/binary/helpers/hexdumps/od_octal_ints.txt +17 -0
  102. data/spec/formatting/binary/helpers/hexdumps/od_octal_quads.txt +17 -0
  103. data/spec/formatting/binary/helpers/hexdumps/od_octal_shorts.txt +17 -0
  104. data/spec/formatting/binary/helpers/hexdumps/od_repeated.txt +6 -0
  105. data/spec/formatting/binary/helpers/hexdumps/repeated.bin +1 -0
  106. data/spec/formatting/binary/integer_spec.rb +140 -0
  107. data/spec/formatting/binary/string_spec.rb +306 -0
  108. data/spec/formatting/digest/string_spec.rb +82 -0
  109. data/spec/formatting/http/integer_spec.rb +42 -0
  110. data/spec/formatting/http/string_spec.rb +76 -0
  111. data/spec/formatting/text/array_spec.rb +105 -0
  112. data/spec/formatting/text/string_spec.rb +180 -0
  113. data/spec/network/http/http_spec.rb +280 -0
  114. data/spec/network/http/proxy_spec.rb +150 -0
  115. data/spec/network/network_spec.rb +8 -0
  116. data/spec/network/ssl_spec.rb +14 -0
  117. data/spec/path_spec.rb +84 -0
  118. data/spec/spec_helper.rb +4 -0
  119. data/spec/support_spec.rb +8 -0
  120. data/spec/templates/classes/example_erb.rb +11 -0
  121. data/spec/templates/classes/example_template.rb +35 -0
  122. data/spec/templates/erb_spec.rb +21 -0
  123. data/spec/templates/helpers/data.rb +9 -0
  124. data/spec/templates/helpers/data/includes/_relative.erb +1 -0
  125. data/spec/templates/helpers/data/templates/example.erb +1 -0
  126. data/spec/templates/template_spec.rb +54 -0
  127. metadata +286 -0
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+ require 'ronin/extensions/kernel'
3
+
4
+ describe Kernel do
5
+ it "should provide Kernel#attempt" do
6
+ Kernel.should respond_to('attempt')
7
+ end
8
+
9
+ describe "attempt" do
10
+ it "should return the result of the block if nothing is raised" do
11
+ attempt { 2 + 2 }.should == 4
12
+ end
13
+
14
+ it "should return nil if an exception is raised" do
15
+ attempt { 2 + 'a' }.should be_nil
16
+ end
17
+
18
+ it "should rescue RuntimeError exceptions" do
19
+ lambda {
20
+ attempt { raise(RuntimeError,"something happened",caller) }
21
+ }.should_not raise_error(RuntimeError)
22
+ end
23
+
24
+ it "should rescue StandardError exceptions" do
25
+ lambda {
26
+ attempt { raise(StandardError,"not allowed to do that",caller) }
27
+ }.should_not raise_error(StandardError)
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,177 @@
1
+ require 'spec_helper'
2
+ require 'ronin/extensions/string'
3
+
4
+ describe String do
5
+ describe "each_substring" do
6
+ subject { 'hello' }
7
+
8
+ it "should enumerate over each sub-string within the String" do
9
+ subject.each_substring do |sub_string|
10
+ should include(sub_string)
11
+ end
12
+ end
13
+
14
+ it "should allow passing the string index back" do
15
+ subject.each_substring do |sub_string,index|
16
+ subject[index,sub_string.length].should == sub_string
17
+
18
+ should include(sub_string)
19
+ end
20
+ end
21
+
22
+ it "should enumerate over each sub-string of a minimum length" do
23
+ subject.each_substring(2) do |sub_string|
24
+ sub_string.length.should >= 2
25
+
26
+ should include(sub_string)
27
+ end
28
+ end
29
+
30
+ it "should return an Enumerator when no block is given" do
31
+ substrings = subject.each_substring
32
+
33
+ substrings.all? { |sub_string|
34
+ subject.include?(sub_string)
35
+ }.should == true
36
+ end
37
+ end
38
+
39
+ describe "each_unique_substring" do
40
+ subject { 'abablol' }
41
+
42
+ it "should enumerate over each unique sub-string within the String" do
43
+ seen = []
44
+
45
+ subject.each_unique_substring do |sub_string|
46
+ should include(sub_string)
47
+ seen.should_not include(sub_string)
48
+
49
+ seen << sub_string
50
+ end
51
+ end
52
+
53
+ it "should enumerate over each sub-string of a minimum length" do
54
+ seen = []
55
+
56
+ subject.each_unique_substring(2) do |sub_string|
57
+ sub_string.length.should >= 2
58
+
59
+ should include(sub_string)
60
+ seen.should_not include(sub_string)
61
+
62
+ seen << sub_string
63
+ end
64
+ end
65
+
66
+ it "should return an Enumerator when no block is given" do
67
+ seen = subject.each_unique_substring
68
+
69
+ seen.all? { |sub_string|
70
+ subject.include?(sub_string)
71
+ }.should == true
72
+
73
+ seen = seen.to_a
74
+ seen.uniq.should == seen
75
+ end
76
+ end
77
+
78
+ describe "common_prefix" do
79
+ it "should find the common prefix between two Strings" do
80
+ one = 'What is puzzling you is the nature of my game'
81
+ two = 'What is puzzling you is the nature of my name'
82
+ common = 'What is puzzling you is the nature of my '
83
+
84
+ one.common_prefix(two).should == common
85
+ end
86
+
87
+ it "should return the common prefix between two Strings with no uncommon postfix" do
88
+ one = "1234"
89
+ two = "12345"
90
+ common = "1234"
91
+
92
+ one.common_prefix(two).should == common
93
+ end
94
+
95
+ it "should return an empty String if there is no common prefix" do
96
+ one = 'Tell me people'
97
+ two = 'Whats my name'
98
+
99
+ one.common_prefix(two).should == ''
100
+ end
101
+
102
+ it "should return an empty String if one of the strings is also empty" do
103
+ one = 'Haha'
104
+ two = ''
105
+
106
+ one.common_prefix(two).should == ''
107
+ end
108
+ end
109
+
110
+ describe "common_postfix" do
111
+ it "should find the common postfix between two Strings" do
112
+ one = 'Tell me baby whats my name'
113
+ two = "Can't you guess my name"
114
+ common = 's my name'
115
+
116
+ one.common_postfix(two).should == common
117
+ end
118
+
119
+ it "should return an empty String if there is no common postfix" do
120
+ one = 'You got to right up, stand up'
121
+ two = 'stand up for your rights'
122
+
123
+ one.common_postfix(two).should == ''
124
+ end
125
+
126
+ it "should return an empty String if one of the strings is also empty" do
127
+ one = 'You and I must fight for our rights'
128
+ two = ''
129
+
130
+ one.common_postfix(two).should == ''
131
+ end
132
+ end
133
+
134
+ describe "uncommon_substring" do
135
+ it "should find the uncommon substring between two Strings" do
136
+ one = "Tell me baby whats my name"
137
+ two = "Tell me honey whats my name"
138
+ uncommon = 'bab'
139
+
140
+ one.uncommon_substring(two).should == uncommon
141
+ end
142
+
143
+ it "should find the uncommon substring between two Strings with a common prefix" do
144
+ one = 'You and I must fight for our rights'
145
+ two = 'You and I must fight to survive'
146
+ uncommon = 'for our rights'
147
+
148
+ one.uncommon_substring(two).should == uncommon
149
+ end
150
+
151
+ it "should find the uncommon substring between two Strings with a common postfix" do
152
+ one = 'Tell me baby whats my name'
153
+ two = "Can't you guess my name"
154
+ uncommon = 'Tell me baby what'
155
+
156
+ one.uncommon_substring(two).should == uncommon
157
+ end
158
+ end
159
+
160
+ describe "dump" do
161
+ it "should dump printable strings" do
162
+ "hello".dump.should == '"hello"'
163
+ end
164
+
165
+ it "should dump strings containing control characters" do
166
+ "hello\n\b\a".dump.should == '"hello\n\b\a"'
167
+ end
168
+
169
+ it "should dump strings containing non-printable characters" do
170
+ "hello\x90\x05\xef".dump.should == '"hello\x90\x05\xef"'
171
+ end
172
+
173
+ it "should dump the string when calling the inspect method" do
174
+ "hello\x90\x05\xef".inspect.should == '"hello\x90\x05\xef"'
175
+ end
176
+ end
177
+ end
@@ -0,0 +1,16 @@
1
+ module Helpers
2
+ def load_binary_data(name)
3
+ path = File.join(File.dirname(__FILE__),'hexdumps',"#{name}.bin")
4
+ buffer = []
5
+
6
+ File.open(path) do |file|
7
+ file.each_byte { |b| buffer << b }
8
+ end
9
+
10
+ return buffer
11
+ end
12
+
13
+ def load_hexdump(name)
14
+ File.read(File.join(File.dirname(__FILE__),'hexdumps',"#{name}.txt"))
15
+ end
16
+ end
@@ -0,0 +1,17 @@
1
+ 0000000 00256 00770 01284 01798 02312 02826 03340 03854
2
+ 0000010 04368 04882 05396 05910 06424 06938 07452 07966
3
+ 0000020 08480 08994 09508 10022 10536 11050 11564 12078
4
+ 0000030 12592 13106 13620 14134 14648 15162 15676 16190
5
+ 0000040 16704 17218 17732 18246 18760 19274 19788 20302
6
+ 0000050 20816 21330 21844 22358 22872 23386 23900 24414
7
+ 0000060 24928 25442 25956 26470 26984 27498 28012 28526
8
+ 0000070 29040 29554 30068 30582 31096 31610 32124 32638
9
+ 0000080 33152 33666 34180 34694 35208 35722 36236 36750
10
+ 0000090 37264 37778 38292 38806 39320 39834 40348 40862
11
+ 00000a0 41376 41890 42404 42918 43432 43946 44460 44974
12
+ 00000b0 45488 46002 46516 47030 47544 48058 48572 49086
13
+ 00000c0 49600 50114 50628 51142 51656 52170 52684 53198
14
+ 00000d0 53712 54226 54740 55254 55768 56282 56796 57310
15
+ 00000e0 57824 58338 58852 59366 59880 60394 60908 61422
16
+ 00000f0 61936 62450 62964 63478 63992 64506 65020 65534
17
+ 0000100
@@ -0,0 +1,17 @@
1
+ 00000000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f |................|
2
+ 00000010 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f |................|
3
+ 00000020 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f | !"#$%&'()*+,-./|
4
+ 00000030 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f |0123456789:;<=>?|
5
+ 00000040 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f |@ABCDEFGHIJKLMNO|
6
+ 00000050 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f |PQRSTUVWXYZ[\]^_|
7
+ 00000060 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f |`abcdefghijklmno|
8
+ 00000070 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f |pqrstuvwxyz{|}~.|
9
+ 00000080 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f |................|
10
+ 00000090 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f |................|
11
+ 000000a0 a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af |................|
12
+ 000000b0 b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf |................|
13
+ 000000c0 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf |................|
14
+ 000000d0 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df |................|
15
+ 000000e0 e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef |................|
16
+ 000000f0 f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff |................|
17
+ 00000100
@@ -0,0 +1,17 @@
1
+ 0000000 0100 0302 0504 0706 0908 0b0a 0d0c 0f0e
2
+ 0000010 1110 1312 1514 1716 1918 1b1a 1d1c 1f1e
3
+ 0000020 2120 2322 2524 2726 2928 2b2a 2d2c 2f2e
4
+ 0000030 3130 3332 3534 3736 3938 3b3a 3d3c 3f3e
5
+ 0000040 4140 4342 4544 4746 4948 4b4a 4d4c 4f4e
6
+ 0000050 5150 5352 5554 5756 5958 5b5a 5d5c 5f5e
7
+ 0000060 6160 6362 6564 6766 6968 6b6a 6d6c 6f6e
8
+ 0000070 7170 7372 7574 7776 7978 7b7a 7d7c 7f7e
9
+ 0000080 8180 8382 8584 8786 8988 8b8a 8d8c 8f8e
10
+ 0000090 9190 9392 9594 9796 9998 9b9a 9d9c 9f9e
11
+ 00000a0 a1a0 a3a2 a5a4 a7a6 a9a8 abaa adac afae
12
+ 00000b0 b1b0 b3b2 b5b4 b7b6 b9b8 bbba bdbc bfbe
13
+ 00000c0 c1c0 c3c2 c5c4 c7c6 c9c8 cbca cdcc cfce
14
+ 00000d0 d1d0 d3d2 d5d4 d7d6 d9d8 dbda dddc dfde
15
+ 00000e0 e1e0 e3e2 e5e4 e7e6 e9e8 ebea edec efee
16
+ 00000f0 f1f0 f3f2 f5f4 f7f6 f9f8 fbfa fdfc fffe
17
+ 0000100
@@ -0,0 +1,17 @@
1
+ 0000000 000 001 002 003 004 005 006 007 010 011 012 013 014 015 016 017
2
+ 0000010 020 021 022 023 024 025 026 027 030 031 032 033 034 035 036 037
3
+ 0000020 040 041 042 043 044 045 046 047 050 051 052 053 054 055 056 057
4
+ 0000030 060 061 062 063 064 065 066 067 070 071 072 073 074 075 076 077
5
+ 0000040 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 117
6
+ 0000050 120 121 122 123 124 125 126 127 130 131 132 133 134 135 136 137
7
+ 0000060 140 141 142 143 144 145 146 147 150 151 152 153 154 155 156 157
8
+ 0000070 160 161 162 163 164 165 166 167 170 171 172 173 174 175 176 177
9
+ 0000080 200 201 202 203 204 205 206 207 210 211 212 213 214 215 216 217
10
+ 0000090 220 221 222 223 224 225 226 227 230 231 232 233 234 235 236 237
11
+ 00000a0 240 241 242 243 244 245 246 247 250 251 252 253 254 255 256 257
12
+ 00000b0 260 261 262 263 264 265 266 267 270 271 272 273 274 275 276 277
13
+ 00000c0 300 301 302 303 304 305 306 307 310 311 312 313 314 315 316 317
14
+ 00000d0 320 321 322 323 324 325 326 327 330 331 332 333 334 335 336 337
15
+ 00000e0 340 341 342 343 344 345 346 347 350 351 352 353 354 355 356 357
16
+ 00000f0 360 361 362 363 364 365 366 367 370 371 372 373 374 375 376 377
17
+ 0000100
@@ -0,0 +1,17 @@
1
+ 0000000 000400 001402 002404 003406 004410 005412 006414 007416
2
+ 0000010 010420 011422 012424 013426 014430 015432 016434 017436
3
+ 0000020 020440 021442 022444 023446 024450 025452 026454 027456
4
+ 0000030 030460 031462 032464 033466 034470 035472 036474 037476
5
+ 0000040 040500 041502 042504 043506 044510 045512 046514 047516
6
+ 0000050 050520 051522 052524 053526 054530 055532 056534 057536
7
+ 0000060 060540 061542 062544 063546 064550 065552 066554 067556
8
+ 0000070 070560 071562 072564 073566 074570 075572 076574 077576
9
+ 0000080 100600 101602 102604 103606 104610 105612 106614 107616
10
+ 0000090 110620 111622 112624 113626 114630 115632 116634 117636
11
+ 00000a0 120640 121642 122644 123646 124650 125652 126654 127656
12
+ 00000b0 130660 131662 132664 133666 134670 135672 136674 137676
13
+ 00000c0 140700 141702 142704 143706 144710 145712 146714 147716
14
+ 00000d0 150720 151722 152724 153726 154730 155732 156734 157736
15
+ 00000e0 160740 161742 162744 163746 164750 165752 166754 167756
16
+ 00000f0 170760 171762 172764 173766 174770 175772 176774 177776
17
+ 0000100
@@ -0,0 +1,6 @@
1
+ 00000000 68 65 6c 6c 6f 20 20 20 20 20 20 20 20 20 20 20 |hello |
2
+ 00000010 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | |
3
+ *
4
+ 00000030 20 20 20 20 20 20 20 20 20 20 20 67 6f 6f 64 62 | goodb|
5
+ 00000040 79 65 0a |ye.|
6
+ 00000043
@@ -0,0 +1,17 @@
1
+ 0000000 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
2
+ 0000020 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
3
+ 0000040 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
4
+ 0000060 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
5
+ 0000100 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
6
+ 0000120 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
7
+ 0000140 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
8
+ 0000160 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
9
+ 0000200 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
10
+ 0000220 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
11
+ 0000240 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
12
+ 0000260 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
13
+ 0000300 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
14
+ 0000320 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
15
+ 0000340 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
16
+ 0000360 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
17
+ 0000400
@@ -0,0 +1,17 @@
1
+ 0000000 50462976 117835012 185207048 252579084
2
+ 0000020 319951120 387323156 454695192 522067228
3
+ 0000040 589439264 656811300 724183336 791555372
4
+ 0000060 858927408 926299444 993671480 1061043516
5
+ 0000100 1128415552 1195787588 1263159624 1330531660
6
+ 0000120 1397903696 1465275732 1532647768 1600019804
7
+ 0000140 1667391840 1734763876 1802135912 1869507948
8
+ 0000160 1936879984 2004252020 2071624056 2138996092
9
+ 0000200 2206368128 2273740164 2341112200 2408484236
10
+ 0000220 2475856272 2543228308 2610600344 2677972380
11
+ 0000240 2745344416 2812716452 2880088488 2947460524
12
+ 0000260 3014832560 3082204596 3149576632 3216948668
13
+ 0000300 3284320704 3351692740 3419064776 3486436812
14
+ 0000320 3553808848 3621180884 3688552920 3755924956
15
+ 0000340 3823296992 3890669028 3958041064 4025413100
16
+ 0000360 4092785136 4160157172 4227529208 4294901244
17
+ 0000400
@@ -0,0 +1,17 @@
1
+ 0000000 506097522914230528 1084818905618843912
2
+ 0000020 1663540288323457296 2242261671028070680
3
+ 0000040 2820983053732684064 3399704436437297448
4
+ 0000060 3978425819141910832 4557147201846524216
5
+ 0000100 5135868584551137600 5714589967255750984
6
+ 0000120 6293311349960364368 6872032732664977752
7
+ 0000140 7450754115369591136 8029475498074204520
8
+ 0000160 8608196880778817904 9186918263483431288
9
+ 0000200 9765639646188044672 10344361028892658056
10
+ 0000220 10923082411597271440 11501803794301884824
11
+ 0000240 12080525177006498208 12659246559711111592
12
+ 0000260 13237967942415724976 13816689325120338360
13
+ 0000300 14395410707824951744 14974132090529565128
14
+ 0000320 15552853473234178512 16131574855938791896
15
+ 0000340 16710296238643405280 17289017621348018664
16
+ 0000360 17867739004052632048 18446460386757245432
17
+ 0000400
@@ -0,0 +1,17 @@
1
+ 0000000 256 770 1284 1798 2312 2826 3340 3854
2
+ 0000020 4368 4882 5396 5910 6424 6938 7452 7966
3
+ 0000040 8480 8994 9508 10022 10536 11050 11564 12078
4
+ 0000060 12592 13106 13620 14134 14648 15162 15676 16190
5
+ 0000100 16704 17218 17732 18246 18760 19274 19788 20302
6
+ 0000120 20816 21330 21844 22358 22872 23386 23900 24414
7
+ 0000140 24928 25442 25956 26470 26984 27498 28012 28526
8
+ 0000160 29040 29554 30068 30582 31096 31610 32124 32638
9
+ 0000200 33152 33666 34180 34694 35208 35722 36236 36750
10
+ 0000220 37264 37778 38292 38806 39320 39834 40348 40862
11
+ 0000240 41376 41890 42404 42918 43432 43946 44460 44974
12
+ 0000260 45488 46002 46516 47030 47544 48058 48572 49086
13
+ 0000300 49600 50114 50628 51142 51656 52170 52684 53198
14
+ 0000320 53712 54226 54740 55254 55768 56282 56796 57310
15
+ 0000340 57824 58338 58852 59366 59880 60394 60908 61422
16
+ 0000360 61936 62450 62964 63478 63992 64506 65020 65534
17
+ 0000400
@@ -0,0 +1,17 @@
1
+ 0000000 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
2
+ 0000020 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f
3
+ 0000040 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f
4
+ 0000060 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f
5
+ 0000100 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f
6
+ 0000120 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f
7
+ 0000140 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f
8
+ 0000160 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f
9
+ 0000200 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f
10
+ 0000220 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f
11
+ 0000240 a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af
12
+ 0000260 b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf
13
+ 0000300 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf
14
+ 0000320 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df
15
+ 0000340 e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef
16
+ 0000360 f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff
17
+ 0000400
@@ -0,0 +1,17 @@
1
+ 0000000 03020100 07060504 0b0a0908 0f0e0d0c
2
+ 0000020 13121110 17161514 1b1a1918 1f1e1d1c
3
+ 0000040 23222120 27262524 2b2a2928 2f2e2d2c
4
+ 0000060 33323130 37363534 3b3a3938 3f3e3d3c
5
+ 0000100 43424140 47464544 4b4a4948 4f4e4d4c
6
+ 0000120 53525150 57565554 5b5a5958 5f5e5d5c
7
+ 0000140 63626160 67666564 6b6a6968 6f6e6d6c
8
+ 0000160 73727170 77767574 7b7a7978 7f7e7d7c
9
+ 0000200 83828180 87868584 8b8a8988 8f8e8d8c
10
+ 0000220 93929190 97969594 9b9a9998 9f9e9d9c
11
+ 0000240 a3a2a1a0 a7a6a5a4 abaaa9a8 afaeadac
12
+ 0000260 b3b2b1b0 b7b6b5b4 bbbab9b8 bfbebdbc
13
+ 0000300 c3c2c1c0 c7c6c5c4 cbcac9c8 cfcecdcc
14
+ 0000320 d3d2d1d0 d7d6d5d4 dbdad9d8 dfdedddc
15
+ 0000340 e3e2e1e0 e7e6e5e4 ebeae9e8 efeeedec
16
+ 0000360 f3f2f1f0 f7f6f5f4 fbfaf9f8 fffefdfc
17
+ 0000400