util.cpp
上传用户:nbcables
上传日期:2007-01-11
资源大小:1243k
文件大小:6k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <winsock.h>
  5. #include "resource.h"
  6. #include "util.h"
  7. extern HINSTANCE g_hInstance;
  8. void GetFileName(char *fname)
  9. {
  10. char temp[200];
  11. GetModuleFileName(NULL, temp, sizeof(temp));
  12. int i =strlen(temp);
  13. while(i >0 && temp[i-1] !='\' && temp[i-1] !=':') i--;
  14. strcpy(fname, &temp[i]);
  15. strupr(fname);
  16. }
  17. void WriteLog(char *fmt,...)
  18. {
  19. FILE *fp;
  20. va_list args;
  21. char modname[200];
  22. if((fp =fopen("c:\hookapi.log", "a")) !=NULL)
  23. {
  24. va_start(args,fmt);
  25. GetModuleFileName(NULL, modname, sizeof(modname));
  26. if(!strstr(modname, "HookAPI") || !strstr(modname, "explorer.exe"))
  27. {
  28. fprintf(fp, "mydll.dll:%s:", modname);
  29. vfprintf(fp, fmt, args);
  30. fprintf(fp, "n");
  31. }
  32. fclose(fp);
  33. va_end(args);
  34. }
  35. }
  36. int ipcmp(char *szip1, char *szip2)
  37. {
  38. ULONG ip1 =GetIntIP(szip1);
  39. ULONG ip2 =GetIntIP(szip2);
  40. if(ip1 > ip2) return 1;
  41. else if(ip1 <ip2) return -1;
  42. else return 0;
  43. }
  44. ULONG GetIntIP(char *szip)
  45. {
  46. char *p, *p1;
  47. char ip[16];
  48. int i;
  49. ULONG ii[4];
  50. i =0;
  51. strcpy(ip, szip);
  52. p =ip;
  53. while(*p && i<4)
  54. {
  55. p1 =p;
  56. while(*p && *p !='.') p++;
  57. *p =0;
  58. ii[i] =my_atoi(p1);
  59. p ++;
  60. i++;
  61. }
  62. return ii[0]*256*256*256+ii[1]*256*256+ii[2]*256+ii[3];
  63. }
  64. ULONG my_atoi(char *p)
  65. {
  66. ULONG i;
  67. i =0;
  68. while(*p)
  69. {
  70. i =(i+*p-'0')*10;
  71. p++;
  72. }
  73. i =i/10;
  74. return i;
  75. }
  76. BOOL CALLBACK PasswordDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
  77. {
  78. static PASSWORD_DATA *pdata;
  79. char password[9];
  80. switch(msg)
  81. {
  82. case WM_INITDIALOG:
  83. pdata =(PASSWORD_DATA *)lParam;
  84. SetDlgItemText(hDlg, IDC_APP_NAME, pdata->app_name);
  85. SetWindowPos(hDlg, NULL, 300, 300, 0, 0, SWP_NOSIZE);
  86. SendDlgItemMessage(hDlg, IDE_PASSWORD, EM_SETLIMITTEXT, 8, 0L);
  87. break;
  88. case WM_COMMAND:
  89. switch(LOWORD(wParam))
  90. {
  91. case IDOK:
  92. if(GetDlgItemText(hDlg, IDE_PASSWORD, password, sizeof(password)) ==0)
  93. return TRUE;
  94. strcpy(pdata->p_password, password);
  95. EndDialog(hDlg, IDOK);
  96. break;
  97. case IDCANCEL:
  98. EndDialog(hDlg, IDCANCEL);
  99. }
  100. break;
  101. }
  102. return FALSE;
  103. }
  104. int GetPassword(char *app, char *password)
  105. {
  106. PASSWORD_DATA data;
  107. strcpy(data.app_name, app);
  108. data.p_password =password;
  109. if(DialogBoxParam(g_hInstance, MAKEINTRESOURCE(IDD_PASSWORD), NULL, PasswordDlgProc, (LONG)&data) ==IDCANCEL)
  110. return -1;
  111. return 0;
  112. }
  113. int EncURL(unsigned char *url, int len, char *new_url)
  114. {
  115. int k =0;
  116. for(int i =0; i<len; i++)
  117. {
  118. if(url[i] >127)
  119. {
  120. wsprintf(&new_url[k], "%%%2X", url[i]);
  121. k +=3;
  122. }
  123. else new_url[k++] =url[i];
  124. }
  125. new_url[k] =0;
  126. return k;
  127. }
  128. int FindData(unsigned char *data1, int len1, unsigned char *data2, int len2, int enc_url)
  129. {
  130. int i, len_url;
  131. char url[1024];
  132. //unsigned char *data =new BYTE[len2];
  133. int count =0;
  134. int pos[256], len[256], pos3[256], len3[256];
  135. int k =0;
  136. pos [0] =0;
  137. len [0] =0;
  138. char *p =(char *)data2;
  139. for(i =0; i<len2; i++)
  140. {
  141. if(p[i] !=',') len[k] ++;
  142. else
  143. {
  144. k++;
  145. pos[k] =i+1;
  146. len[k] =0;
  147. }
  148. }
  149. count =k+1;
  150. if(enc_url)
  151. {
  152. len_url =EncURL(data2, len2, url);
  153. k =0;
  154. pos3[0] =0;
  155. len3[0] =0;
  156. char *p =url;
  157. for(i =0; i<len_url; i++)
  158. {
  159. if(p[i] !=',') len3[k] ++;
  160. else
  161. {
  162. k++;
  163. pos3[k] =i+1;
  164. len3[k] =0;
  165. }
  166. }
  167. }
  168. else len_url =len2;
  169. //WriteLog("url =%s,len_url=%dndata1=%sn####len1=%d", url,len_url, data1,len1);
  170. i =0;
  171. while(i+len_url<=len1)
  172. {
  173. for(k =0; k<count; k++)
  174. {
  175. if(len[k] && memcmp(data1+i, data2+pos[k], len[k]) ==0) return i;
  176. }
  177. if(enc_url)
  178. {
  179. for(k =0; k<count; k++)
  180. {
  181. if(len3[k] && memcmp(data1+i, url+pos3[k], len3[k]) ==0) return i;
  182. }
  183. }
  184. i++;
  185. }
  186. //WriteLog("not found!!!");
  187. //delete data;
  188. return -1;
  189. }
  190. //加密例子:使用异或,输出长度不变。
  191. int EncryptData(int algrithm, char *password, unsigned char *inbuf, int inbuf_len, unsigned char *outbuf, int *outbuf_len)
  192. {
  193. int i;
  194. for(i =0; i<inbuf_len-1; i++)
  195. {
  196. outbuf[i] =inbuf[i]^password[i%8];
  197. }
  198. *outbuf_len =inbuf_len;
  199. return *outbuf_len;
  200. }
  201. int DecryptData(int algrithm, char *password, unsigned char *inbuf, int inbuf_len, unsigned char *outbuf, int *outbuf_len)
  202. {
  203. int i;
  204. for(i =0; i<inbuf_len; i++)
  205. {
  206. outbuf[i] =inbuf[i]^password[i%8];
  207. }
  208. *outbuf_len =inbuf_len;
  209. return *outbuf_len;
  210. }
  211. char *upper_case(char *p, int len)
  212. {
  213. for(int i =0; i<len; i++)
  214. {
  215. if(p[i] <='a' && p[i] >='z') p[i] =p[i]+'A'-'a';
  216. }
  217. return p;
  218. }
  219. int mreplace(char *buf, int len, char *str, char c)
  220. {
  221. if(len <=0) return NULL;
  222. int f_found =false;
  223. for(int i =0; i<len-(int)strlen(str); i++)
  224. {
  225. if(strnicmp(&buf[i], str, strlen(str))==0)
  226. {
  227. if(c) memset(&buf[i], c, strlen(str));
  228. f_found =true;
  229. }
  230. }
  231. return f_found;
  232. }
  233. char * GetErrString(char *str, DWORD errcode)
  234. {
  235. LPVOID lpbuf;
  236. if(FormatMessage( 
  237. FORMAT_MESSAGE_ALLOCATE_BUFFER |
  238. FORMAT_MESSAGE_FROM_SYSTEM | 
  239. FORMAT_MESSAGE_IGNORE_INSERTS,
  240. NULL,
  241. errcode,
  242. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  243. (LPTSTR) &lpbuf,
  244. 0,
  245. NULL
  246. ))
  247. {
  248. lstrcpy(str, (char *)lpbuf);
  249. LocalFree(lpbuf);
  250. }
  251. return str;
  252. }
  253. int split_cmd(char *cmd, char *app, char *file)
  254. {
  255. char cmd2[512];
  256. *app =0;
  257. *file =0;
  258. strcpy(cmd2, cmd);
  259. char *p1, *p=cmd2;
  260. if(*p =='"')
  261. {
  262. p++;
  263. p1 =strtok(p, """);
  264. strcpy(app, p);
  265. if(p1 ==NULL) return 0;
  266. if(*(p1+1) !=' ') return 1;
  267. p =p1+2;
  268. }
  269. else
  270. {
  271. p1 =strtok(p, " ");
  272. strcpy(app, p);
  273. if(p1 ==NULL || *p1 ==NULL) return 1;
  274. p =p1+1;
  275. }
  276. return 0;
  277. }
  278. int MyDecryptFile(char *src_file, char *dst_file, char *password)
  279. {
  280. return 0;
  281. }
  282. char *GetFileNameByHandle(HANDLE hFile, char *name)
  283. {
  284. return NULL;
  285. }