Advertisement
Guest User

Untitled

a guest
May 21st, 2023
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.00 KB | None | 0 0
  1. > Starting lldap..
  2.  
  3. Loading configuration from /data/lldap_config.toml
  4. Configuration: Configuration {
  5. ldap_host: "0.0.0.0",
  6. ldap_port: 3890,
  7. http_host: "0.0.0.0",
  8. http_port: 17170,
  9. jwt_secret: ***SECRET***,
  10. ldap_base_dn: "dc=domain,dc=com",
  11. ldap_user_dn: UserId(
  12. "admin",
  13. ),
  14. ldap_user_email: "",
  15. ldap_user_pass: ***SECRET***,
  16. database_url: "postgres://lldap:password@postgres:5432/lldap",
  17. ignored_user_attributes: [],
  18. ignored_group_attributes: [],
  19. verbose: true,
  20. key_file: "/data/private_key",
  21. smtp_options: MailOptions {
  22. enable_password_reset: true,
  23. from: Some(
  24. Mailbox {
  25. name: None,
  26. email: Address {
  27. serialized: "[email protected]",
  28. at_start: 5,
  29. },
  30. },
  31. ),
  32. reply_to: None,
  33. server: "smtp.mailbox.org",
  34. port: 587,
  35. password: ***SECRET***,
  36. smtp_encryption: StartTls,
  37. tls_required: None,
  38. },
  39. ldaps_options: LdapsOptions {
  40. enabled: false,
  41. port: 6360,
  42. cert_file: "cert.pem",
  43. key_file: "key.pem",
  44. },
  45. http_url: "https://lldap.domain.com",
  46. server_setup: None,
  47. }
  48. 2023-05-22T00:07:06.891797366+00:00 INFO set_up_server [ 3.60ms | 51.84% / 100.00% ]
  49. 2023-05-22T00:07:06.891805230+00:00 INFO ┝━ i [info]: Starting LLDAP version 0.4.3
  50. 2023-05-22T00:07:06.895366312+00:00 DEBUG ┝━ get_schema_version [ 94.9µs | 2.64% ]
  51. 2023-05-22T00:07:06.895687344+00:00 DEBUG │ ┕━ 🐛 [debug]: | return: Some(SchemaVersion(3))
  52. 2023-05-22T00:07:06.895704757+00:00 DEBUG ┝━ list_groups [ 1.27ms | 35.31% ]
  53. 2023-05-22T00:07:06.895707739+00:00 DEBUG │ ┝━ 🐛 [debug]: | filters: Some(DisplayName("lldap_admin"))
  54. 2023-05-22T00:07:06.899756581+00:00 DEBUG │ ┕━ 🐛 [debug]: | return: [Group { id: GroupId(1), display_name: "lldap_admin", creation_date: 2023-05-14T18:26:07.653122, uuid: Uuid("fedac761-3714-3771-8ea9-e64d5115e86d"), users: [UserId("kevin"), UserId("admin")] }]
  55. 2023-05-22T00:07:06.899759290+00:00 DEBUG ┝━ list_groups [ 147µs | 4.09% ]
  56. 2023-05-22T00:07:06.899760918+00:00 DEBUG │ ┝━ 🐛 [debug]: | filters: Some(DisplayName("lldap_password_manager"))
  57. 2023-05-22T00:07:06.900842917+00:00 DEBUG │ ┕━ 🐛 [debug]: | return: [Group { id: GroupId(2), display_name: "lldap_password_manager", creation_date: 2023-05-14T18:26:07.656991, uuid: Uuid("a22d977f-fc9e-3541-8f2c-6eae3eb6a319"), users: [UserId("gwen"), UserId("kevin"), UserId("admin")] }]
  58. 2023-05-22T00:07:06.900845035+00:00 DEBUG ┝━ list_groups [ 102µs | 2.82% ]
  59. 2023-05-22T00:07:06.900846364+00:00 DEBUG │ ┝━ 🐛 [debug]: | filters: Some(DisplayName("lldap_strict_readonly"))
  60. 2023-05-22T00:07:06.901181331+00:00 DEBUG │ ┕━ 🐛 [debug]: | return: [Group { id: GroupId(3), display_name: "lldap_strict_readonly", creation_date: 2023-05-14T18:26:07.660290, uuid: Uuid("28f42b6a-1e7a-3656-b4c9-05df34f32568"), users: [UserId("roku")] }]
  61. 2023-05-22T00:07:06.901186035+00:00 DEBUG ┝━ get_user_details [ 66.3µs | 1.84% ]
  62. 2023-05-22T00:07:06.901189134+00:00 DEBUG │ ┝━ 🐛 [debug]: | user_id: UserId("admin")
  63. 2023-05-22T00:07:06.901361596+00:00 DEBUG │ ┕━ 🐛 [debug]: | return: Ok(User { user_id: UserId("admin"), email: "null@localhost", display_name: None, first_name: None, last_name: None, avatar: None, creation_date: 2023-05-16T02:23:11.025567, uuid: Uuid("6897ff8c-4a49-39e7-8de4-5358cfff0473") })
  64. 2023-05-22T00:07:06.901513461+00:00 INFO ┝━ i [info]: Starting the LDAP server on port 3890
  65. 2023-05-22T00:07:06.901984561+00:00 DEBUG ┝━ get_jwt_blacklist [ 52.4µs | 1.45% ]
  66. 2023-05-22T00:07:06.902155892+00:00 INFO ┕━ i [info]: Starting the API/web server on port 17170
  67. 2023-05-22T00:07:06.902215702+00:00 INFO i [info]: starting 1 workers
  68. 2023-05-22T00:07:06.902222157+00:00 INFO i [info]: Actix runtime found; starting in Actix runtime
  69. 2023-05-22T00:07:06.902618900+00:00 INFO i [info]: DB Cleanup Cron started
  70. 2023-05-22T00:07:36.931915832+00:00 INFO HTTP request [ 9.09µs | 100.00% ]
  71. 2023-05-22T00:07:36.931916887+00:00 INFO ┝━ i [info]: | uri: /health
  72. 2023-05-22T00:07:36.931925837+00:00 INFO ┕━ i [info]: | status_code: 200
  73. 2023-05-22T00:07:36.931784260+00:00 INFO LDAP session [ 103µs | 32.53% / 100.00% ]
  74. 2023-05-22T00:07:36.931819865+00:00 INFO ┕━ LDAP request [ 69.6µs | 67.47% ]
  75. 2023-05-22T00:07:36.931828512+00:00 DEBUG ┝━ 🐛 [debug]: | msg: LdapMsg { msgid: 0, op: SearchRequest(LdapSearchRequest { base: "", scope: Base, aliases: Never, sizelimit: 0, timelimit: 0, typesonly: false, filter: Present("objectClass"), attrs: ["supportedExtension"] }), ctrl: [] }
  76. 2023-05-22T00:07:36.931831183+00:00 DEBUG ┝━ 🐛 [debug]: rootDSE request
  77. 2023-05-22T00:07:36.931849702+00:00 DEBUG ┝━ 🐛 [debug]: | response: SearchResultEntry(LdapSearchResultEntry { dn: "", attributes: [LdapPartialAttribute { atype: "objectClass", vals: [[116, 111, 112]] }, LdapPartialAttribute { atype: "vendorName", vals: [[76, 76, 68, 65, 80]] }, LdapPartialAttribute { atype: "vendorVersion", vals: [[108, 108, 100, 97, 112, 95, 48, 46, 52, 46, 51]] }, LdapPartialAttribute { atype: "supportedLDAPVersion", vals: [[51]] }, LdapPartialAttribute { atype: "supportedExtension", vals: [[49, 46, 51, 46, 54, 46, 49, 46, 52, 46, 49, 46, 52, 50, 48, 51, 46, 49, 46, 49, 49, 46, 49]] }, LdapPartialAttribute { atype: "supportedControl", vals: [] }, LdapPartialAttribute { atype: "supportedFeatures", vals: [[49, 46, 51, 46, 54, 46, 49, 46, 52, 46, 49, 46, 52, 50, 48, 51, 46, 49, 46, 53, 46, 49]] }, LdapPartialAttribute { atype: "defaultNamingContext", vals: [[100, 99, 61, 115, 108, 97, 100, 110, 101, 116, 44, 100, 99, 61, 120, 121, 122]] }, LdapPartialAttribute { atype: "namingContexts", vals: [[100, 99, 61, 115, 108, 97, 100, 110, 101, 116, 44, 100, 99, 61, 120, 121, 122]] }, LdapPartialAttribute { atype: "isGlobalCatalogReady", vals: [[102, 97, 108, 115, 101]] }] })
  78. 2023-05-22T00:07:36.931883459+00:00 DEBUG ┕━ 🐛 [debug]: | response: SearchResultDone(LdapResult { code: Success, matcheddn: "", message: "", referral: [] })
  79. 2023-05-22T00:07:43.178336160+00:00 INFO LDAP session [ 35.3ms | 0.12% / 100.00% ]
  80. 2023-05-22T00:07:43.178355178+00:00 INFO ┕━ LDAP request [ 35.3ms | 0.25% / 99.88% ]
  81. 2023-05-22T00:07:43.178363873+00:00 DEBUG ┝━ 🐛 [debug]: | msg: LdapMsg { msgid: 1, op: BindRequest(LdapBindRequest { dn: "cn=admin,ou=people,dc=sladnet,dc=xyz", cred: Simple("********") }), ctrl: [] }
  82. 2023-05-22T00:07:43.178366821+00:00 DEBUG ┝━ do_bind [ 35.2ms | 0.04% / 99.63% ]
  83. 2023-05-22T00:07:43.178369969+00:00 DEBUG │ ┝━ 🐛 [debug]: DN: cn=admin,ou=people,dc=domain,dc=com
  84. 2023-05-22T00:07:43.178375756+00:00 DEBUG │ ┕━ bind [ 35.2ms | 0.06% / 99.59% ]
  85. 2023-05-22T00:07:43.178383163+00:00 DEBUG │ ┝━ get_password_file_for_user [ 148µs | 0.42% ]
  86. 2023-05-22T00:07:43.178734549+00:00 DEBUG │ ┝━ passwords_match [ 35.0ms | 99.12% ]
  87. 2023-05-22T00:07:43.213760639+00:00 ERROR │ │ ┕━ 🚨 [error]: | error: Authentication protocol error for `Protocol error: `This error results from an error during password verification``
  88. 2023-05-22T00:07:43.213768511+00:00 DEBUG │ ┝━ 🐛 [debug]: Invalid password for "admin": Authentication protocol error for `Protocol error: `This error results from an error during password verification``
  89. 2023-05-22T00:07:43.213770440+00:00 ERROR │ ┕━ 🚨 [error]: | error: Authentication error: ` for user 'admin'`
  90. 2023-05-22T00:07:43.213780927+00:00 DEBUG ┕━ 🐛 [debug]: | response: BindResponse(LdapBindResponse { res: LdapResult { code: InvalidCredentials, matcheddn: "", message: "", referral: [] }, saslcreds: None })
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement