Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. ;
  2. ; server connection timeout limit = 60 seconds
  3. ;
  4.  
  5. set ctimeout 60
  6.  
  7. ;
  8. ; add some servers to the serverlist
  9. ;
  10.  
  11. server chat.irc-hispano.org 6667 ( pass de mi nick )
  12. ;
  13. ; this is sorta how a botnet configuration would look like...
  14. ;
  15.  
  16. ;set linkport 5000
  17. ;set linkpass your_lame_password
  18. ;set autolink 1
  19.  
  20. ;
  21. ; what other bots are out there in cyberspace?
  22. ;
  23. ; link <guid> <password> [host port]
  24. ;
  25. ; guid the other bots guid
  26. ; password the other bots password
  27. ; host internet host to connect to when linking the other bot
  28. ; port tcp port to connect to on remote host
  29. ;
  30.  
  31. ;link 2 janes_password janes.host.com 5000 ; Jane Does EnergyMech
  32. ;link 3 johns_password johns.host.com 5000 ; John Does EnergyMech
  33.  
  34. ;
  35. ; we cant connect -to- bot 4, but we can accept connections from it!
  36. ;
  37.  
  38. ;link 4 ongabonga_pass
  39.  
  40. ;
  41. ; thats all the botnet stuff for now
  42. ;
  43.  
  44. ;
  45. ; create a new bot
  46. ;
  47. ; 1 the globally uniqe ID (guid), used for botnet linking
  48. ; emech3 the bots nick
  49. ;
  50.  
  51. nick 1 {_D|m4s_}
  52. set altnick myemech3 monkey3 dummy3 fuzzy3
  53.  
  54. ;
  55. ; set connection variables for this bot
  56. ;
  57.  
  58. set vhost hacked.a.fed-agent.us
  59. set userfile mech.passwd
  60. set ident {_D|m4s_}
  61. set ircname {_D|m4s_}
  62. set umodes +w
  63. set cmdchar .
  64. set modes 6
  65. set cc 1
  66.  
  67. ;
  68. ; join a channel
  69. ;
  70.  
  71. join #shell
  72. set pub 1
  73. set aop 1
  74. set avoice 1
  75. set prot 4
  76.  
  77. ;
  78. ; this is how you'd load a tcl on startup...
  79. ;
  80.  
  81. ;tclscript does-not-exist.tcl
  82.  
  83. ;
  84. ; Can you guess?
  85. ;
  86.  
  87. ;die You did not edit your configuation file!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement