opensecret 0.0.9925 → 0.0.9949

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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +656 -40
  3. data/lib/configs/README.md +58 -0
  4. data/lib/extension/file.rb +67 -0
  5. data/lib/extension/string.rb +10 -0
  6. data/lib/factbase/facts.opensecret.io.ini +1 -0
  7. data/lib/interprete.rb +334 -61
  8. data/lib/keytools/PRODUCE_RAND_SEQ_USING_DEV_URANDOM.txt +0 -0
  9. data/lib/keytools/kdf.api.rb +9 -15
  10. data/lib/keytools/kdf.bcrypt.rb +69 -19
  11. data/lib/keytools/kdf.pbkdf2.rb +112 -23
  12. data/lib/keytools/key.api.rb +146 -36
  13. data/lib/keytools/key.db.rb +94 -29
  14. data/lib/keytools/key.id.rb +1 -1
  15. data/lib/keytools/key.ident.rb +243 -0
  16. data/lib/keytools/key.local.rb +62 -68
  17. data/lib/keytools/key.pass.rb +2 -2
  18. data/lib/keytools/key.rb +2 -28
  19. data/lib/modules/{cryptology.md → README.md} +0 -0
  20. data/lib/session/fact.finder.rb +65 -428
  21. data/lib/session/time.stamp.rb +1 -28
  22. data/lib/usecase/cmd.rb +127 -54
  23. data/lib/usecase/config/README.md +57 -0
  24. data/lib/usecase/docker/README.md +146 -0
  25. data/lib/usecase/docker/docker.rb +49 -0
  26. data/lib/usecase/edit/README.md +43 -0
  27. data/lib/usecase/edit/delete.rb +46 -0
  28. data/lib/usecase/export.rb +40 -0
  29. data/lib/usecase/files/README.md +37 -0
  30. data/lib/usecase/files/eject.rb +56 -0
  31. data/lib/usecase/files/file_me.rb +78 -0
  32. data/lib/usecase/files/read.rb +169 -0
  33. data/lib/usecase/files/write.rb +89 -0
  34. data/lib/usecase/goto.rb +57 -0
  35. data/lib/usecase/id.rb +1 -1
  36. data/lib/usecase/import.rb +13 -30
  37. data/lib/usecase/init.rb +2 -17
  38. data/lib/usecase/jenkins/README.md +146 -0
  39. data/lib/usecase/jenkins/crazy_ruby_post_attempt.OLD +234 -0
  40. data/lib/usecase/jenkins/jenkins.rb +208 -0
  41. data/lib/usecase/login.rb +6 -5
  42. data/lib/usecase/logout.rb +1 -3
  43. data/lib/usecase/open.rb +11 -66
  44. data/lib/usecase/print.rb +40 -0
  45. data/lib/usecase/put.rb +34 -156
  46. data/lib/usecase/set.rb +2 -4
  47. data/lib/usecase/show.rb +138 -0
  48. data/lib/usecase/terraform/README.md +91 -0
  49. data/lib/usecase/terraform/terraform.rb +121 -0
  50. data/lib/usecase/token.rb +4 -80
  51. data/lib/usecase/update/README.md +55 -0
  52. data/lib/usecase/update/rename.rb +180 -0
  53. data/lib/usecase/use.rb +1 -3
  54. data/lib/usecase/verse.rb +20 -0
  55. data/lib/usecase/view.rb +71 -0
  56. data/lib/usecase/vpn/README.md +150 -0
  57. data/lib/usecase/vpn/vpn.ini +31 -0
  58. data/lib/usecase/vpn/vpn.rb +54 -0
  59. data/lib/version.rb +1 -1
  60. data/opensecret.gemspec +3 -4
  61. metadata +34 -35
  62. data/.travis.yml +0 -5
  63. data/CODE_OF_CONDUCT.md +0 -74
  64. data/LICENSE.txt +0 -21
  65. data/bin/ops +0 -20
  66. data/lib/keytools/binary.map.rb +0 -294
  67. data/lib/keytools/doc.conversion.to.ones.and.zeroes.ruby +0 -179
  68. data/lib/keytools/doc.rsa.radix.binary-mapping.ruby +0 -190
  69. data/lib/keytools/doc.star.schema.strategy.txt +0 -77
  70. data/lib/keytools/doc.using.pbkdf2.kdf.ruby +0 -95
  71. data/lib/keytools/doc.using.pbkdf2.pkcs.ruby +0 -266
  72. data/lib/keytools/key.mach.rb +0 -248
  73. data/lib/keytools/keydebug.txt +0 -295
  74. data/lib/modules/cryptology/open.bcrypt.rb +0 -170
  75. data/lib/usecase/read.rb +0 -89
  76. data/lib/usecase/safe.rb +0 -92
@@ -1,248 +0,0 @@
1
- #!/usr/bin/ruby
2
- # coding: utf-8
3
-
4
- module OpenKey
5
-
6
- # This class knows how to derive information from the machine environment to aide
7
- # in producing identifiers unique to the machine and/or workstation, with functionality
8
- # similar to that required by licensing software.
9
- #
10
- # == Identity is Similar to Licensing Software | Except Deeper
11
- #
12
- # Deriving the identity string follows similar principles to licensing
13
- # software that attempts to determine whether the operating environment
14
- # is the same or different. But it goes deeper than licensing software
15
- # as it is not only concerned about the <b>same workstation</b> - it is
16
- # also concerned about <b>the same shell or command line interface</b>.
17
- #
18
- # == Known Issues
19
- #
20
- # The dependent macaddr gem is known to fail in scenarios where a
21
- # VPN tunnel is active and a tell tale sign is the ifconfig command
22
- # returning the tun0 interface rather than "eth0" or something that
23
- # resembles "ensp21".
24
- #
25
- # This is one of the error messages resulting from such a case.
26
- #
27
- # macaddr.rb:86 from_getifaddrs undefined method pfamily (NoMethodError)
28
- #
29
- class KeyMach
30
-
31
- # This method uses a one-way function to return a combinatorial digested
32
- # session identification string using a number of distinct parameters that
33
- # deliver the important behaviours of changing in certain circumstances
34
- # and remaining unchanged in others.
35
- #
36
- # <b>Change | When Should the Session ID Change?</b>
37
- #
38
- # The session id is not a secret but it has to be unique due to its role
39
- # in indexing the session envelopes and their changes.
40
- #
41
- # What is really important is that the <b>session id changes</b> when
42
- #
43
- # - the <b>domain</b> being used changes
44
- # - the <b>command shell</b> changes
45
- # - the user <b>switches to another workstation user</b>
46
- # - the <b>workstation host</b> is changed
47
- # - the <b>session token</b> environment variable changes
48
- # - the user <b>SSH's</b> into another shell
49
- #
50
- # A distinct workstation is identified by the first MAC address and the
51
- # hostname of the machine.
52
- #
53
- # <b>Unchanged | When Should it Remain Unchanged?</b>
54
- #
55
- # Remaining <b>unchanged</b> in certain scenarious is a session ID feature
56
- # that is just as important as it changing in others.
57
- #
58
- # The session ID <b>must remain unchanged</b> when
59
- #
60
- # - the <b>user returns to a command shell</b>
61
- # - the user <b>switches back to using a domain</b>
62
- # - the user exits their <b>remote SSH session</b>
63
- # - <b>sudo is used</b> to execute the commands
64
- # - the user comes back to their <b>workstation</b>
65
- # - the clock ticks into another day, month, year ...
66
- #
67
- # The pre-hash inputs are an amalgam of the below example data.
68
- #
69
- # Mac Address => 20cf3067dec3
70
- # Parent PID => 5817
71
- # Machine Host => data-cruncher
72
- # Session Time => 18083.0310.41.796577366
73
- #
74
- # @return [String]
75
- # a one line textual shell identity string
76
- def self.derive_shell_identity_string
77
-
78
- require 'socket'
79
-
80
- calling_module = File.basename caller_locations(1,1).first.absolute_path, ".rb"
81
- calling_method = caller_locations(1,1).first.base_label
82
- calling_lineno = caller_locations(1,1).first.lineno
83
- caller_details = "#{calling_module} | #{calling_method} | (line #{calling_lineno})"
84
-
85
- log.info(x) { "### #####################################################################" }
86
- log.info(x) { "### Caller Details =>> =>> #{caller_details}" }
87
- log.info(x) { "### #####################################################################" }
88
-
89
-
90
- log.info(x) { "Etc.getlogin() => #{Etc.getlogin()}" }
91
- log.info(x) { "Socket.gethostname() => #{Socket.gethostname()}" }
92
- log.info(x) { "get_net_address_digits() => #{get_net_address_digits()}" }
93
- log.info(x) { "derive_network_identity() => #{derive_network_identity()}" }
94
- log.info(x) { "Process.ppid.to_s() => #{Process.ppid.to_s()}" }
95
-
96
-
97
- # Do not change the order of this data because it is reversed and
98
- # the parent's shell ID hotly followed by the network identifier are
99
- # the most significant data points.
100
- identity_text = [
101
- Etc.getlogin(),
102
- Socket.gethostname(),
103
- get_net_address_digits(),
104
- derive_network_identity(),
105
- Process.ppid.to_s()
106
- ].join.reverse
107
-
108
- return identity_text
109
-
110
- end
111
-
112
-
113
- # This method uses a one-way function to return a combinatorial digested
114
- # machine identification string using a number of distinct input parameters
115
- # to deliver the characteristic of producing the same identifier for the
116
- # same machine, virtual machine, workstation and/or compute element, and
117
- # reciprocally, a different one on a different machine.
118
- #
119
- # The userspace is also a key machine identifier so a different machine user
120
- # generates a different identifier when all other things remain equal.
121
- #
122
- # Mac Address => 20cf3067dec3
123
- # Machine User => joebloggs
124
- # Machine Host => data-cruncher
125
- # IP Addresses => w.x.y.z + a.b.c.d
126
- #
127
- # @return [String]
128
- # a one line textual machine workstation or compute element identifier
129
- # that is (surprisingly) different when the machine user changes.
130
- def self.derive_machine_identity_string
131
-
132
- require 'socket'
133
-
134
- identity_text = [
135
- Etc.getlogin,
136
- Socket.gethostname(),
137
- get_net_address_digits(),
138
- derive_network_identity()
139
- ].join.reverse
140
-
141
- return identity_text
142
-
143
- end
144
-
145
-
146
- # If the system was rebooted on April 23rd, 2018 at 22:00:16 we
147
- # expect this method not to return <b>2018-04-23 22:00:16</b>, but
148
- # to return the <b>8 least significant digits</b> bootup time
149
- # digits which in this case are <b>23220016</b>.
150
- #
151
- # Investigate all Linux flavours to understand whether this command
152
- # works (or is it just Ubuntu). Also does Docker return a sensible
153
- # value here?
154
- #
155
- # This method is not production ready. Not only is the time within
156
- # a small range, also the most significant digit can fluctuate up
157
- # or down randomly (in a non-deterministic manner.
158
- #
159
- # @return [String] the time when the system was booted.
160
- def self.get_bootup_time_digits
161
-
162
- boot_time_cmd = "uptime -s"
163
- uptime_string = %x[ #{boot_time_cmd} ]
164
- return uptime_string.to_alphanumeric[ 6 .. -1 ]
165
-
166
- end
167
-
168
-
169
- # This method will return the first readable non loopback (127.0.0.1)
170
- # IP address if the bolean {ip_address_readable?} returns true.
171
- #
172
- # @return [String]
173
- # the first sensible non-loopback IP address which we know to exist.
174
- #
175
- # @raise RuntimeError if the IP address that we have on good authority exists, does not.
176
- def self.get_net_address_digits
177
-
178
- return "mT4Lq8DsG-x=@/y(_9A:]r" unless ip_address_readable?()
179
-
180
- ip_addresses = get_address_list()
181
- ip_addresses.each do |candidate_address|
182
- return candidate_address.to_alphanumeric unless candidate_address.eql?( "127.0.0.1" )
183
- end
184
- raise RuntimeError, "Was led to expect at least one readable IP address."
185
-
186
- end
187
-
188
-
189
- # Return a string that is the same if the logical underlying machine the
190
- # software is running on is the same - and different if it is different.
191
- #
192
- # The current implementation ciphens off the last 12 characters of the gnerated
193
- # UUID and this is guaranteed to remain constant in a manner required by
194
- # <b>license generating tools</b>.
195
- #
196
- # Within a Docker container this behaviour will have to be observed
197
- # carefully - especially when Docker Compose type tools are used
198
- # and the container persists across the host machine reboots.
199
- def self.derive_network_identity
200
-
201
- require 'uuid'
202
-
203
- the_uuid = UUID.new.generate
204
-
205
- too_short = the_uuid.length <= NETWORK_ID_LENGTH
206
- raise RuntimeError, "Unexpected UUID format [#{the_uuid}]" if too_short
207
-
208
- net_id_chunk = the_uuid[ (the_uuid.length - NETWORK_ID_LENGTH) .. -1 ]
209
- perfect_size = net_id_chunk.length == NETWORK_ID_LENGTH
210
- size_err_msg = "Expected [ #{net_id_chunk} ] net ID length of #{NETWORK_ID_LENGTH}."
211
- raise RuntimeError,size_err_msg unless perfect_size
212
-
213
- return net_id_chunk
214
-
215
- end
216
-
217
-
218
-
219
- private
220
-
221
-
222
-
223
- NETWORK_ID_LENGTH = 12
224
-
225
-
226
- def self.ip_address_readable?
227
- ip_addresses = get_address_list()
228
- no_addresses = ip_addresses.length == 0 || ( ip_addresses.length == 1 && ip_addresses[0] == "127.0.0.1" )
229
- return false if no_addresses
230
- ip_addresses.each do |candidate_address|
231
- return true unless candidate_address.eql?( "127.0.0.1" )
232
- end
233
- return false
234
- end
235
-
236
-
237
- def self.get_address_list
238
- multipleAddresses = Socket.ip_address_list
239
- stringAddressText = multipleAddresses.to_s
240
- ipAddressRegEx = /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/;
241
- return stringAddressText.scan( ipAddressRegEx );
242
- end
243
-
244
-
245
- end
246
-
247
-
248
- end
@@ -1,295 +0,0 @@
1
-
2
- #### ###################### ####
3
- #### Waiting for Gre Output ####
4
- #### ###################### ####
5
-
6
-
7
- Commands
8
-
9
- grep -E "do_encrypt_key|do_decrypt_key|generate_shell_key_and_token|regenerate_shell_key|derive_session_crypt_key|derive_shell_identity_string" *.log
10
-
11
-
12
- I, [2018-06-20T07:16:31.020725 #27357] INFO -- key.local | generate_shell_key_and_token | (line 81) : "### #####################################################################"
13
- I, [2018-06-20T07:16:31.020761 #27357] INFO -- key.local | generate_shell_key_and_token | (line 82) : "### Caller Details =>> =>> key | execute | (line 83)"
14
- I, [2018-06-20T07:16:31.020799 #27357] INFO -- key.local | generate_shell_key_and_token | (line 83) : "### #####################################################################"
15
- I, [2018-06-20T07:16:31.024921 #27357] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
16
- I, [2018-06-20T07:16:31.024971 #27357] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
17
- I, [2018-06-20T07:16:31.025008 #27357] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
18
- I, [2018-06-20T07:16:31.025388 #27357] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
19
- I, [2018-06-20T07:16:31.025438 #27357] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
20
- I, [2018-06-20T07:16:31.025920 #27357] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
21
- I, [2018-06-20T07:16:31.031573 #27357] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
22
- I, [2018-06-20T07:16:31.034135 #27357] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
23
- I, [2018-06-20T07:16:31.034229 #27357] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
24
- I, [2018-06-20T07:16:31.037052 #27357] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
25
- I, [2018-06-20T07:16:31.037138 #27357] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
26
- I, [2018-06-20T07:16:31.037186 #27357] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
27
- I, [2018-06-20T07:16:31.037222 #27357] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
28
- I, [2018-06-20T07:16:35.230008 #27357] INFO -- key | do_encrypt_key | (line 410) : "### #####################################################################"
29
- I, [2018-06-20T07:16:35.230094 #27357] INFO -- key | do_encrypt_key | (line 411) : "### Caller Details =>> =>> key.local | generate_shell_key_and_token | (line 88)"
30
- I, [2018-06-20T07:16:35.230135 #27357] INFO -- key | do_encrypt_key | (line 412) : "### #####################################################################"
31
- I, [2018-06-20T07:16:35.230175 #27357] INFO -- key | do_encrypt_key | (line 413) : "The BitStr Char representation of this key => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
32
- I, [2018-06-20T07:16:35.230232 #27357] INFO -- key | do_encrypt_key | (line 414) : "256bit Digest (Urlsafe Base64) of this key => hQvwy9Sm2PHSJ6AuDtl4dhOF1gKfR1ydKcNelRZzYu0="
33
- I, [2018-06-20T07:16:35.230323 #27357] INFO -- key | do_encrypt_key | (line 415) : "The IncomingKey Base64 Char representation => isbrxRc4eGC6gZjDfxT2sxkK4OHPvd6LR4Zar6ssZOA@NDxaM2ZzFxi7fDDa7xUh"
34
- I, [2018-06-20T07:16:35.230369 #27357] INFO -- key | do_encrypt_key | (line 416) : "Random IV Used for the AESs Key Encryption => Ly28cDkZ-wyEKMhXqy9Zrg=="
35
- I, [2018-06-20T07:16:35.230488 #27357] INFO -- key | do_encrypt_key | (line 419) : "Cipher Text Produced after this Encryption => l_-BzmA3ZKVbZMpinEUlEWkHc20o8CErtrm24RwNubNXnC_hRunGQYUgPsC0WVUyBbVYIuO9W-_fL_EHgnUngRsALCvlz1xSBmH3Ab68qUI="
36
- I, [2018-06-20T07:16:35.230628 #27357] INFO -- key | do_encrypt_key | (line 425) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
37
- I, [2018-06-20T07:16:35.230671 #27357] INFO -- key | do_encrypt_key | (line 426) : "------------------------------------------------------------------------- >>>>>>"
38
- I, [2018-06-20T07:16:35.230718 #27357] INFO -- key.local | generate_shell_key_and_token | (line 92) : "BCrypt Salt Create => mqM3yu.Bin.H.nh4l3cwoO"
39
- I, [2018-06-20T07:16:35.230756 #27357] INFO -- key.local | generate_shell_key_and_token | (line 93) : "Obfuscate ShellKey => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
40
- I, [2018-06-20T07:16:35.230797 #27357] INFO -- key.local | generate_shell_key_and_token | (line 94) : "EncryptedKey Crypt => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
41
- I, [2018-06-20T07:16:35.230833 #27357] INFO -- key.local | generate_shell_key_and_token | (line 95) : "Session Token Unit => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
42
- I, [2018-06-20T07:17:05.853753 #27607] INFO -- key | do_encrypt_key | (line 410) : "### #####################################################################"
43
- I, [2018-06-20T07:17:05.853850 #27607] INFO -- key | do_encrypt_key | (line 411) : "### Caller Details =>> =>> key.api | recycle_keys | (line 310)"
44
- I, [2018-06-20T07:17:05.853891 #27607] INFO -- key | do_encrypt_key | (line 412) : "### #####################################################################"
45
- I, [2018-06-20T07:17:05.853929 #27607] INFO -- key | do_encrypt_key | (line 413) : "The BitStr Char representation of this key => 00001010011110001010010001101010011111110011010000100110100111110001010010000111101001000000110101000000001001011001111001001000010001110011101111101100110101100000111100111011010111111101110000101010111011001000011011101011000111000011000101001011100101100111011010101000111110101011111110010000100001010100011110100101101110100101001000000110111100010101101101000110100110010100010001101110001100110000100110000111011000000111110011011000110101011111110111010010111110001100011001101001101001010011010011011101"
46
- I, [2018-06-20T07:17:05.853985 #27607] INFO -- key | do_encrypt_key | (line 414) : "256bit Digest (Urlsafe Base64) of this key => -RYLRFsfr92eq_K_w5FeAUTwgsQLIcZIk2mxCmhoFyM="
47
- I, [2018-06-20T07:17:05.854076 #27607] INFO -- key | do_encrypt_key | (line 415) : "The IncomingKey Base64 Char representation => CVcyceOj3UZSkP6g@ZyilcKL9jLjy0Bn9EWyQiYYGyarBwr2f7%Qg6AgpqhiJ14Q"
48
- I, [2018-06-20T07:17:05.854128 #27607] INFO -- key | do_encrypt_key | (line 416) : "Random IV Used for the AESs Key Encryption => zTEt2_SF3ZszGGcgu8zlsA=="
49
- I, [2018-06-20T07:17:05.854268 #27607] INFO -- key | do_encrypt_key | (line 419) : "Cipher Text Produced after this Encryption => 7GhAsfOQyTI6NZcr3Acq94emTV7m9P-zIG4Rw_KXz66bgPHF_AsDuEiK-ZAt0gQylUSAFzHo-BR1bW8PVNWOaHbsB_HjNzOc934zJtTZLRM="
50
- I, [2018-06-20T07:17:05.854387 #27607] INFO -- key | do_encrypt_key | (line 425) : "Amalgam of Binary Random IV and Ciphertext => v6fhUilKXNMvOOSV4DvZMEdGL5zv@c@7E0og1xqz1pTzj@2TCp6iM794fSJ7ZDP48rBddbq5aQR3Hp8L5%3fcjwfV9SdyJVI%o2pB26w08RUQabdrvSvFJ%Pc7YIUle6"
51
- I, [2018-06-20T07:17:05.854427 #27607] INFO -- key | do_encrypt_key | (line 426) : "------------------------------------------------------------------------- >>>>>>"
52
- I, [2018-06-20T07:17:45.388202 #27923] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
53
- I, [2018-06-20T07:17:45.388284 #27923] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.api | do_login | (line 443)"
54
- I, [2018-06-20T07:17:45.388323 #27923] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
55
- I, [2018-06-20T07:17:45.388360 #27923] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => v6fhUilKXNMvOOSV4DvZMEdGL5zv@c@7E0og1xqz1pTzj@2TCp6iM794fSJ7ZDP48rBddbq5aQR3Hp8L5%3fcjwfV9SdyJVI%o2pB26w08RUQabdrvSvFJ%Pc7YIUle6"
56
- I, [2018-06-20T07:17:45.388397 #27923] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 00001010011110001010010001101010011111110011010000100110100111110001010010000111101001000000110101000000001001011001111001001000010001110011101111101100110101100000111100111011010111111101110000101010111011001000011011101011000111000011000101001011100101100111011010101000111110101011111110010000100001010100011110100101101110100101001000000110111100010101101101000110100110010100010001101110001100110000100110000111011000000111110011011000110101011111110111010010111110001100011001101001101001010011010011011101"
57
- I, [2018-06-20T07:17:45.388461 #27923] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => -RYLRFsfr92eq_K_w5FeAUTwgsQLIcZIk2mxCmhoFyM="
58
- I, [2018-06-20T07:17:45.388917 #27923] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => CVcyceOj3UZSkP6g@ZyilcKL9jLjy0Bn9EWyQiYYGyarBwr2f7%Qg6AgpqhiJ14Q"
59
- I, [2018-06-20T07:17:51.050189 #27923] INFO -- key | do_encrypt_key | (line 410) : "### #####################################################################"
60
- I, [2018-06-20T07:17:51.050278 #27923] INFO -- key | do_encrypt_key | (line 411) : "### Caller Details =>> =>> key.api | recycle_keys | (line 310)"
61
- I, [2018-06-20T07:17:51.050317 #27923] INFO -- key | do_encrypt_key | (line 412) : "### #####################################################################"
62
- I, [2018-06-20T07:17:51.050358 #27923] INFO -- key | do_encrypt_key | (line 413) : "The BitStr Char representation of this key => 10010111000101110100110011110111101101100011010001111100110000110001000000011111011001111101100110110100000000000000101110111010001101001000000100100001011100111011001111111100000110100100111001101011111111101100000100111101100111100100011011100111000100010111111100111010011001111001011101001011001111010100101111100011001110000110111011001000111011110000000011100100111001011000110011100111100110101110110110001011111110011110101000001011000010010100011011010101000100101110111001110101101111001011111110101010"
63
- I, [2018-06-20T07:17:51.050413 #27923] INFO -- key | do_encrypt_key | (line 414) : "256bit Digest (Urlsafe Base64) of this key => lvHyYL3wa4o-AW8zKcUHJXfOdQpk-zvbSBUKiFY2BqY="
64
- I, [2018-06-20T07:17:51.050505 #27923] INFO -- key | do_encrypt_key | (line 415) : "The IncomingKey Base64 Char representation => L81G0yQKLWFRTMq5Bi%5sTHzKZi5aVfYozcgHsQPH%foRvfX899ruybvzrmVN5tB"
65
- I, [2018-06-20T07:17:51.050553 #27923] INFO -- key | do_encrypt_key | (line 416) : "Random IV Used for the AESs Key Encryption => 2ZyunX6ee_rr936fN1smCw=="
66
- I, [2018-06-20T07:17:51.050654 #27923] INFO -- key | do_encrypt_key | (line 419) : "Cipher Text Produced after this Encryption => -gCsGq-FFKJpSk7go1K3WZHsFToOzuGHEAwA-DJ7NBzE8k4w5NEIUBm_njyO6pRajp7cgtwodDUMVV-U5wMvaKqA8OB8yl0lOFxJih1-Wgs="
67
- I, [2018-06-20T07:17:51.050798 #27923] INFO -- key | do_encrypt_key | (line 425) : "Amalgam of Binary Random IV and Ciphertext => UN74FgyTTimmxXybn2M8WiGam9upRAlHtIjEr1nlh28AQ9IyBMQRRdacaJV7TvLSdJsEcE6AWKaNpCrD04uIoGyTX35S1zL2BKwbZESB5UHuVJBVbcj%s6RSlkG%bZG5"
68
- I, [2018-06-20T07:17:51.050839 #27923] INFO -- key | do_encrypt_key | (line 426) : "------------------------------------------------------------------------- >>>>>>"
69
- I, [2018-06-20T07:17:51.051712 #27923] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
70
- I, [2018-06-20T07:17:51.051756 #27923] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | do_login | (line 472)"
71
- I, [2018-06-20T07:17:51.051792 #27923] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
72
- I, [2018-06-20T07:17:51.051969 #27923] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
73
- I, [2018-06-20T07:17:51.052009 #27923] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
74
- I, [2018-06-20T07:17:51.052045 #27923] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
75
- I, [2018-06-20T07:17:51.052128 #27923] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
76
- I, [2018-06-20T07:17:51.052178 #27923] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
77
- I, [2018-06-20T07:17:51.052624 #27923] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
78
- I, [2018-06-20T07:17:51.052794 #27923] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
79
- I, [2018-06-20T07:17:51.054430 #27923] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
80
- I, [2018-06-20T07:17:51.054517 #27923] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
81
- I, [2018-06-20T07:17:51.078095 #27923] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
82
- I, [2018-06-20T07:17:51.078194 #27923] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
83
- I, [2018-06-20T07:17:51.078232 #27923] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
84
- I, [2018-06-20T07:17:51.078268 #27923] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
85
- I, [2018-06-20T07:17:55.317529 #27923] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
86
- I, [2018-06-20T07:17:55.317603 #27923] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
87
- I, [2018-06-20T07:17:55.317642 #27923] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
88
- I, [2018-06-20T07:17:55.317680 #27923] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
89
- I, [2018-06-20T07:17:55.317722 #27923] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
90
- I, [2018-06-20T07:17:55.317765 #27923] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
91
- I, [2018-06-20T07:17:55.317801 #27923] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
92
- I, [2018-06-20T07:17:55.317837 #27923] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
93
- I, [2018-06-20T07:17:55.317873 #27923] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
94
- I, [2018-06-20T07:17:55.317929 #27923] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => hQvwy9Sm2PHSJ6AuDtl4dhOF1gKfR1ydKcNelRZzYu0="
95
- I, [2018-06-20T07:17:55.318393 #27923] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => isbrxRc4eGC6gZjDfxT2sxkK4OHPvd6LR4Zar6ssZOA@NDxaM2ZzFxi7fDDa7xUh"
96
- I, [2018-06-20T07:17:55.318706 #27923] INFO -- key | do_encrypt_key | (line 410) : "### #####################################################################"
97
- I, [2018-06-20T07:17:55.318746 #27923] INFO -- key | do_encrypt_key | (line 411) : "### Caller Details =>> =>> key.api | do_login | (line 473)"
98
- I, [2018-06-20T07:17:55.318781 #27923] INFO -- key | do_encrypt_key | (line 412) : "### #####################################################################"
99
- I, [2018-06-20T07:17:55.318819 #27923] INFO -- key | do_encrypt_key | (line 413) : "The BitStr Char representation of this key => 111111001001011111111000111101100001001100101110110100101000111001010011010111100101101001111100000100111101011110110101001001111101011000000101101110000110100010111110110011110001010011010000100001101110100101000000111000010011001001001001100101000110010001100100011001111100111101000000101100110101100101000111100111111101111111110010000100111100111100000000110010111101110110101101"
100
- I, [2018-06-20T07:17:55.318870 #27923] INFO -- key | do_encrypt_key | (line 414) : "256bit Digest (Urlsafe Base64) of this key => OV2cJi1zcgvh_WJD0xld30i_Ovnhqs3bveNsmI1Z-tM="
101
- I, [2018-06-20T07:17:55.318993 #27923] INFO -- key | do_encrypt_key | (line 415) : "The IncomingKey Base64 Char representation => L81G0yQKLWFRTMq5Bi%5sTHzKZi5aVfYozcgHsQPH%foRvfX899ruybvzrmVN5tB"
102
- I, [2018-06-20T07:17:55.319038 #27923] INFO -- key | do_encrypt_key | (line 416) : "Random IV Used for the AESs Key Encryption => UjvUkLdGHxOhuY-7CtT8zw=="
103
- I, [2018-06-20T07:17:55.319121 #27923] INFO -- key | do_encrypt_key | (line 419) : "Cipher Text Produced after this Encryption => FinrBH6i6nUYR25qql-Tp6RTczQpkvhhPamW2gvS3upAY7CDK3zM4syJIq3S541EKuBpVPexVx02qClN3iKwgcAz9p1wsk0ktEhbR8B6Mls="
104
- I, [2018-06-20T07:17:55.319239 #27923] INFO -- key | do_encrypt_key | (line 425) : "Amalgam of Binary Random IV and Ciphertext => I0pI@5%OzdER4kPQWh6DvdkjyqAPG4j2Of%4tujb@yT@IXce1N5rk6UjZhG5ehQuLOEqV7hDvE5cHl1he4TnAWmVtw6XMwS%nuVj6%rHM3zacit%S5sns5A3oebaT0sY"
105
- I, [2018-06-20T07:17:55.319278 #27923] INFO -- key | do_encrypt_key | (line 426) : "------------------------------------------------------------------------- >>>>>>"
106
- I, [2018-06-20T07:18:47.195554 #29057] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
107
- I, [2018-06-20T07:18:47.195600 #29057] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | read_app_content | (line 672)"
108
- I, [2018-06-20T07:18:47.195638 #29057] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
109
- I, [2018-06-20T07:18:47.195777 #29057] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
110
- I, [2018-06-20T07:18:47.195817 #29057] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
111
- I, [2018-06-20T07:18:47.195863 #29057] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
112
- I, [2018-06-20T07:18:47.196201 #29057] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
113
- I, [2018-06-20T07:18:47.196249 #29057] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
114
- I, [2018-06-20T07:18:47.196725 #29057] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
115
- I, [2018-06-20T07:18:47.202494 #29057] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
116
- I, [2018-06-20T07:18:47.205036 #29057] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
117
- I, [2018-06-20T07:18:47.205133 #29057] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
118
- I, [2018-06-20T07:18:47.208112 #29057] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
119
- I, [2018-06-20T07:18:47.208187 #29057] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
120
- I, [2018-06-20T07:18:47.208237 #29057] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
121
- I, [2018-06-20T07:18:47.208281 #29057] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
122
- I, [2018-06-20T07:18:51.466118 #29057] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
123
- I, [2018-06-20T07:18:51.466196 #29057] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
124
- I, [2018-06-20T07:18:51.466235 #29057] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
125
- I, [2018-06-20T07:18:51.466271 #29057] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
126
- I, [2018-06-20T07:18:51.466319 #29057] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
127
- I, [2018-06-20T07:18:51.466355 #29057] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
128
- I, [2018-06-20T07:18:51.466404 #29057] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
129
- I, [2018-06-20T07:18:51.466442 #29057] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
130
- I, [2018-06-20T07:18:51.466483 #29057] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
131
- I, [2018-06-20T07:18:51.466554 #29057] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => hQvwy9Sm2PHSJ6AuDtl4dhOF1gKfR1ydKcNelRZzYu0="
132
- I, [2018-06-20T07:18:51.467178 #29057] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => isbrxRc4eGC6gZjDfxT2sxkK4OHPvd6LR4Zar6ssZOA@NDxaM2ZzFxi7fDDa7xUh"
133
- I, [2018-06-20T07:18:51.491154 #29057] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
134
- I, [2018-06-20T07:18:51.491221 #29057] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.api | read_app_content | (line 681)"
135
- I, [2018-06-20T07:18:51.491258 #29057] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
136
- I, [2018-06-20T07:18:51.491295 #29057] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => I0pI@5%OzdER4kPQWh6DvdkjyqAPG4j2Of%4tujb@yT@IXce1N5rk6UjZhG5ehQuLOEqV7hDvE5cHl1he4TnAWmVtw6XMwS%nuVj6%rHM3zacit%S5sns5A3oebaT0sY"
137
- I, [2018-06-20T07:18:51.491331 #29057] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 111111001001011111111000111101100001001100101110110100101000111001010011010111100101101001111100000100111101011110110101001001111101011000000101101110000110100010111110110011110001010011010000100001101110100101000000111000010011001001001001100101000110010001100100011001111100111101000000101100110101100101000111100111111101111111110010000100111100111100000000110010111101110110101101"
138
- I, [2018-06-20T07:18:51.491382 #29057] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => OV2cJi1zcgvh_WJD0xld30i_Ovnhqs3bveNsmI1Z-tM="
139
- I, [2018-06-20T07:18:51.491847 #29057] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => L81G0yQKLWFRTMq5Bi%5sTHzKZi5aVfYozcgHsQPH%foRvfX899ruybvzrmVN5tB"
140
- I, [2018-06-20T07:18:51.510750 #29057] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
141
- I, [2018-06-20T07:18:51.510806 #29057] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | write_app_content | (line 753)"
142
- I, [2018-06-20T07:18:51.510844 #29057] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
143
- I, [2018-06-20T07:18:51.511097 #29057] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
144
- I, [2018-06-20T07:18:51.511138 #29057] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
145
- I, [2018-06-20T07:18:51.511176 #29057] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
146
- I, [2018-06-20T07:18:51.511265 #29057] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
147
- I, [2018-06-20T07:18:51.511311 #29057] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
148
- I, [2018-06-20T07:18:51.511757 #29057] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
149
- I, [2018-06-20T07:18:51.511963 #29057] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
150
- I, [2018-06-20T07:18:51.514457 #29057] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
151
- I, [2018-06-20T07:18:51.514538 #29057] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
152
- I, [2018-06-20T07:18:51.517561 #29057] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
153
- I, [2018-06-20T07:18:51.517731 #29057] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
154
- I, [2018-06-20T07:18:51.517810 #29057] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
155
- I, [2018-06-20T07:18:51.517876 #29057] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
156
- I, [2018-06-20T07:18:55.697600 #29057] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
157
- I, [2018-06-20T07:18:55.697677 #29057] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
158
- I, [2018-06-20T07:18:55.697718 #29057] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
159
- I, [2018-06-20T07:18:55.697757 #29057] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
160
- I, [2018-06-20T07:18:55.697802 #29057] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
161
- I, [2018-06-20T07:18:55.697840 #29057] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
162
- I, [2018-06-20T07:18:55.697877 #29057] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
163
- I, [2018-06-20T07:18:55.697914 #29057] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
164
- I, [2018-06-20T07:18:55.697952 #29057] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
165
- I, [2018-06-20T07:18:55.698009 #29057] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => hQvwy9Sm2PHSJ6AuDtl4dhOF1gKfR1ydKcNelRZzYu0="
166
- I, [2018-06-20T07:18:55.698542 #29057] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => isbrxRc4eGC6gZjDfxT2sxkK4OHPvd6LR4Zar6ssZOA@NDxaM2ZzFxi7fDDa7xUh"
167
- I, [2018-06-20T07:18:55.703247 #29057] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
168
- I, [2018-06-20T07:18:55.703292 #29057] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.api | write_app_content | (line 762)"
169
- I, [2018-06-20T07:18:55.703329 #29057] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
170
- I, [2018-06-20T07:18:55.703365 #29057] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => I0pI@5%OzdER4kPQWh6DvdkjyqAPG4j2Of%4tujb@yT@IXce1N5rk6UjZhG5ehQuLOEqV7hDvE5cHl1he4TnAWmVtw6XMwS%nuVj6%rHM3zacit%S5sns5A3oebaT0sY"
171
- I, [2018-06-20T07:18:55.703403 #29057] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 111111001001011111111000111101100001001100101110110100101000111001010011010111100101101001111100000100111101011110110101001001111101011000000101101110000110100010111110110011110001010011010000100001101110100101000000111000010011001001001001100101000110010001100100011001111100111101000000101100110101100101000111100111111101111111110010000100111100111100000000110010111101110110101101"
172
- I, [2018-06-20T07:18:55.703451 #29057] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => OV2cJi1zcgvh_WJD0xld30i_Ovnhqs3bveNsmI1Z-tM="
173
- I, [2018-06-20T07:18:55.703920 #29057] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => L81G0yQKLWFRTMq5Bi%5sTHzKZi5aVfYozcgHsQPH%foRvfX899ruybvzrmVN5tB"
174
- I, [2018-06-20T07:19:49.826189 #29836] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
175
- I, [2018-06-20T07:19:49.826240 #29836] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | read_app_content | (line 672)"
176
- I, [2018-06-20T07:19:49.826288 #29836] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
177
- I, [2018-06-20T07:19:49.826433 #29836] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
178
- I, [2018-06-20T07:19:49.826487 #29836] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
179
- I, [2018-06-20T07:19:49.826530 #29836] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
180
- I, [2018-06-20T07:19:49.826871 #29836] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
181
- I, [2018-06-20T07:19:49.826938 #29836] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
182
- I, [2018-06-20T07:19:49.827437 #29836] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
183
- I, [2018-06-20T07:19:49.833311 #29836] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
184
- I, [2018-06-20T07:19:49.835833 #29836] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000555"
185
- I, [2018-06-20T07:19:49.835924 #29836] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
186
- I, [2018-06-20T07:19:49.838730 #29836] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
187
- I, [2018-06-20T07:19:49.838810 #29836] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
188
- I, [2018-06-20T07:19:49.838850 #29836] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
189
- I, [2018-06-20T07:19:49.838889 #29836] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
190
- I, [2018-06-20T07:19:54.110571 #29836] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
191
- I, [2018-06-20T07:19:54.110651 #29836] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
192
- I, [2018-06-20T07:19:54.110690 #29836] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
193
- I, [2018-06-20T07:19:54.110727 #29836] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
194
- I, [2018-06-20T07:19:54.110770 #29836] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
195
- I, [2018-06-20T07:19:54.110806 #29836] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
196
- I, [2018-06-20T07:19:54.110846 #29836] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
197
- I, [2018-06-20T07:19:54.110882 #29836] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
198
- I, [2018-06-20T07:19:54.110926 #29836] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 011000011010001100100111011100011001011010011001110010100010101000000110011101011011011010010101110001001111000100110001011111110101101010101101011101101111100011101001010100000101"
199
- I, [2018-06-20T07:19:54.111008 #29836] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => hQvwy9Sm2PHSJ6AuDtl4dhOF1gKfR1ydKcNelRZzYu0="
200
- I, [2018-06-20T07:19:54.111521 #29836] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => isbrxRc4eGC6gZjDfxT2sxkK4OHPvd6LR4Zar6ssZOA@NDxaM2ZzFxi7fDDa7xUh"
201
- I, [2018-06-20T07:19:54.116264 #29836] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
202
- I, [2018-06-20T07:19:54.116306 #29836] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.api | read_app_content | (line 681)"
203
- I, [2018-06-20T07:19:54.116342 #29836] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
204
- I, [2018-06-20T07:19:54.116377 #29836] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => I0pI@5%OzdER4kPQWh6DvdkjyqAPG4j2Of%4tujb@yT@IXce1N5rk6UjZhG5ehQuLOEqV7hDvE5cHl1he4TnAWmVtw6XMwS%nuVj6%rHM3zacit%S5sns5A3oebaT0sY"
205
- I, [2018-06-20T07:19:54.116415 #29836] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 111111001001011111111000111101100001001100101110110100101000111001010011010111100101101001111100000100111101011110110101001001111101011000000101101110000110100010111110110011110001010011010000100001101110100101000000111000010011001001001001100101000110010001100100011001111100111101000000101100110101100101000111100111111101111111110010000100111100111100000000110010111101110110101101"
206
- I, [2018-06-20T07:19:54.116466 #29836] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => OV2cJi1zcgvh_WJD0xld30i_Ovnhqs3bveNsmI1Z-tM="
207
- I, [2018-06-20T07:19:54.116942 #29836] INFO -- key | do_decrypt_key | (line 496) : "The OutgoingKey Base64 Char representation => L81G0yQKLWFRTMq5Bi%5sTHzKZi5aVfYozcgHsQPH%foRvfX899ruybvzrmVN5tB"
208
- I, [2018-06-20T07:19:54.167392 #29836] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
209
- I, [2018-06-20T07:19:54.167459 #29836] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | write_app_content | (line 753)"
210
- I, [2018-06-20T07:19:54.167496 #29836] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
211
- I, [2018-06-20T07:19:54.167647 #29836] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
212
- I, [2018-06-20T07:19:54.167687 #29836] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
213
- I, [2018-06-20T07:19:54.167727 #29836] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
214
- I, [2018-06-20T07:19:54.167816 #29836] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
215
- I, [2018-06-20T07:19:54.167865 #29836] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
216
- I, [2018-06-20T07:19:54.168352 #29836] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
217
- I, [2018-06-20T07:19:54.168549 #29836] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
218
- I, [2018-06-20T07:19:54.171104 #29836] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
219
- I, [2018-06-20T07:19:54.171176 #29836] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
220
- I, [2018-06-20T07:19:54.173953 #29836] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362655000023ced7603fc02410861291esuoherawollopa"
221
- I, [2018-06-20T07:19:54.174047 #29836] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
222
- I, [2018-06-20T07:19:54.174095 #29836] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
223
- I, [2018-06-20T07:19:54.174134 #29836] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362655000023ced7603fc02410861291esuoherawollopa"
224
- I, [2018-06-20T07:19:58.420300 #29836] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
225
- I, [2018-06-20T07:19:58.420379 #29836] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
226
- I, [2018-06-20T07:19:58.420419 #29836] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
227
- I, [2018-06-20T07:19:58.420459 #29836] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 100101011110110111001010011010110001110001110100001101011011011101011010101110101111001110001101011111101001000001011100001011100010000001111001011100110000110000111001101101110011"
228
- I, [2018-06-20T07:19:58.420552 #29836] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
229
- I, [2018-06-20T07:19:58.420592 #29836] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
230
- I, [2018-06-20T07:19:58.420628 #29836] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
231
- I, [2018-06-20T07:19:58.420663 #29836] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
232
- I, [2018-06-20T07:19:58.420699 #29836] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 100101011110110111001010011010110001110001110100001101011011011101011010101110101111001110001101011111101001000001011100001011100010000001111001011100110000110000111001101101110011"
233
- I, [2018-06-20T07:19:58.420753 #29836] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => fyOgOc8SjEb5IwztXDTlinUIXAuDvHVdr7QcFXz9JYw="
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
- ===================================================================================================================================================================================================
245
- ===================================================================================================================================================================================================
246
-
247
- I, [2018-06-20T07:16:31.020725 #27357] INFO -- key.local | generate_shell_key_and_token | (line 81) : "### #####################################################################"
248
- I, [2018-06-20T07:16:31.020761 #27357] INFO -- key.local | generate_shell_key_and_token | (line 82) : "### Caller Details =>> =>> key | execute | (line 83)"
249
- I, [2018-06-20T07:16:31.020799 #27357] INFO -- key.local | generate_shell_key_and_token | (line 83) : "### #####################################################################"
250
- I, [2018-06-20T07:16:31.024921 #27357] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
251
- I, [2018-06-20T07:16:31.024971 #27357] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
252
- I, [2018-06-20T07:16:31.025008 #27357] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
253
- I, [2018-06-20T07:16:31.025388 #27357] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
254
- I, [2018-06-20T07:16:31.025438 #27357] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
255
- I, [2018-06-20T07:16:31.025920 #27357] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
256
- I, [2018-06-20T07:16:31.031573 #27357] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
257
- I, [2018-06-20T07:16:31.034135 #27357] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
258
- I, [2018-06-20T07:16:31.034229 #27357] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
259
- I, [2018-06-20T07:16:31.037052 #27357] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362555000023ced7603fc02410861291esuoherawollopa"
260
- I, [2018-06-20T07:16:31.037138 #27357] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
261
- I, [2018-06-20T07:16:31.037186 #27357] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
262
- I, [2018-06-20T07:16:31.037222 #27357] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362555000023ced7603fc02410861291esuoherawollopa"
263
-
264
- ===================================================================================================================================================================================================
265
- ===================================================================================================================================================================================================
266
-
267
- I, [2018-06-20T07:19:54.167392 #29836] INFO -- key.local | regenerate_shell_key | (line 157) : "### #####################################################################"
268
- I, [2018-06-20T07:19:54.167459 #29836] INFO -- key.local | regenerate_shell_key | (line 158) : "### Caller Details =>> =>> key.api | write_app_content | (line 753)"
269
- I, [2018-06-20T07:19:54.167496 #29836] INFO -- key.local | regenerate_shell_key | (line 159) : "### #####################################################################"
270
- I, [2018-06-20T07:19:54.167647 #29836] INFO -- key.mach | derive_shell_identity_string | (line 85) : "### #####################################################################"
271
- I, [2018-06-20T07:19:54.167687 #29836] INFO -- key.mach | derive_shell_identity_string | (line 86) : "### Caller Details =>> =>> key.local | derive_session_crypt_key | (line 232)"
272
- I, [2018-06-20T07:19:54.167727 #29836] INFO -- key.mach | derive_shell_identity_string | (line 87) : "### #####################################################################"
273
- I, [2018-06-20T07:19:54.167816 #29836] INFO -- key.mach | derive_shell_identity_string | (line 90) : "Etc.getlogin() => apollo"
274
- I, [2018-06-20T07:19:54.167865 #29836] INFO -- key.mach | derive_shell_identity_string | (line 91) : "Socket.gethostname() => warehouse"
275
- I, [2018-06-20T07:19:54.168352 #29836] INFO -- key.mach | derive_shell_identity_string | (line 92) : "get_net_address_digits() => 192168014"
276
- I, [2018-06-20T07:19:54.168549 #29836] INFO -- key.mach | derive_shell_identity_string | (line 93) : "derive_network_identity() => 20cf3067dec3"
277
- I, [2018-06-20T07:19:54.171104 #29836] INFO -- key.mach | derive_shell_identity_string | (line 94) : "get_bootup_time_digits() => 20000556"
278
- I, [2018-06-20T07:19:54.171176 #29836] INFO -- key.mach | derive_shell_identity_string | (line 95) : "Process.ppid.to_s() => 26314"
279
- I, [2018-06-20T07:19:54.173953 #29836] INFO -- key.local | derive_session_crypt_key | (line 237) : "Shell Identity Str => 41362655000023ced7603fc02410861291esuoherawollopa"
280
- I, [2018-06-20T07:19:54.174047 #29836] INFO -- key.local | derive_session_crypt_key | (line 238) : "Shell Id TxtLength => 49"
281
- I, [2018-06-20T07:19:54.174095 #29836] INFO -- key.local | derive_session_crypt_key | (line 239) : "Truncate Shell Str => false"
282
- I, [2018-06-20T07:19:54.174134 #29836] INFO -- key.local | derive_session_crypt_key | (line 240) : "Resulting IDString => 41362655000023ced7603fc02410861291esuoherawollopa"
283
- I, [2018-06-20T07:19:58.420300 #29836] INFO -- key.local | regenerate_shell_key | (line 169) : "BCrypt Salt REGEND => mqM3yu.Bin.H.nh4l3cwoO"
284
- I, [2018-06-20T07:19:58.420379 #29836] INFO -- key.local | regenerate_shell_key | (line 170) : "SessionToken REGEN => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZWOowc3l4hn.H.niB.uy3Mqm"
285
- I, [2018-06-20T07:19:58.420419 #29836] INFO -- key.local | regenerate_shell_key | (line 171) : "Chopped Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
286
- I, [2018-06-20T07:19:58.420459 #29836] INFO -- key.local | regenerate_shell_key | (line 172) : "Obfuscate ShellKey => 100101011110110111001010011010110001110001110100001101011011011101011010101110101111001110001101011111101001000001011100001011100010000001111001011100110000110000111001101101110011"
287
- I, [2018-06-20T07:19:58.420552 #29836] INFO -- key | do_decrypt_key | (line 476) : "### #####################################################################"
288
- I, [2018-06-20T07:19:58.420592 #29836] INFO -- key | do_decrypt_key | (line 477) : "### Caller Details =>> =>> key.local | regenerate_shell_key | (line 174)"
289
- I, [2018-06-20T07:19:58.420628 #29836] INFO -- key | do_decrypt_key | (line 478) : "### #####################################################################"
290
- I, [2018-06-20T07:19:58.420663 #29836] INFO -- key | do_decrypt_key | (line 479) : "Amalgam of Binary Random IV and Ciphertext => 57UDSB@NPq7f1cRgu7xNmjbiVSCVnUlZoU61kjdKsAKj9Xnh1JaR1QtCh4fSBY8vwCqprIYjd@OK3BQahKZwcVo2oW50pwppX7id9rs2srfYaWqmCSxSIVNRxqOPp1ZW"
291
- I, [2018-06-20T07:19:58.420699 #29836] INFO -- key | do_decrypt_key | (line 480) : "The Base64 Char representation of this key => 100101011110110111001010011010110001110001110100001101011011011101011010101110101111001110001101011111101001000001011100001011100010000001111001011100110000110000111001101101110011"
292
- I, [2018-06-20T07:19:58.420753 #29836] INFO -- key | do_decrypt_key | (line 481) : "256bit Digest (Urlsafe Base64) of this key => fyOgOc8SjEb5IwztXDTlinUIXAuDvHVdr7QcFXz9JYw="
293
-
294
- ===================================================================================================================================================================================================
295
- ===================================================================================================================================================================================================