If you want me to update the Server for everyone so no DNS is needed just push the changes to my Git and I'll update it.
Gamestats Server
Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen
-
-
@Ciapa:
Ok, I've done slightly modifications to my code allowing FC to be entered (I hope). But do not do it because you won't be able to log back.
@Dominic:
I'll have to test with you the FC registration system because the data I used comes from the dump I made with you. In fact, this will always work with your FC this way but maybe not with someone else :v/.
If we can successfully exchange our FC, we will be able to try friend matchmaking and hopefully not be disconnected, otherwise we'll be screwed ><'.
It seems the login problem doesn't came from the authtoken/resp the game sends me but the link it has with wiimmfi and gamestats server. Someone who doesn't have friend will connect fine. However when someone does have friends, it will sends more requests to nas.wiimmfi.de/pr and leads to a delbuddy request (why? it shouldn't remove a friend). After that it calls the gamestats server twice, one before, one after processing that delbuddy request, strange...
@Wiimm:
What does your server answer if I send "\ka\final\"? The game runs into an infinite loop during the login process when the profile has friends. Then I suppose there is a time out of some sort and the game keeps sending this endlessly each 1~2 minutes or so. -
Sepalani schrieb:
"\ka\final\"
Can you send me the dump?
Wiimms Mario Kart Fun 2018-03
Mittwochs & Donnerstags ab 19:30 Uhr CET
Sonderregelungen im Forum beachten
mit Team-Speak (freiwillig)
FC: Wiimm=0432-5226-7951,
AndyK=2966-7682-2066, Leseratte=2880-9868-0945
WIT: Wiimms ISO Tools
Verwaltet Plain ISO, WDF, WIA, CISO, WBFS, FST: kann Extrahieren, Erstellen, Patchen, Mischen und Überprüfen
SZS: Wiimms SZS Tools
Verwaltet SZS-, BRRES-, U8-, BMG-, BREFT-Dateien uvm.
PN ohne persönlichen Charakter werden ignoriert. Support-Anfragen gehören ins Forum.
Ich trage keinen FC auf Vorrat ein, sondern nur, wenn sich ein Spiel ergibt.
-
Yes, I meant "\ka\\final\" (I forgot a backslash ^^').
Here are the dumps. login_success.cap contains the login process from the official servers (nossl patched) of someone who doesn't have friend. The other one is the attempt I tried with wiimmfi servers and my gamestats server having friends. The fact that's not working isn't the problem because this might have many reasons for that. I'm worried about the game running into an endless loop without raising any error and sending this over and over. -
I've just activated the latest gamestats code. It's now open for testing.
-
@Ciapa:
I've updated my gamestats server. There are minor changes, I cleaned up the code and the generic answer should work for every games now. However the game's behaviour is unknown. On Boom Street it uses a dummy profile with bad statistics. -
I'll update the Server tomorrow, if it's okay.
-
I've just merged the latest changes of the TCP Gamestats by Sepalani to the product server. Everything is activated and open for testing.
It's now an Generic Dummy Server, so I think other games (Trackmania for example) maybe work too. -
In the next days, after finishing debugging my project for schools anniversary, I'll update the Gamestats HTTP Server for Mario Strikers Charged. I'm going to try to add more records to see if i can manage to get Friend Rooms to work.
Is anyone able to write me a tool which reads bytes 1-20(20 bytes), creates a SHA1 hash of bytes[] + done + bytes[] and if it doesn't equal a provided value, it tries bytes 2-21 and so on until it finds the right combination? C# won't do it... Would be a great help in reversing the Gamestats HTTP Server -
Well you could write a C tool which reads 20 bytes and writes it into file 1.hex. Then open a SHA1 program which you could get from Google.
sourceforge.net/projects/md5sha1checker/ Here an example which supports batch checking.Ich gehe nur bei Frauen im Alter von 18 bis 20 die Bettwäsche testen. -
@Ciapa:
Something like that?
Quellcode
- #! /usr/bin/python
- __author__="Sepalani"
- __date__ ="$Jul 21, 2014 7:43:06 PM$"
- import sys
- import hashlib
- def sha_check(a, b, bytes, value, verbose=0):
- m = hashlib.md5()
- m.update(bytes[a:b] + 'done' + bytes[a:b])
- s = m.digest()
- if verbose:
- print "[%d:%d] %s >>> %s" % (a, b, bytes[a:b], ":".join("{:02x}".format(ord(c)) for c in s))
- if s == value:
- print "Combination found:"
- print "[%d:%d] %s >>> %s" % (a, b, bytes[a:b], ":".join("{:02x}".format(ord(c)) for c in s))
- return True
- else:
- return False
- if __name__ == "__main__":
- if len(sys.argv) >= 3:
- try:
- f = open(sys.argv[1], 'rb')
- bytes = f.read()
- f.close()
- except:
- bytes = sys.argv[1]
- try:
- f = open(sys.argv[2], 'rb')
- val = f.read()
- f.close()
- except:
- val = sys.argv[2]
- a = 0
- b = 20
- v = 0
- if len(sys.argv) > 3:
- v = int(sys.argv[3])
- l = len(bytes)
- while b <= l:
- if sha_check(a, b, bytes, val, v):
- sys.exit(0)
- a += 1
- b += 1
- print "Combination not found!"
- else:
- print >> sys.stderr, "Invalid parameters!"
- print >> sys.stderr, "Usage: %s filename_or_string providen_value_or_file [verbose]" % sys.argv[0]
-
@sepalani
Looks good, I'll try it out tomorrow. -
Today, I've lost all data on one of my Servers due to a critical Hardware Crash. This Server was also storing all my Wiimmfi Projects, the MSCharged Gamestats, the Dump Collector and also the Fortune Street Gamestats by @Sepalani
Currently I'm trying to rescur all the data I could rescue, but most files are damaged.
I'll try to find the Sourcecode of my Gamestats and re-upload it in the next days. For Fortune Street I have to wait for @Sepalani ...
Sorry, but I hope you can understand this. -
@Ciapa:
No problem ;v). It's still hard to maintain a server and have the require hardware to handle it. Plus all the little problems that can happen and may damage your infrastructure. This is a quiet painful task.
I've uploaded the files I had from your git repository after my last change. -
@Ciapa:
That's really bad. But take this event to think about a backup system.
Wiimms Mario Kart Fun 2018-03
Mittwochs & Donnerstags ab 19:30 Uhr CET
Sonderregelungen im Forum beachten
mit Team-Speak (freiwillig)
FC: Wiimm=0432-5226-7951,
AndyK=2966-7682-2066, Leseratte=2880-9868-0945
WIT: Wiimms ISO Tools
Verwaltet Plain ISO, WDF, WIA, CISO, WBFS, FST: kann Extrahieren, Erstellen, Patchen, Mischen und Überprüfen
SZS: Wiimms SZS Tools
Verwaltet SZS-, BRRES-, U8-, BMG-, BREFT-Dateien uvm.
PN ohne persönlichen Charakter werden ignoriert. Support-Anfragen gehören ins Forum.
Ich trage keinen FC auf Vorrat ein, sondern nur, wenn sich ein Spiel ergibt.
-
-
Ciapa schrieb:
@Sepalani
When I try to execute it, I get following Error Code:
Trying to fix this on my own, just as a little note for you.
Edit:
Turned out to be a Python3 Issue, Python2 fixes this.
That's true, I'm programming python scripts through python2x not python3 ^^. I use(d) the old snprintf syntax used in Python2x which is considered as deprecated. Plus I also use(d) to this old print syntax likes the "print >> sys.stderr" which is also deprecated in Python3. In fact, my coding style is closer to the old school python2x one than the new python3 syntax with print and others keywords replaced with functions and others python3 modifications. This is why it's not supported in Python3 which replaces the print keyword with the print() function. -
Hello!
@Ciapa you asked me to check everything was functional with Mario Strikers Charged on my YouTube video. I've done a quick test just now on the European version, and currently connecting is impossible. During the statistics retrieval phase, it immediately presents Error Code 98020. The reason for this, it seems, when I forced the game to print its logs, is that the server returned a 404 at some point (and an accompanying webpage). Unfortunately, the logs do not tell me what it actually attempted to access that presented this 404.
-
@MrBean3500vr
I don't own the game anymore, could you please create a traffic dump while the game connects? Maybe i just missed a point in the older codebase. -
Ciapa schrieb:
@MrBean3500vr
I don't own the game anymore, could you please create a traffic dump while the game connects? Maybe i just missed a point in the older codebase.
Sorry about the delay. I still haven't had chance to test, but actually, it looks the problem is already resolved. I was able to sign on earlier just fine, and the American version also seems able to go online! I've not tried to play any matches yet, though. -
@MrBean35000vr I already fixed it, there was a bug inside the Rewrite Module that caused to cut the Parameters from the Request. Glad it works again.null
Edit:
Mario Strikers Charged won't work right now since I'm updating one of my Ubuntu Boxes(currently stuck on 13.09 and now updates are gone) which hosts a part of the Server Files.
Should be back in 2-3 hours.Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von Xidus ()
-
@Wiimm
For the test Server, could you please set up a CName to gstest.ciapa.ml as Gamestats Server? I'm going to try to rebuild a real Gamestats Server in the next days/weeks and this would make testing mich easier.
This is mainly for Mario Strikers Charged, but later I'll analyse other games not working right now, so every Gamestats Game could be redirected to this domain. -
Doing some maintenance work - all Gamestats based games won't be playable from 21:00 CEST to 22:00 CEST.
I'll move all Gamestats releated things to a new server dedicated just for Gamestats and other Wiimmfi releated projects. If someone needs hosting for something(DLS1 etc.) just drop me a PM so we can discuss it.
Update: Finished. Everything should work again.Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von Xidus ()
-
Hello again!
@Ciapa
Mario Strikers is currently returning 98020 when trying to retrieve stats right now. The error is a HTTP 404. The returned page says the path the game attempted to access was: /mschargedwii/web/client/get2.asp, which apparently does not exist.
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von MrBean35000vr ()
-
Yeah, I know oft it. I had to disable it for a time, since the data I'm responding seems to not be valid anymore.
I'm trying to geht this up again, but it could take a while since I'm currently busy with exams.
Maybe I'll get it on again at the weekend. I followed the whole code and everything was sent correctly, so I don't really know where the error came from. Maybe it has something to do with the changes Wiimm made to the GPCM Server.
@Wiimm could wie discuss this the next time we're both onlinr on TS3?
-
Teilen
- Facebook 0
- Twitter 0
- Google Plus 0
- Reddit 0