This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
when I first watched the video I thought the gambled messages were simple ciphers where randomness was dominant, but something just never fit... characters had to overlap and connect to make cohesive sentences and it just caused multiple issues for almost every file, so I let the programmer in me to take the helm and use a fresh set of eyes on the cipher... and then it hit me... using statistics and the available data we have we can find the ciphers solution AS A SIMPLE LAYER OF ENCRYPTION!!
So I wrote the following program to use the data an Ai model I developed and generally use found after analysing the text patterns and the results were AMAZING, sadly some letters which could not be read by me nor the Ai model are unknown to me, or at least I'm not sure that they are the correct letters so keep that in mind maybe you can fix them... anyway here is the program and here are the results of running it!
def decipher_text(ciphertext, substitution):
plaintext = ""
for char in ciphertext:
if char in substitution:
plaintext = substitution[char]
else:
plaintext = char
return plaintext
def main():
substitution = {"K": "H", "R": "O", "V": "S", "W": "T", "O": "L", "H": "E", "D": "A", "N": "K", "G": "D", "F": "C", "L": "I", "B": "E", "S": "P", "Z": "W", "P": "M", "M": "J", "E": "B", "Q": "N", "J": "G", "I": "F", "U": "R"}
ciphers = ["SKDVH RQH", "FRPSOHWH", "KRVW VKRZV", "QR UHVLVWDQFH", "R HU", "HGLWLQJ", "MRE", "SKDVH WZR", "FRPSOHWH", "VSRUH SODQWHG", "KRVW OHDNHG", "FODWLILHG", "LPPHGLDWH", "SVBFKRORJLFDO", "SUHWXUM", "UHTXLUHG"]
for item in ciphers:
plaintext1 = decipher_text(item, substitution)
print(f"Deciphered Text {ciphers.index(item)}:", plaintext1)
if __name__ == "__main__":
main()
Results:
Deciphered Text 1: PHASE ONE
Deciphered Text 2: COMPLETE
Deciphered Text 3: HOST SHOWS
Deciphered Text 4: NO RESISTANCE
Deciphered Text 5: OVER
Deciphered Text 6: EDITING
Deciphered Text 7: JOB
Deciphered Text 8: PHASE TWO
Deciphered Text 9: COMPLETE
Deciphered Text 10: SPORE PLANTED
Deciphered Text 11: HOST LEAKED
Deciphered Text 12: CLATIFIED
Deciphered Text 13: IMMEDIATE
Deciphered Text 14: PSECHOLOGICAL
Deciphered Text 15: PRETXRJ => Testing?
Deciphered Text 16: RETXIRED => Required?
Subreddit
Post Details
- Posted
- 1 year ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/GameTheoris...