Tagged Questions
The deciphering tag has no wiki summary.
10
votes
5answers
2k views
Deciphering MMORPG Protocol Encoding
I plan on writing an automated bot for a game.
The tricky part is figuring out how they encoded their protocol... To make the bot run around is easy, simply make the character run and record what it ...
5
votes
0answers
130 views
deciphering linux encfs (standard config, 192 bit aes) in Java
Has anyone tried to decipher files encrypted using linux encfs in Java? I'm interested in deciphering the file, and just the file name (not the whole file). I tried:
SecretKeyFactory factory = ...
2
votes
3answers
122 views
Need for both Ciphering and Integrity?
Why do some scenarios require both ciphering and integrity whereas some scenarios require only ciphering ? What are the factors that decide this in the case of networking domain ?
2
votes
6answers
773 views
Deciphering Encoding: Packet Analyzation Tools
I am looking for better tools than wireshark for this. The problem with wireshark is that it does not format the data layer (which is the only part I am looking at) cleanly for me to compare the ...
1
vote
2answers
60 views
C Deciphering declarations
Ok, this was a bit too much for me. How do you read these declarations?
char *(*(**myCBT[][10])())[];
Please note: I'm not specifically asking for this example but for a general rule of thumb if a ...
1
vote
1answer
236 views
Identifying a substitution cipher random key. (English text)
input:
Crypted English normal text (A-Z) using a random generated substitution cipher.
output:
key
ideas:
read the whole text storing in some arrays the frequencies for each ...
1
vote
2answers
1k views
wireshark: Capture Data Layer Only
Is there a way to capture only the data layer and disregard the upper layers in wireshark? If not, is there a different packet dump utility that can do this? PREFERABLY 1 file per packet!
What I am ...
0
votes
2answers
40 views
What is the intent of inline <?=$GLOBAL?> directive in PHP? Is it markdown?
I am working on a PHP project that is using an (anti)-convention that is causing errors, and I'm not quite sure what it is trying to achieve, so fixing it is difficult..
The project does use ...
0
votes
1answer
107 views
decipher encfs volume key in java
I'm trying to decipher the encfs volume key in Java. I ran encfs with the standard settings (ie, 192 bit aes encryption). Is there any way to do this?
0
votes
2answers
60 views
Need help in Decryption
I have been given a problem to decrypt this text:
3e47b75000b0924b6c9ba5759a7cf15d
which is supposedly an encrypted password stored in a database.
In the hint it says:"Find out what is the most ...
-2
votes
3answers
79 views
switching letters to different letters inside a string (Caesar cipher)
I've got some homework involving Caesar cipher, and I got stuck here:
I need to write a function which gets a text (as a String) and a dictionary. The dictionary keys are the English ABC, and its ...