xorencrypt.cpp
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:6k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #include<windows.h>
  16. #include<encryption.h>
  17. #include<config.h>
  18. #define LROTL(dw,c) (((DWORD)dw<<c) | ((DWORD)dw>>(32-c)))
  19. #ifdef NDEBUG
  20. char g_szXOREncryptOptions[]="<**CFG**>XOR"
  21.                              "S[45]:XOR Key=";
  22. #else
  23. char g_szXOREncryptOptions[]="<**CFG**>XOR"
  24.                              "S[45]:XOR Key=No rest for the wicked.";
  25. #endif
  26. ENCRYPTION_ENGINE g_XORengine={NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
  27. typedef struct {
  28. DWORD dwXORKey;
  29. char svXORKey[46];
  30. } XORENCRYPT_DATA;
  31. int __cdecl XOREncrypt_Insert(void);
  32. int __cdecl XOREncrypt_Remove(void);
  33. char * __cdecl XOREncrypt_Query(void);
  34. void * __cdecl XOREncrypt_Startup(void);
  35. int __cdecl XOREncrypt_Shutdown(void *pInternal);
  36. int __cdecl XOREncrypt_SetEncryptKey(void *pInternal, char *pKey);
  37. int __cdecl XOREncrypt_SetDecryptKey(void *pInternal, char *pKey);
  38. char * __cdecl XOREncrypt_GetEncryptKey(void *pInternal);
  39. char * __cdecl XOREncrypt_GetDecryptKey(void *pInternal);
  40. BYTE * __cdecl XOREncrypt_Encrypt(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen);
  41. BYTE * __cdecl XOREncrypt_Decrypt(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen);
  42. int __cdecl XOREncrypt_CreateNewKeys(void *pInternal);
  43. void __cdecl XOREncrypt_Free(void *pInternal, BYTE *pBuffer);
  44. int __cdecl XOREncrypt_Insert(void)
  45. {
  46. char *svKey=GetCfgStr(g_szXOREncryptOptions,"XOR Key");
  47. if(svKey==NULL) return -1;
  48. return 0;
  49. }
  50. int __cdecl XOREncrypt_Remove(void)
  51. {
  52. return 0;
  53. }
  54. char * __cdecl XOREncrypt_Query(void)
  55. {
  56. return "XOR: BO2K Simple XOR Encryption";
  57. }
  58. void * __cdecl XOREncrypt_Startup(void)
  59. {
  60. char *svKey=GetCfgStr(g_szXOREncryptOptions,"XOR Key");
  61. if(svKey==NULL) return NULL;
  62. if(svKey[0]=='') return NULL;
  63. XORENCRYPT_DATA *data;
  64. data=(XORENCRYPT_DATA *)malloc(sizeof(XORENCRYPT_DATA));
  65. if(data==NULL) return NULL;
  66. XOREncrypt_SetEncryptKey((void *)data,svKey);
  67. return data;
  68. }
  69. int __cdecl XOREncrypt_Shutdown(void *pInternal)
  70. {
  71. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  72. free(data);
  73. return 0;
  74. }
  75. int __cdecl XOREncrypt_SetEncryptKey(void *pInternal, char *svKey)
  76. {
  77. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  78. char *svKeyPtr=svKey;
  79. DWORD key;
  80. key=0xCDC31337;
  81. while((*svKeyPtr)!=0) {
  82. key=LROTL(key,8);
  83. key+=(*svKeyPtr);
  84. svKeyPtr++;
  85. }
  86. data->dwXORKey=key;
  87. lstrcpyn(data->svXORKey,svKey,46);
  88. return 0;
  89. }
  90. int __cdecl XOREncrypt_SetDecryptKey(void *pInternal, char *svKey)
  91. {
  92. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  93. char *svKeyPtr=svKey;
  94. DWORD key;
  95. key=0xCDC31337;
  96. while((*svKeyPtr)!=0) {
  97. key=LROTL(key,8);
  98. key+=(*svKeyPtr);
  99. svKeyPtr++;
  100. }
  101. data->dwXORKey=key;
  102. lstrcpyn(data->svXORKey,svKey,46);
  103. return 0;
  104. }
  105. char * __cdecl XOREncrypt_GetEncryptKey(void *pInternal)
  106. {
  107. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  108. return data->svXORKey;
  109. }
  110. char * __cdecl XOREncrypt_GetDecryptKey(void *pInternal)
  111. {
  112. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  113. return data->svXORKey;
  114. }
  115. BYTE * __cdecl XOREncrypt_Encrypt(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen)
  116. {
  117. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  118. BYTE *buf;
  119. int i;
  120. buf=(BYTE *)malloc(nBufLen);
  121. if(buf==NULL) return NULL;
  122. for(i=0;i<nBufLen;i++) {
  123. buf[i]=(pBuffer[i] ^ (BYTE)(data->dwXORKey >> (8*(i&3))) );
  124. }
  125. *pnOutBufLen=nBufLen;
  126. return buf;
  127. }
  128. BYTE * __cdecl XOREncrypt_Decrypt(void *pInternal, BYTE *pBuffer,int nBufLen,int *pnOutBufLen)
  129. {
  130. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  131. BYTE *buf;
  132. int i;
  133. buf=(BYTE *)malloc(nBufLen);
  134. if(buf==NULL) return NULL;
  135. for(i=0;i<nBufLen;i++) {
  136. buf[i]=(pBuffer[i] ^ (BYTE)(data->dwXORKey >> (8*(i&3))) );
  137. }
  138. *pnOutBufLen=nBufLen;
  139. return buf;
  140. }
  141. int __cdecl XOREncrypt_CreateNewKeys(void *pInternal)
  142. {
  143. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  144. return 0;
  145. }
  146. void __cdecl XOREncrypt_Free(void *pInternal, BYTE *pBuffer)
  147. {
  148. XORENCRYPT_DATA *data=(XORENCRYPT_DATA *)pInternal;
  149. free(pBuffer);
  150. }
  151. ENCRYPTION_ENGINE *GetXOREncryptionEngine(void)
  152. {
  153. g_XORengine.pInsert=XOREncrypt_Insert;
  154. g_XORengine.pRemove=XOREncrypt_Remove;
  155. g_XORengine.pQuery=XOREncrypt_Query;
  156. g_XORengine.pStartup=XOREncrypt_Startup;
  157. g_XORengine.pShutdown=XOREncrypt_Shutdown;
  158. g_XORengine.pSetEncryptKey=XOREncrypt_SetEncryptKey;
  159. g_XORengine.pSetDecryptKey=XOREncrypt_SetDecryptKey;
  160. g_XORengine.pGetEncryptKey=XOREncrypt_GetEncryptKey;
  161. g_XORengine.pGetDecryptKey=XOREncrypt_GetDecryptKey;
  162. g_XORengine.pEncrypt=XOREncrypt_Encrypt;
  163. g_XORengine.pDecrypt=XOREncrypt_Decrypt;
  164. g_XORengine.pCreateNewKeys=XOREncrypt_CreateNewKeys;
  165. g_XORengine.pFree=XOREncrypt_Free;
  166. return &g_XORengine;
  167. }