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

钩子与API截获

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <io.h>
  4. #include "resource.h"
  5. #include "util.h"
  6. extern HINSTANCE g_hInstance;
  7. void GetFileName(char *fname)
  8. {
  9. char temp[200];
  10. GetModuleFileName(NULL, temp, sizeof(temp));
  11. int i =strlen(temp);
  12. while(i >0 && temp[i-1] !='\' && temp[i-1] !=':') i--;
  13. strcpy(fname, &temp[i]);
  14. }
  15. // 如果是win9x,不能使用fopen函数
  16. void WriteLog(char *fmt,...)
  17. {
  18. va_list args;
  19. char modname[200];
  20. char temp[5000];
  21. HANDLE hFile;
  22. GetModuleFileName(NULL, modname, sizeof(modname));
  23. if((hFile =CreateFile("c:\hookapi.log", GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL)) <0)
  24. {
  25. return;
  26. }
  27. SetFilePointer((HANDLE)hFile, 0, NULL, FILE_END);
  28. wsprintf(temp, "mydll.dll:%s:", modname);
  29. DWORD dw;
  30. WriteFile(hFile, temp, strlen(temp), &dw, NULL);
  31. va_start(args,fmt);
  32. vsprintf(temp, fmt, args);
  33. va_end(args);
  34. WriteFile(hFile, temp, strlen(temp), &dw, NULL);
  35. wsprintf(temp, "rn");
  36. WriteFile(hFile, temp, strlen(temp), &dw, NULL);
  37. CloseHandle(hFile);
  38. }
  39. void WriteLog9x(char *msg)
  40. {
  41. char modname[200];
  42. char temp[5000];
  43. HANDLE hFile;
  44. GetModuleFileName(NULL, modname, sizeof(modname));
  45. if((hFile =CreateFile("c:\hookapi.log", GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL)) <0)
  46. {
  47. return;
  48. }
  49. SetFilePointer((HANDLE)hFile, 0, NULL, FILE_END);
  50. wsprintf(temp, "mydll.dll:%s:", modname);
  51. DWORD dw;
  52. WriteFile(hFile, temp, strlen(temp), &dw, NULL);
  53. WriteFile(hFile, msg, strlen(msg), &dw, NULL);
  54. wsprintf(temp, "rn");
  55. WriteFile(hFile, temp, strlen(temp), &dw, NULL);
  56. CloseHandle(hFile);
  57. }
  58. int ipcmp(char *szip1, char *szip2)
  59. {
  60. ULONG ip1 =GetIntIP(szip1);
  61. ULONG ip2 =GetIntIP(szip2);
  62. if(ip1 > ip2) return 1;
  63. else if(ip1 <ip2) return -1;
  64. else return 0;
  65. }
  66. ULONG GetIntIP(char *szip)
  67. {
  68. char *p, *p1;
  69. char ip[16];
  70. int i;
  71. ULONG ii[4];
  72. i =0;
  73. strcpy(ip, szip);
  74. p =ip;
  75. while(*p && i<4)
  76. {
  77. p1 =p;
  78. while(*p && *p !='.') p++;
  79. *p =0;
  80. ii[i] =my_atoi(p1);
  81. p ++;
  82. i++;
  83. }
  84. return ii[0]*256*256*256+ii[1]*256*256+ii[2]*256+ii[3];
  85. }
  86. ULONG my_atoi(char *p)
  87. {
  88. ULONG i;
  89. i =0;
  90. while(*p)
  91. {
  92. i =(i+*p-'0')*10;
  93. p++;
  94. }
  95. i =i/10;
  96. return i;
  97. }
  98. BOOL CALLBACK PasswordDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
  99. {
  100. static PASSWORD_DATA *pdata;
  101. char password[9];
  102. switch(msg)
  103. {
  104. case WM_INITDIALOG:
  105. pdata =(PASSWORD_DATA *)lParam;
  106. SetDlgItemText(hDlg, IDC_APP_NAME, pdata->app_name);
  107. SetDlgItemText(hDlg, IDC_IP, pdata->ip);
  108. SetWindowPos(hDlg, NULL, 300, 300, 0, 0, SWP_NOSIZE);
  109. SendDlgItemMessage(hDlg, IDE_PASSWORD, EM_SETLIMITTEXT, 8, 0L);
  110. break;
  111. case WM_COMMAND:
  112. switch(LOWORD(wParam))
  113. {
  114. case IDOK:
  115. GetDlgItemText(hDlg, IDE_PASSWORD, password, sizeof(password));
  116. if(strcmp(password, pdata->password) !=0)
  117. {
  118. MessageBox(hDlg, "密码不对", pdata->app_name, MB_OK);
  119. return TRUE;
  120. }
  121. EndDialog(hDlg, IDOK);
  122. break;
  123. case IDCANCEL:
  124. EndDialog(hDlg, IDCANCEL);
  125. }
  126. break;
  127. }
  128. return FALSE;
  129. }
  130. int CheckPassword(char *app, char *ip, char *password)
  131. {
  132. PASSWORD_DATA data;
  133. strcpy(data.app_name, app);
  134. strcpy(data.ip, ip);
  135. strcpy(data.password, password);
  136. if(DialogBoxParam(g_hInstance, MAKEINTRESOURCE(IDD_PASSWORD), NULL, PasswordDlgProc, (LONG)&data) ==IDCANCEL)
  137. return -1;
  138. return 0;
  139. }
  140. int EncURL(unsigned char *url, int len, char *new_url)
  141. {
  142. int k =0;
  143. for(int i =0; i<len; i++)
  144. {
  145. if(url[i] >127)
  146. {
  147. wsprintf(&new_url[k], "%%%2X", url[i]);
  148. k +=3;
  149. }
  150. else new_url[k++] =url[i];
  151. }
  152. new_url[k] =0;
  153. return k;
  154. }
  155. int FindData(unsigned char *data1, int len1, unsigned char *data2, int len2, int enc_url)
  156. {
  157. int i, len_url;
  158. char url[1024];
  159. //unsigned char *data =new BYTE[len2];
  160. int count =0;
  161. int pos[256], len[256], pos3[256], len3[256];
  162. int k =0;
  163. pos [0] =0;
  164. len [0] =0;
  165. char *p =(char *)data2;
  166. for(i =0; i<len2; i++)
  167. {
  168. if(p[i] !=',') len[k] ++;
  169. else
  170. {
  171. k++;
  172. pos[k] =i+1;
  173. len[k] =0;
  174. }
  175. }
  176. count =k+1;
  177. if(enc_url)
  178. {
  179. len_url =EncURL(data2, len2, url);
  180. k =0;
  181. pos3[0] =0;
  182. len3[0] =0;
  183. char *p =url;
  184. for(i =0; i<len_url; i++)
  185. {
  186. if(p[i] !=',') len3[k] ++;
  187. else
  188. {
  189. k++;
  190. pos3[k] =i+1;
  191. len3[k] =0;
  192. }
  193. }
  194. }
  195. else len_url =len2;
  196. //WriteLog("url =%s,len_url=%dndata1=%sn####len1=%d", url,len_url, data1,len1);
  197. i =0;
  198. while(i+len_url<=len1)
  199. {
  200. for(k =0; k<count; k++)
  201. {
  202. if(len[k] && memcmp(data1+i, data2+pos[k], len[k]) ==0) return i;
  203. }
  204. if(enc_url)
  205. {
  206. for(k =0; k<count; k++)
  207. {
  208. if(len3[k] && memcmp(data1+i, url+pos3[k], len3[k]) ==0) return i;
  209. }
  210. }
  211. i++;
  212. }
  213. //WriteLog("not found!!!");
  214. //delete data;
  215. return -1;
  216. }
  217. //加密例子:使用异或,输出长度不变。
  218. int EncryptData(int algrithm, char *password, unsigned char *inbuf, int inbuf_len, unsigned char *outbuf, int *outbuf_len)
  219. {
  220. int i;
  221. for(i =0; i<inbuf_len-1; i++)
  222. {
  223. outbuf[i] =inbuf[i]^password[i%8];
  224. }
  225. *outbuf_len =inbuf_len;
  226. return *outbuf_len;
  227. }
  228. int DecryptData(int algrithm, char *password, unsigned char *inbuf, int inbuf_len, unsigned char *outbuf, int *outbuf_len)
  229. {
  230. int i;
  231. for(i =0; i<inbuf_len; i++)
  232. {
  233. outbuf[i] =inbuf[i]^password[i%8];
  234. }
  235. *outbuf_len =inbuf_len;
  236. return *outbuf_len;
  237. }