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

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This file is free software, and not subject to GNU Public License
  4. restrictions; you can redistribute it and/or modify it in any way 
  5. you see fit. This file is suitable for inclusion in a derivative
  6. work, regardless of license on the work or availability of source code
  7. to the work. If you redistribute this file, you must leave this
  8. header intact.
  9.     
  10. This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
  13. The author of this program may be contacted at dildog@l0pht.com. */
  14. #include<windows.h>
  15. char *BreakString(char *svLines, char *svTok)
  16. {
  17. char *p,*s;
  18. char *tok;
  19. p=svLines;
  20. if(p==NULL) return NULL;
  21. while(*p!='') {
  22. for(s=p,tok=svTok;(*s)&&(*tok);s++,tok++) {
  23. if((*s)!=(*tok)) break;
  24. }
  25. if((*tok)=='') {
  26. *p='';
  27. return p+lstrlen(svTok);
  28. }
  29. p++;
  30. }
  31. return NULL;
  32. }
  33. // What escapestring returns must be FREEd.
  34. char *EscapeString(char *svStr)
  35. {
  36. // Determine final size
  37. int nEscapes=0,i,count;
  38. count=lstrlen(svStr);
  39. for(i=0;i<count;i++) {
  40. if(svStr[i]=='a') nEscapes++;
  41. else if(svStr[i]=='b') nEscapes++;
  42. else if(svStr[i]=='f') nEscapes++;
  43. else if(svStr[i]=='n') nEscapes++;
  44. else if(svStr[i]=='r') nEscapes++;
  45. else if(svStr[i]=='t') nEscapes++;
  46. else if(svStr[i]=='v') nEscapes++;
  47. else if(svStr[i]=='\') nEscapes++;
  48. else if(svStr[i]<' ' || svStr[i]>'~') nEscapes+=3;
  49. }
  50. // Allocate output buffer
  51. char *svOutBuf=(char*)malloc(lstrlen(svStr)+nEscapes+1);
  52. // Escape things
  53. int j=0;
  54. for(i=0;i<count;i++) {
  55. char c;
  56. c=svStr[i];
  57. if(c>=' ' && c<='~') { svOutBuf[j]=c; j++; }
  58. else if(c=='a') { svOutBuf[j]='\'; svOutBuf[j+1]='a'; j+=2; }
  59. else if(c=='b') { svOutBuf[j]='\'; svOutBuf[j+1]='b'; j+=2; }
  60. else if(c=='f') { svOutBuf[j]='\'; svOutBuf[j+1]='f'; j+=2; }
  61. else if(c=='n') { svOutBuf[j]='\'; svOutBuf[j+1]='n'; j+=2; }
  62. else if(c=='r') { svOutBuf[j]='\'; svOutBuf[j+1]='r'; j+=2; }
  63. else if(c=='t') { svOutBuf[j]='\'; svOutBuf[j+1]='t'; j+=2; }
  64. else if(c=='v') { svOutBuf[j]='\'; svOutBuf[j+1]='v'; j+=2; }
  65. else if(c=='\') { svOutBuf[j]='\'; svOutBuf[j+1]='\'; j+=2; }
  66. else {
  67. wsprintf(svOutBuf+j,"\x%1.1X%1.1X",(c>>4),c&15);
  68. j+=4;
  69. }
  70. }
  71. svOutBuf[j]='';
  72. return svOutBuf;
  73. }
  74. char *UnescapeString(char *svStr)
  75. {
  76. int len=lstrlen(svStr);
  77.     char *svTemp;
  78. // Count number of '%' characters
  79. int nCount;
  80. nCount=0;
  81. svTemp=svStr;
  82. while(*svTemp) {
  83. if(*svTemp=='%') nCount++;
  84. svTemp++;
  85. }
  86. // Allocate memory
  87. svTemp=(char *)malloc(lstrlen(svStr)+1+nCount);
  88. if(svTemp==NULL) return NULL;
  89. memset(svTemp,0,lstrlen(svStr)+1+nCount);
  90. // Convert string to preserve '%' chars
  91. char *svCvtTo, *svCvtFrom;
  92. svCvtFrom=svStr;
  93. svCvtTo=svTemp;
  94. while(*svCvtFrom) {
  95. if(*svCvtFrom=='%') {
  96. *(svCvtTo++)='%';
  97. }
  98. *(svCvtTo++)=*(svCvtFrom++);
  99. }
  100. // Convert escape chars (funky kludge, eh?)
  101. wsprintf(svStr,svTemp);
  102. free(svTemp);
  103. return svStr;
  104. }