Decrypt This!

09/01/2010 16:22 Nyavel#1
I'm trying to decrypt the contents of the attached file. Anyone want to give a helping hand? :)
09/01/2010 22:51 Dachpappe#2
The attached binary File is a reference of a MS SQL Server DB.

The collation is Korean_Wansung_CI_AS (sort). Codepage 949 - Korean non Unicode Datatype is to save strings (Korean) in the db. The vars are percentage_* with an id enhance_id etc.

I'll give you an example:

Code:
CREATE TABLE [dbo].[tab_incomeoutcome_Tower] (
	[io_index] [int] IDENTITY (1, 1) NOT NULL ,
	[io_gubun] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_date] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_content] [smallint] NULL ,
	[io_amountcash] [int] NULL ,
	[io_amountcard] [int] NULL ,
	[io_cardtype] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_memberId] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_memberName] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_teller] [varchar] (20) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_remark] [varchar] (255) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_Cnt] [int] NULL ,
	[io_place] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ,
	[io_Chit] [int] NULL ,
	[io_ChitDate] [varchar] (14) COLLATE Korean_Wansung_CI_AS NULL 
) ON [PRIMARY]
GO
$6ABAD62E from UQ__EnhanceResource__6ABAD62E could be the entry point.

Decoding is not possible in this state.

Please correct me if a wrong.

Dachpappe
09/01/2010 22:57 Nyavel#3
Thank you for the prompt reply Dachpappe. Clearly written and thorough.
#thanked
07/21/2014 14:02 Emperor.#4
where can i found any tuturial about how to do that ?