Reverse Engineering Team
Unregistered, You must accept the Forum Rules below to be able to use some forum functions.

Read forum rules below...

1. All posts must be written in English.
2. Don't spam/abuse any other member via E-mail or Private Messages.
3. Have phun!

For breaking above rules you may be warned/banned appropriately!

Join the forum, it's quick and easy

Reverse Engineering Team
Unregistered, You must accept the Forum Rules below to be able to use some forum functions.

Read forum rules below...

1. All posts must be written in English.
2. Don't spam/abuse any other member via E-mail or Private Messages.
3. Have phun!

For breaking above rules you may be warned/banned appropriately!
Reverse Engineering Team
Would you like to react to this message? Create an account in a few clicks or log in to continue.

wibubox table

3 posters

Go down

wibubox table Empty wibubox table

Post by Johnvb Thu Sep 16, 2021 12:56 pm

hi
i have wibu key i dump it show result


Crypt(0x00000000): 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
 * Crypt(0x00000001): 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
 * Crypt(0x00000000): 6d7fa111ad3795760c7e8d5de6d01b5cdfcf145bd8
 * Crypt(0x00000001): 933da02f2096f768b3e90d28dadcfefb07af2bce34
 * Crypt(0x00000000): 6d7fa111ad3795760c7e8d5de6d01b5cdfcf145bd8
 * Crypt(0x00000001): 933da02f2096f768b3e90d28dadcfefb07af2bce34
 * Crypt(0x00000000): 8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d8d
 * Crypt(0x00000001): efefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefef
 * ulProgramCount: 0x00000001
 * ulConfig: 0x00000000
 * usAsicBuild: 0x0f1c
 * usExtMemSize: 0x0000

i solve first pair of crypt and get valid R+L+PLAIN LEFT KEY
Problem is second pair bfox said need table emulation
can any one extract q/r
or help continue emulation
regards

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by BfoX Thu Sep 16, 2021 2:25 pm

you need extract q/r from your target software or usb trace log on the dongle

BfoX

Posts : 1218
Points : 1662
Reputation : 307
Join date : 2012-04-18
Location : Earth

Back to top Go down

wibubox table Empty Re: wibubox table

Post by ovis25 Fri Sep 17, 2021 12:30 am

yes possible like,

Code:
//--------------------------------------------------------
BOOL SearchInTables(UCHAR * In, UCHAR * Out, ULONG Length)
   //--------------------------------------------------------
{
   UCHAR Out16[] = {0};
   BOOL Result = FALSE;
   int I;

   switch(Length)
   {
   case 0x08:
      for(I = 0; I < (sizeof(Q8)/sizeof(UCHAR)); I += 8)
      {
         if( MemCmp(In, Q8 + I, 8))
         {
            MemCopy(A8 + I, Out, 8);
            return TRUE;
         }
      }
      break;
   case 0x10:
      for(I = 0; I < (sizeof(Q16)/sizeof(UCHAR)); I += 16)
      {
         if( MemCmp(In, Q16 + I, 16))
         {
            MemCopy(A16 + I, Out, 16);
            return TRUE;
         }
      }
      break;
   case 0x14:
      for(I = 0; I < (sizeof(Q20)/sizeof(UCHAR)); I += 20)
      {
         if( MemCmp(In, Q20 + I, 20))
         {
            MemCopy(A20 + I, Out, 20);
            return TRUE;
         }
      }
      break;
   }

   Result = FALSE;

   return Result;
}

ovis25

Posts : 648
Points : 1234
Reputation : 332
Join date : 2014-06-07

Johnvb likes this post

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Johnvb Fri Sep 17, 2021 4:22 pm

Ovis you can decode tracelog? 
And my wibubox 6 source can handle this q/a?

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by ovis25 Sat Sep 18, 2021 12:05 am

no public missing this and other features.

ovis25

Posts : 648
Points : 1234
Reputation : 332
Join date : 2014-06-07

Johnvb likes this post

Back to top Go down

wibubox table Empty Re: wibubox table

Post by BfoX Sat Sep 18, 2021 4:23 am

Johnvb wrote:Ovis you can decode tracelog? 
And my wibubox 6 source can handle this q/a?

all q/a in trace is visible. as plain text. you need open your eye's and power up your brain =)

BfoX

Posts : 1218
Points : 1662
Reputation : 307
Join date : 2012-04-18
Location : Earth

Johnvb likes this post

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Johnvb Sat Sep 18, 2021 5:40 am

bfox 
i will post log here and  open my eyes with your help  Razz Laughing Evil or Very Mad  ?

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by BfoX Sat Sep 18, 2021 11:30 am

as you wish

BfoX

Posts : 1218
Points : 1662
Reputation : 307
Join date : 2012-04-18
Location : Earth

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Johnvb Wed Sep 29, 2021 1:18 am

heyfox
this is trace log ucan check it for query and response

[You must be registered and logged in to see this link.]
you say that doesnt need decode ?

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by ovis25 Wed Sep 29, 2021 9:50 am

[You must be registered and logged in to see this link.]

ovis25

Posts : 648
Points : 1234
Reputation : 332
Join date : 2014-06-07

Johnvb likes this post

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Johnvb Wed Sep 29, 2021 10:11 am

Ovis thanks very much
In source there query/answer 16 and querie/answer 20 
Which different between them?

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by BfoX Wed Sep 29, 2021 1:15 pm

your software use RED type q/r - just check : the dongle is present. no more

--------- Request # 57 ----[OUT]----
** Data **
14 54 4D 55 47 5A 4E 4E 54 56 4C 43 42 51 42 4F 57 51 4C 53 44

--------- Request # 64 ----[IN]----
** Data **
00 D9 D3 E7 C2 58 7B A8 50 0D 61 8E 23 3B 1C D4 2D 0C 3B DD D7

--------- Request # 73 ----[OUT]----
** Data **
14 D9 D3 E7 C2 58 7B A8 50 0D 61 8E 23 3B 1C D4 2D 0C 3B DD D7

--------- Request # 80 ----[IN]----
** Data **
00 54 4D 55 47 5A 4E 4E 54 56 4C 43 42 51 42 4F 57 51 4C 53 44

max length is 256 bytes


Last edited by BfoX on Thu Sep 30, 2021 11:55 am; edited 1 time in total

BfoX

Posts : 1218
Points : 1662
Reputation : 307
Join date : 2012-04-18
Location : Earth

Johnvb likes this post

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Johnvb Wed Sep 29, 2021 6:28 pm

Yes ur right 
Those q/r must be in q/a 16 or 20 in source??
Or other thing?


Last edited by Johnvb on Wed Sep 29, 2021 6:31 pm; edited 1 time in total (Reason for editing : Type of q/r)

Johnvb

Posts : 66
Points : 94
Reputation : -17
Join date : 2018-04-19

Back to top Go down

wibubox table Empty Re: wibubox table

Post by BfoX Thu Sep 30, 2021 11:54 am

the first byte of q is q/r length (01..255). try to understand your wibu-kit Wink

RED - Random Encryption/Decryption.
first stage: wibu crypt2 q0-> a0, second stage wibu crypt2 a0 -> q1, three stage is compare q0 and q1

RID - Required Information Decryption
used in wibu-shell and data encryption/decryption

BfoX

Posts : 1218
Points : 1662
Reputation : 307
Join date : 2012-04-18
Location : Earth

Back to top Go down

wibubox table Empty Re: wibubox table

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum