Search found 10 matches

by Darax The Good
Sun Jul 03, 2005 7:02 am
Forum: General chat
Topic: keyboard layout
Replies: 14
Views: 1750

I use visual studio.

your flame alert is nothing compared to mine.
by Darax The Good
Sun Jul 03, 2005 6:58 am
Forum: Help and Support
Topic: Compiling on freebsd 4.8
Replies: 3
Views: 524

I did a #define atoll(n) strtoll(n,(char **)NULL,10)

in the files that needed it.

Now I await my port to be unblocked.
by Darax The Good
Sat Jul 02, 2005 6:39 pm
Forum: Help and Support
Topic: Compiling on freebsd 4.8
Replies: 3
Views: 524

Compiling on freebsd 4.8

My server is running FreeBSD 4.8, and apparently I don't have the 'atoll' function-so I thought I'd be clever and strip it down to atol. It worked and everything compiled (once I changed the macros in loader.c to not span multiple lines) and I went to start the server.

And I got caught in my little ...
by Darax The Good
Mon Jun 27, 2005 3:08 pm
Forum: Bugs
Topic: Password on server in plaintext
Replies: 13
Views: 1171

If the server accepts the hashed password rather than working the hash out on its own then you only need the hash, not the password, to connect. In this case a malicious server administrator could take over people's accounts other servers (in the case that the people were foolish and used the same ...
by Darax The Good
Mon Jun 27, 2005 3:02 pm
Forum: General chat
Topic: keyboard layout
Replies: 14
Views: 1750

Right... vi. My favorite editor :P Nothing before or since has been as intuitive.
by Darax The Good
Mon Jun 27, 2005 1:59 am
Forum: General chat
Topic: keyboard layout
Replies: 14
Views: 1750

keyboard layout

What is up with the keyboard layout for moving. It doesn't make sense to me. The numpad and the arrow keys are fine, but this:
y k u
\ | /
h -- s -- l
/ | \
b j n

really confused me. I thought it might be dvorak, but it isn't. It definately isn't a german layout. I'm sure there is a really ...
by Darax The Good
Mon Jun 27, 2005 1:54 am
Forum: Bugs
Topic: Password on server in plaintext
Replies: 13
Views: 1171

You should't send the hashed password across the wire-otherwise it will be easier to spoof someone (or just as easy compared to today). I truly hope the linux version doesn't do this-but I suspect that it doesn't. The client has to have consistent behavior regardless of the server.

Sending it ...
by Darax The Good
Sun Jun 26, 2005 11:31 pm
Forum: Bugs
Topic: Password on server in plaintext
Replies: 13
Views: 1171

okay, fair enough. What is this thing written in? C? What is the fuction prototype for the function in *nix? I'll make crappy hash function which will be better than nothing. Once applied one of the open source nazis will see it and have no choice but to make a good one. ;)
by Darax The Good
Sun Jun 26, 2005 8:51 pm
Forum: Bugs
Topic: Password on server in plaintext
Replies: 13
Views: 1171

Yeah, I'm running it on my windows box to see if it is fit for my community before installing it on my host. Why isn't Windows using a hash?
by Darax The Good
Sun Jun 26, 2005 7:42 pm
Forum: Bugs
Topic: Password on server in plaintext
Replies: 13
Views: 1171

Password on server in plaintext

Why is the password stored in the playerfile as plaintext. Couldn't the password be a hash?