-
Notifications
You must be signed in to change notification settings - Fork 107
/
DOSTIME_Analyzer.c
164 lines (135 loc) · 4.13 KB
/
DOSTIME_Analyzer.c
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* -
* Copyright (c) 2006-2017 All rights reserved.
* Department of Computer Hacking and Information Security
* Sejong Univerity
*
* This code is contributed by Ki-Woong Park
* at Sejong University Dept. Information Security
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* Author : Ki-Woong Park Sejong University
* E-mail : [email protected]
*/
#include<stdio.h>
#include<ctype.h>
#include<string.h>
#include<stdlib.h>
#define LENGTH 250
void dumpcode(unsigned char *buff, int len);
void printchar(unsigned char c);
int unix2dostime (int year, int month, int day, int hour, int min, int sec);
int isLittleEndian();
void dos2unixtime(int dostime);
int LittleEndian_to_BigEndian(int num);
unsigned int extract_hex(const char *src);
int main()
{
char input_buffer[251];
int count = 0;
unsigned int before_endian = 0;
unsigned int after_endian = 0;
printf("This program is intended to translate 8 Hex values into human-readable time format.\n\n");
printf("Input (8 Hex Value): ");
count = input_string(input_buffer);
if(count != 8) return -1;
before_endian = extract_hex(input_buffer);
if(isLittleEndian())
{
after_endian = LittleEndian_to_BigEndian(before_endian);
}
else
{
after_endian = before_endian;
}
dos2unixtime(after_endian);
printf("%x\n", unix2dostime (2013, 3, 27, 12, 0, 0));
getchar();
return 0;
}
int input_string(char * s)
{
char *t = 0;
int size = 0;
int len;
do
{
s[LENGTH-2] = 0;
fgets(s, LENGTH, stdin);
len = strlen(s);
size += len;
t = realloc(t, size);
strcat(t, s);
} while(len == LENGTH-1 && s[LENGTH-2] != '\n');
return len-1;
}
int isLittleEndian()
{
unsigned num = 0xABCD;
return (*((unsigned char*)&num) == 0xCD);
}
void dos2unixtime(int dostime)
/* DOS time to convert *//* Return the Unix time_t value (GMT/UTC time) for the DOS format (local) * time dostime, where dostime is a four byte value (date in most significant * word, time in least significant word), see dostime() function. */
{
int year;
int month;
int day;
int hour;
int min;
int sec;
int result;
sec = (((int)dostime) << 1) & 0x3e;
min = (((int)dostime) >> 5) & 0x3f;
hour = (((int)dostime) >> 11) & 0x1f;
day = (int)(dostime >> 16) & 0x1f;
month = ((int)(dostime >> 21) & 0x0f);
year = ((int)(dostime >> 25) & 0x7f) + 1980;
printf("%d Y %d M %d D, %d H, %d M, %d sec \n",year, month, day, hour, min, sec);
result = unix2dostime (year, month, day, hour, min, sec);
printf("Function input: %d, Function_output: %d \n", dostime, result);
}
int unix2dostime (int year, int month, int day, int hour, int min, int sec)
{
return ((year-1980) << 25
| (month) << 21
| day << 16
| hour << 11
| min << 5
| sec >> 1);
}
int LittleEndian_to_BigEndian(int num)
{
return ((num>>24)&0xff) | // move byte 3 to byte 0
((num<<8)&0xff0000) | // move byte 1 to byte 2
((num>>8)&0xff00) | // move byte 2 to byte 1
((num<<24)&0xff000000); // byte 0 to byte 3
}
unsigned int extract_hex(const char *src)
{
int errno;
char hex_low[4 + 1] = { 0 };
char hex_high[4 + 1] = { 0 };
unsigned int val;
unsigned long val2;
if (strlen(src) < 8)
return -1;
memcpy(hex_low, src+4, 4);
memcpy(hex_high, src, 4);
if (strspn(hex_low,"0123456789AaBbCcDdEeFf") < 4)
return -1;
if (strspn(hex_high,"0123456789AaBbCcDdEeFf") < 4)
return -1;
val = strtol(hex_high, NULL, 16) << 16;
val += strtol(hex_low, NULL, 16);
return val;
}