Cabal Bagiuo Network :: Home
buraya bir bakın
Cabal Tools V4
adamlar nasıl oluyorda bunu çalıştırabiliyor
biz çalıştıramıyoruz.
Cabal Bagiuo Network :: Home
buraya bir bakın
Cabal Tools V4
adamlar nasıl oluyorda bunu çalıştırabiliyor
biz çalıştıramıyoruz.
Last edited by SpeedDevil; 01-04-13 at 12:58 AM.
well I don t understand can you speak EN ?
google translator :
well i dont use the cabal tools v4 but you just need to reconfig it and use 1.7.7 xamppTake a look here
Cabal Tools V4
how come you guys are able to run it
we çalıştıramıyoruz.
How many times should i repeat? THE PASSWORD ITS NOT MD5, its pwdcompare. The panel checks md5 password. If you want to login, you need to rewrite the function and use a procedure from database called if i remember good, check_password_by_id. Its simple as pie!
Why would you need a video for codding? All you need its to know sql and php. Then the rest is easy.Ok here is an example of mine:
Now based on that hope you got the ideea.PHP Code:function login($username, $password) {
$login = mssql_query(sprintf("SELECT * from ".DB_LOGIN.".[dbo].[cabal_auth_table] where ID = '%s'",str_replace("'", "''", $username)));
$result = mssql_fetch_row($login);
$login_result_valid_encrypt_password = mssql_query('exec '.DB_LOGIN.'.dbo.cabal_sp_IsValidPassword_by_ID "'.$result[1].'" , "'.$password.'"');
$login_result= mssql_fetch_array($login_result_valid_encrypt_password);
return $login_result;
}
to fix CT4 login, you need a stored procedure like this
EP2 Account database use this:USE [ACCOUNT]
GO
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[web_logins] (@id varchar(32), @password varchar(32))
AS
begin
SET NOCOUNT ON
select usernum from cabal_auth_table with (nolock)
where ID = @id and pwdcompare(@password, password) = 1
SET NOCOUNT OFF
end
where ID = @id and [password] = dbo.fn_md5(@password)
Please makes connect?
TeamViewer 8
ID = 542 831 980
PASS = 5968
someone please analyze
Thread Moved.