Guest User

Untitled

a guest
Aug 17th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. operator "pendo324" {
  2. /* name: the name of the oper must go above */
  3.  
  4. /* user: the user@host required for this operator. CIDR *is*
  5. * supported now. auth{} spoofs work here, other spoofs do not.
  6. * multiple user="" lines are supported.
  7. */
  8. user = "*@*";
  9.  
  10. /* password: the password required to oper. Unless ~encrypted is
  11. * contained in flags = ...; this will need to be encrypted using
  12. * mkpasswd, MD5 is supported
  13. */
  14. password = "a pwd";
  15.  
  16. /* rsa key: the public key for this oper when using Challenge.
  17. * A password should not be defined when this is used, see
  18. * doc/challenge.txt for more information.
  19. */
  20. #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
  21.  
  22. /* umodes: the specific umodes this oper gets when they oper.
  23. * If this is specified an oper will not be given oper_umodes
  24. * These are described above oper_only_umodes in general {};
  25. */
  26. #umodes = locops, servnotice, operwall, wallop;
  27.  
  28. /* fingerprint: if specified, the oper's client certificate
  29. * fingerprint will be checked against the specified fingerprint
  30. * below.
  31. */
  32. #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
  33.  
  34. /* snomask: specific server notice mask on oper up.
  35. * If this is specified an oper will not be given oper_snomask.
  36. */
  37. snomask = "+Zbfkrsuy";
  38.  
  39. /* vhost: defines the vhost that this oper will get on oper up.
  40. * this must be a valid hostmask. If this is specified the oper
  41. * will not be given default_operhost.
  42. */
  43. vhost = "is.an.oper";
  44.  
  45. /* swhois: defines an additional line that will be displayed
  46. * whenever someone does /whois on the oper in question.
  47. */
  48. swhois = "is wearing pants.";
  49.  
  50. /* operstring: defines a custom operstring for this oper,
  51. * which will be shown in whois instead of default_operstring
  52. * or default_adminstring.
  53. */
  54. operstring = "is a lazy IRC Operator";
  55.  
  56. /* flags: misc options for the operator. You may prefix an option
  57. * with ~ to disable it, e.g. ~encrypted.
  58. *
  59. * Default flags are encrypted.
  60. *
  61. * Available options:
  62. *
  63. * encrypted: the password above is encrypted [DEFAULT]
  64. * need_ssl: must be using SSL/TLS to oper up
  65. */
  66. flags = encrypted;
  67.  
  68. /* privset: privileges set to grant */
  69. privset = "admin";
  70. };
Add Comment
Please, Sign In to add comment