Full guide to use this Website:
I uploaded the file here. First Copy WZ_MD5_MOD.dll to Program Files\Microsoft SQL Server\MSSQL\Binn. Then do these Step:
1> Open CMD (For who dont know: Open run then Type CMD -> OK)
2> type osql -U youruser -P yourpassword (MSSQL)
then type these line (After a line type Enter)
use master -> Enter
go -> Enter
sp_addextendedproc 'XP_MD5_EncodeKeyVal', 'WZ_MD5_MOD.dll' -> Enter
go -> Enter
sp_addextendedproc 'XP_MD5_CheckValue', 'WZ_MD5_MOD.dll' -> Enter
go -> Enter
exit -> Enter
3> Open MSSQL Query Manager (Start -> All Programs -> Microsoft SQL Server -> Query Analyzer
4> Chose Server (local) then type your MSSQL username and password
5> Near the top Chose DB Me_MuOnline (For who use my repack and DB is MuOnline)
6> Copy these code to Query
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UFN_MD5_CHECKVALUE]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[UFN_MD5_CHECKVALUE]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UFN_MD5_ENCODEVALUE]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[UFN_MD5_ENCODEVALUE]
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
CREATE FUNCTION UFN_MD5_CHECKVALUE
(
@btInStr VARCHAR(10),
@btInStrIndex VARCHAR(10),
@btInVal BINARY(16)
)
RETURNS TINYINT
AS
BEGIN
DECLARE @iOutResult TINYINT
EXEC master..XP_MD5_CheckValue @btInStr, @btInVal, @btInStrIndex, @iOutResult OUT
RETURN @iOutResult
END
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
CREATE FUNCTION UFN_MD5_ENCODEVALUE
(
@btInStr VARCHAR(10),
@btInStrIndex VARCHAR(10)
)
RETURNS BINARY(16)
AS
BEGIN
DECLARE @btOutVal BINARY(16)
EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT
RETURN @btOutVal
END
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
7> Then Query it
8> After that del all line and copy these line to Query
CREATE PROCEDURE Encripta
@btInStr VARCHAR(10),
@btInStrIndex VARCHAR(10)
AS
BEGIN
DECLARE @btOutVal BINARY(16)
EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT
UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex
END
GO
9> Query it then Close Query Analyzer.
10> Copy Webpage to your host, config the config.php to your setting then Register Complete
Ha after i wrote it i found it really have 10 Steps.
File need: http://forum.ragezone.com/attachment...r?d=1149192850
Webpage Credits:
- CacarBot (I using his sql_inject.php for secure)
- Sexpro (For code)
- Ronaldodavi (His file and guide make my file working huahahaha)
- Anyone more?
This file was secure SQL Injection


Reply With Quote


