Quote:
Originally Posted by kerchm
SELECT TOP (200) account_id, account, password, email, password2, block, IP_user, last_login_server_idx, Admin, point, datePassword, pk_, creationDate_, updateDate_, creatorId_, updatorId_, portId_, type_, accessDate_
FROM Account
|
Some light reading for you that may help...
[Only registered and activated users can see links. Click Here To Register...]
And here is an insert script that matches your table headers...
Code:
INSERT INTO [Auth].[dbo].[Account] ([account], [password], [email], [password2], [block], [IP_user], [last_login_server_idx], [Admin], [point], [datePassword], [pk_]) VALUES ('admin', '613b5247e3398350918cb622a3ec19e9', 'YourEmailHere', '613b5247e3398350918cb622a3ec19e9', '0', '127.0.0.1', '1', '1', '0', '2017-10-20', '1');
Put some email in and log in would be account: admin password: admin
But read what I linked it will help you understand the password creation and you can learn to MD5 your own.
Let me know if you have any trouble.
Dark Blazes tool is also linked in that thread...
[Only registered and activated users can see links. Click Here To Register...]