aboutsummaryrefslogtreecommitdiff
path: root/crypter/simple_encoder.c
blob: 9b1479403afa9423051e5997f828fda253071c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//	#DECODER=./simple_decoder.o
//	#SHELLCODE=../shellcode/hello.o
#define _GNU_SOURCE 1

#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <stdlib.h>
#include <unistd.h>

#ifdef _USE_CFG
#include "simple_encoder.h"
#else
#error "simple_encoder.h config file missing including decoder && shellcode"
#endif

#ifndef _CRYPTVAL
#define _CRYPTVAL 200
#endif

#ifndef _OUTFILE
#define _OUTFILE "simple_encoded.o"
#endif


int
getnumber(int n)
{
  int seed;
  struct timeval tm;

  gettimeofday(&tm, NULL);
  seed = tm.tv_sec + tm.tv_usec;
  srandom(seed);
  return (random() % n);
}

void
print_code(const char *name, char *data, int len)
{
  int i,l = 15;

  printf("unsigned long int l%s = %lu;\nchar %s[] = \n", name, (unsigned long int) strlen(data), name);
  for (i = 0; i < len; i++) {
    if (l >= 15) {
      if (i) {
        printf("\"\n");
      }
      printf("\t\"");
      l = 0;
    }
    ++l;
    printf("\\x%02x", ((unsigned char *)data)[i]);
  }
  printf("\";\n\n");
}

void
err_n_xit(const char *exit_msg, const char *arg)
{
  char *tmp;
  if (arg != NULL) {
    asprintf(&tmp, "%s('%s')", exit_msg, arg);
  } else {
    tmp = (char *) exit_msg;
  }
  perror(tmp);
  if (arg != NULL) {
    free(tmp);
  }
  exit(1);
}

int
main(int argc, char **argv)
{
  int i, npos = 0, number = getnumber(_CRYPTVAL), nullbyte = 0;
  int ldecoder = sizeof(decoder)-1; /* last byte is '\x00' */
  int lshellcode = sizeof(shellcode)-1; /* same as above */
  int first_arg = 1;
  char *result;
  FILE *outfile;

  printf("/* Using value %d to encode the shellcode. */\n", number);
  printf("/* PRINT SHELLCODE */\n");
  print_code("shellcode", shellcode, lshellcode);
  printf("/* PRINT DECODER */\n");
  print_code("decoder", decoder, ldecoder);

  for (i = 0; i < ldecoder; i++) {
    if (decoder[i] == '\x00') {
      if (first_arg) {
        decoder[i] = lshellcode;
        first_arg = 0;
      } else {
        decoder[i] = (unsigned char) number;
        npos = i;
      }
      printf("// decoder[%d] = %u (%02x)\n", i, (unsigned char) decoder[i], (unsigned char) decoder[i]);
    }
  }
  printf("\n");

  do {
    if (nullbyte == 1) {
      number = getnumber(10);
      decoder[npos] += number;
      fprintf(stderr, "New crypt value: %d (%02x)\n", decoder[npos], decoder[npos]);
      nullbyte = 0;
    }

    for (i = 0; i < lshellcode; i++) {
      shellcode[i] += number;
      if (shellcode[i] == '\x00') {
        nullbyte = 1;
        fprintf(stderr, "Recode!\n");
        break;
      }
    }
  } while (nullbyte == 1);

  result = malloc(ldecoder + lshellcode + 1);
  memcpy(result, (const void *) decoder, ldecoder);
  memcpy(result + ldecoder, shellcode, lshellcode);
  *(result + ldecoder + lshellcode) = '\0';
  print_code("result", result, ldecoder + lshellcode);

  /* write2file */
  outfile = fopen(_OUTFILE, "w+b");
  if (outfile == NULL) err_n_xit("fopen", _OUTFILE);
  if (fwrite((void *) result, sizeof(char), strlen(result), outfile) != strlen(result)) err_n_xit("fwrite", _OUTFILE);
  if (fclose(outfile) != 0) err_n_xit("fclose", _OUTFILE);
  fprintf(stderr, "outfile: %s\n", _OUTFILE);

  free(result);
  return (0);
}