diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-02 17:38:28 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-02 17:38:28 +0200 |
commit | e1c83be32d5435d3c2bbc1468b24ba8c0728bac3 (patch) | |
tree | de85217613aa2e95eceadc6452602bf93e07f96b /ProtoProxy/ProtoProxy.txt | |
parent | ToLua does not like the override keyword :( (diff) | |
download | cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.gz cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.bz2 cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.lz cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.xz cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.tar.zst cuberite-e1c83be32d5435d3c2bbc1468b24ba8c0728bac3.zip |
Diffstat (limited to '')
-rw-r--r-- | ProtoProxy/ProtoProxy.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ProtoProxy/ProtoProxy.txt b/ProtoProxy/ProtoProxy.txt new file mode 100644 index 000000000..bbeab490f --- /dev/null +++ b/ProtoProxy/ProtoProxy.txt @@ -0,0 +1,25 @@ +
+// ProtoProxy.txt
+
+// A readme for the project
+
+/*
+ProtoProxy
+==========
+
+This is a project to create a proxy for the MineCraft protocol, allowing anyone to view the data sent over a network connection between a client and a server. This, in fact, performs a kind of Man-In-The-Middle (MITM) attack on the protocol by tapping in between the connection points and providing a decrypter and an encrypter for each.
+
+In order to catch the encryption parameters, the MC protocol needs to be understood at least a little bit at the beginning, when the cryptography parameters are exchanged.
+
+This project is currently Windows-only and I don't plan on making it multi-platform, although the effort needed for doing so should be minimal.
+
+The proxy only works on the localhost connection. It listens on port 25565 and expects the underlying MC server to run on port 25564.
+
+
+
+*/
+
+
+
+
+
|