kkrasnov1

Results 5 issues of kkrasnov1

Hi, I tried using several LDAP (in ldap.conf, ldaprc, LDAPURI env var) servers as described in the documentation (https://ldap2pg.readthedocs.io/en/latest/cookbook/#using-ldap-high-availability). This does not work. Debug: ``` 10:07:12 DEBUG Roles blacklist loaded....

bug

## ldap2pg.yml ``` yaml privileges: connect: - __connect__ priv_readers: - __connect__ - __select_on_tables__ - __select_on_sequences__ - __usage_on_schemas__ - __usage_on_types__ priv_writers: - priv_readers - __temporary__ - __delete_on_tables__ - __insert_on_tables__ - __truncate_on_tables__...

Hi! The following script from the code correctly detects insufficient permissions to procedures ``` WITH grants AS (SELECT pronamespace, grantee, privilege_type, array_agg(DISTINCT proname ORDER BY proname) AS procs FROM (...

Hi, I set the PostgreSQL parameter log_file_mode = '0640' and the log file's permissions are set to 664. Does the log_file_mode parameter apply to the pgauditlogtofile log file?

Hello I want to filter only users for subsearches. But the filter is not applied. ## ldap2pg.yml * ldap2pg.yml ``` - description: "Search LDAP" ldapsearch: base: CN=pg_userdb,OU=Groups,DC=example,DC=com filter: '(objectClass=Group)' scope:...