• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[ C#|.NET|PHP](OpenSource) Advanced HWID Login System with Admin Controls & Web Admin

ps3

Enthusiast
How do i add my self in the sql? this sql command wont work INSERT INTO account VALUES ('user','pass') what do i put?
 

SamWylde

Enthusiast
For some reason connection.Open(); always fails (Error: 0 : Unable to connect to any of the specified MySQL hosts), even though I can connect to the database in my other C# app. Not quite sure whats going wrong.
 

Hyperion

Founder
How do i add my self in the sql? this sql command wont work INSERT INTO account VALUES ('user','pass') what do i put?

I still need help man you made this but cant explain how set it up

If you imported the SQL, then just edit the table with navicat or another SQL app. I can explain JUST FINE thank you. What you're
not understanding is this is not a full application. This is an HWID login example with a PHP interface to put on your own project.

This is not to be used as it's own application. If you don't know what you're doing then you shouldn't even be bothering with it.


For some reason connection.Open(); always fails (Error: 0 : Unable to connect to any of the specified MySQL hosts), even though I can connect to the database in my other C# app. Not quite sure whats going wrong.

Make sure you changed your Mysql details in the config class and whatever SQL host you're connecting to has a remote host added from where you're connecting. (If it's not local)
 

Hyperion

Founder
Is there a certain configuration that MYSQL should be in for this to work?

Are you talking about the installed mysql server or the config in the project?

Far as the server, it's just setup on the default MyISAM engine.
As for the project config, you would just need to put your details in the config class and make sure your salt string matches
in the database class and in the web admin config
 

SamWylde

Enthusiast
What should I do about (sorry, new to C#):

Code:
moboid = mobo.Substring(mobo.Length - 10);

System.ArgumentOutOfRangeException was unhandled
Message=StartIndex cannot be less than zero.

Also the MYSQL problems were do to my host (fixed now).
 

Desiqnz

Emulation Addict
Help?

Hi.. this is an amazing system to use but could you help me by telling me what I need to change for it to work? Im new to all this HWID and SQL malarky. If you could.

Many thanks,
Desiqnz :computerstare:
 

Hyperion

Founder
Hi.. this is an amazing system to use but could you help me by telling me what I need to change for it to work? Im new to all this HWID and SQL malarky. If you could.

Many thanks,
Desiqnz :computerstare:

Depends what you're using it for. But you can make it work by importing the SQL and changing the mysql settings in the config class.
 

Kaev

Super Moderator
Looks very nice, why didn't i knew about this? :<

Did anyone try to crack this yet? I have no experience in cracking something, but i'm pretty sure some asm nop's could do the job.
Maybe i should try that, i always wanted to gather some experience in this field. :p

Btw, i moved it, dunno why it was in the WoW forums.
 
Last edited:

Variety

New member
I'm not sure if this thread is active anymore but I'm getting an error through MySQL..

I updated the MySQL library since the old version referenced into this one doesn't work anymore but how can I omit the "id" column in the "accounts" table. The insert query is for some reason sending empty value to the "id" and that's why I'm receiving this error.

Code:
Incorrect integer value: '' for column 'id' at row 1
 
Last edited:
Top