|
|
|
|
Menu |
|
|
Home |
| |
|
Discussions |
| |
|
Tools |
| |
|
Affiliates |
| |
|
Content |
| |
|
Info |
| | |
|
|
|
|
|
User Info |
|
Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144
People Online:
Visitors: 84
Members: 0
Total: 84
|
|
|
|
|
|
Full disclosure |
|
|
|
|
|
|
|
|
|
IT Security and Insecurity Portal |
|
|
help me cracked data pass with base64,blowfisher |
|
Posted: Sat Feb 07, 2009 10:22 am |
|
|
ukzz |
Regular user |
|
|
Joined: Feb 05, 2009 |
Posts: 22 |
|
|
|
|
|
|
|
I got admin and some encrtyped infos
I see 2 procedure to encrypt and decrypt it use combo base64 and blowfished method from SQL_Encryption_Toolkit http://www.schneier.com/
here are them
ALTER FUNCTION Encrypt
(
@EncryptionValue AS VARCHAR(1500),
@Password AS VARCHAR(32)
)
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @output VARCHAR(4000)
DECLARE @base64output VARCHAR(8000)
Exec master.dbo.xp_base64encode @Password, @base64output output
Exec master.dbo.xp_blowfishencrypt @EncryptionValue, @base64output, @output
output
RETURN @Output
END
ALTER FUNCTION Decrypt
(
@EncryptionValue AS VARCHAR(8000),
@Password AS VARCHAR(32)
)
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @output VARCHAR(4000)
DECLARE @base64output VARCHAR(8000)
Exec master.dbo.xp_base64encode @Password, @base64output output
Exec master.dbo.xp_blowfishdecrypt @EncryptionValue, @base64output, @output
output
RETURN @Output
END
examlple
i run the procedure Encrypt with data = 123456789 , pass = 123456789aaa so i got encrypted data of 123456789 : =Encrypt ( data ,pass)=Encrypt(123456789,123456789aaa)=YJePVu5jRbqhuzalFP7B9A==
But i cant find the key in shop admin
help me cracked some data ( i cant find where they put the key )
tUxMmShcAJAlyzpl6ENjfg==
2nJzlUoA7mE8GjvjzKk7Jw==
5UUK3i5J+Ra16fnjfyCSoQ==
teHgQ6KrrCR0XqAxJeNwmQ==
N1ma6csM3pOZalfcoRRm+g==
thanks in advanced |
|
|
|
|
|
|
|
|
Posted: Sat Feb 07, 2009 10:29 am |
|
|
ukzz |
Regular user |
|
|
Joined: Feb 05, 2009 |
Posts: 22 |
|
|
|
|
|
|
|
|
|
|
|
www.waraxe.us Forum Index -> All other hashes
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
All times are GMT
Page 1 of 1
|
|
|
Powered by phpBB © 2001-2008 phpBB Group
|
|
|
|
|
|
|