Exercise One in Carnegie Course SSD Six

    First of all , I'm going to show the source code(the decoder) below:

   

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int prologue [] = {
  4.     0x5920453A, 0x54756F0A, 0x6F6F470A, 0x21643A6F,
  5.     0x6E617920, 0x680A6474, 0x6F697661, 0x20646E69,
  6.     0x63636363, 0x63636363, 0x72464663, 0x6F6D6F72,
  7.     0x63636363, 0x63636363, 0x72464663, 0x6F6D6F72,
  8.     0x2C336573, 0x7420346E, 0x20216F74, 0x726F5966,
  9.     0x7565636F, 0x20206120, 0x6C616763, 0x74206C6F,
  10.     0x20206F74, 0x74786565, 0x65617276, 0x32727463,
  11.     0x594E2020, 0x206F776F, 0x79727574, 0x4563200A
  12. };
  13. int data [] = {
  14.     0x63636363, 0x63636363, 0x72464663, 0x6F6D6F72,
  15.         0x466D203A, 0x65693A72, 0x43646E20, 0x6F54540A,
  16.         0x5920453A, 0x54756F0A, 0x6F6F470A, 0x21643A6F,
  17.         0x594E2020, 0x206F776F, 0x79727574, 0x4563200A,
  18.         0x6F786F68, 0x6E696373, 0x6C206765, 0x796C656B,
  19.         0x2C336573, 0x7420346E, 0x20216F74, 0x726F5966,
  20.         0x7565636F, 0x20206120, 0x6C616763, 0x74206C6F,
  21.         0x20206F74, 0x74786565, 0x65617276, 0x32727463,
  22.         0x6E617920, 0x680A6474, 0x6F697661, 0x20646E69,
  23.         0x21687467, 0x63002065, 0x6C6C7861, 0x78742078,
  24.         0x6578206F, 0x72747878, 0x78636178, 0x00783174
  25. };
  26. int epilogue [] = {
  27.     0x594E2020, 0x206F776F, 0x79727574, 0x4563200A,
  28.     0x6E617920, 0x680A6474, 0x6F697661, 0x20646E69,
  29.     0x7565636F, 0x20206120, 0x6C616763, 0x74206C6F,
  30.     0x2C336573, 0x7420346E, 0x20216F74, 0x726F5966,
  31.     0x20206F74, 0x74786565, 0x65617276, 0x32727463
  32. };
  33. char message[100];
  34. void usage_and_exit(char * program_name) {
  35.     fprintf(stderr, "USAGE: %s key1 key2 key3 key4/n", program_name);
  36.     exit(1);
  37. }
  38. void process_keys12 (int * key1, int * key2) {
  39.     
  40.     *((int *) (key1 + *key1)) = *key2;
  41. }
  42. void process_keys34 (int * key3, int * key4) {
  43.     *(((int *)&key3) + *key3) += *key4;
  44. }
  45. char * extract_message1(int start, int stride) {
  46.     int i, j, k;
  47.     int done = 0;
  48.     for (i = 0, j = start + 1; ! done; j++) {
  49.         for (k = 1; k < stride; k++, j++, i++) {
  50.             if (*(((char *) data) + j) == '/0') {
  51.                 done = 1;
  52.                 break;
  53.             }
  54.                              
  55.             message[i] = *(((char *) data) + j);
  56.         }
  57.     }
  58.     message[i] = '/0';
  59.     return message;
  60. }
  61. char * extract_message2(int start, int stride) {
  62.     int i, j;
  63.     for (i = 0, j = start; 
  64.          *(((char *) data) + j) != '/0';
  65.          i++, j += stride) 
  66.          {
  67.              message[i] = *(((char *) data) + j);
  68.          }
  69.     message[i] = '/0';
  70.     return message;
  71. }
  72. int main (int argc, char *argv[])
  73. {
  74.     int dummy = 1;
  75.     int start, stride;
  76.     int key1, key2, key3, key4;
  77.     char * msg1, * msg2;
  78.     key3 = key4 = 0;
  79.     if (argc < 3) {
  80.         usage_and_exit(argv[0]);
  81.     }
  82.     key1 = strtol(argv[1], NULL, 0);
  83.     key2 = strtol(argv[2], NULL, 0);
  84.     if (argc > 3) key3 = strtol(argv[3], NULL, 0);
  85.     if (argc > 4) key4 = strtol(argv[4], NULL, 0);
  86.     process_keys12(&key1, &key2);
  87.     start = (int)(*(((char *) &dummy)));
  88.     stride = (int)(*(((char *) &dummy) + 1));
  89.     if (key3 != 0 && key4 != 0) {
  90.         process_keys34(&key3, &key4);
  91.     }
  92.     msg1 = extract_message1(start, stride);
  93.     if (*msg1 == '/0') {
  94.         process_keys34(&key3, &key4);
  95.         msg2 = extract_message2(start, stride);
  96.         printf("%s/n", msg2);
  97.     }
  98.     else {
  99.         printf("%s/n", msg1);
  100.     }
  101.     return 0;
  102. }

    To be followed , It's the answer and analysis of this exercise :

The secret message

From: CTE

To: You

Excellent ! You got everything!

 

The secret keys

Key1 = 9

Key2 = 777

Key3 = -1

Key4 = 45

 

What process_keys12() does

The function process_keys12 is used to change the value of variable dummy .

The key1’s value is equal with distance from dummy’s address to key1’s address , then the expression “*((int *) (key1 + *key1)) = *key2;” give key2’s value to dummy . Then we get the key1.

 

How start and stride set

As we know , the value of key2 had been given to dummy , then the expression :

start = (int)(*(((char *) &dummy)));” give the value of dummy’s first byte to variable start .But the length of dummy’s address is four byte , so next , the expression “stride = (int)(*(((char *) &dummy) + 1));” give the value of dummy’s second byte to variable stride . In order to give stride correct value , we need the value of dummy at least take two byte in memory , then we can calculate the correct value of key2

 

What process_key34() does

The function process_key34 is used to change the flow of decoder program ,and need to ignore some expression .

 

The code behind process_key34()

The first code behind “process_key34();” is :

msg1 = extract_message1(start, stride);

which is used to lead the program go into the function extract_message1

 

The meaning of the third and fourth keys

Now we call the return expression in assembler of first call to process_key34() as Re1 .Call the second as Re2

The address of Re1 is Add1 .,the address of Re2 is Add2 ,

While the decoder is calling the function process_key34() , the addresses of this function’s code have been push into the running time stack , include the Add1 and the address of local value key3 (in function process_key34),now we call the address of Add1 as Ass1, then what we need to do is change the value in Ass1 from Add1 to Add2 . so the expression

 *(((int *)&key3) + *key3) += *key4; , do this work , now we know key3’s value must be the distance between Ass1 with the address of local key3 in stack , and the value of key4 must be the distance between Add1 with Add2.

 

Now we figure all four keys out  !

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值