similar to: Encoding problem with the unicodePwd stored into sam.ldb

Displaying 20 results from an estimated 600 matches similar to: "Encoding problem with the unicodePwd stored into sam.ldb"

2019 Mar 28
0
Encoding problem with the unicodePwd stored into sam.ldb
On Thu, 28 Mar 2019 21:05:57 +0100 jean-yves boisiaud via samba <samba at lists.samba.org> wrote: > hello, > > I use Samba 4.9.5 on Linux Debian 9. > > I want to extract users' passwords. A lot of passwords are ok, some > are not. > > Example with a password returning an error : > # ldbsearch -H /var/lib/samba/private/sam.ldb '(primaryGroupID=513)'
2017 Apr 09
6
Samba 4 account with a 'ldbmodify-ed' password does not login into domain from a Windows 7 VM
Citando Andrew Bartlett <abartlet at samba.org>: > On Fri, 2017-04-07 at 20:32 +0000, Leonardo Bruno Lopes via samba > wrote: >> Hi everyone! >> >> I have a LDAP with all my users' accounts, each one with the >> sambaNTPassaword correctly defined. I also have a freshly installed >> Samba >> 4.2 running on a Debian 8.7 box. >> >> I
2015 Jun 30
2
how is the sha fingerprint generated?
You really don't need openssl for that. And the fingerprints are simple. Here is a python script that do the same as ssh-keygen -fl /path/to/key : #!/usr/bin/env python3 import binascii import hashlib import sys if __name__ == "__main__": key = binascii.a2b_base64(sys.argv[1]) if sys.argv[2] == "md5": m = hashlib.new("md5")
2015 Apr 14
2
Registering Windows 2012 impossible into samba4 after migration
hello, We've just migrated our samba PDC v3.4.5 (FreeBSD) to samba v4.1.17 (Debian wheezy) with samba4 classic upgrade. Most of the stations works fine. When I try to register a Windows 2012 as a member into the new Samba AD, Windows 2012 says it cannot authenticate the user used for registering the new host into the domain. Of course, this user have admin privileges into the AD target
2015 Apr 15
1
Registering Windows 2012 impossible into samba4 after migration
hello, our new samba4 is an ADS. The domain format is like samdom.example.com. 2015-04-15 7:56 GMT+02:00 Daniel M?ller <mueller at tropenklinik.de>: > Hello again, > waht kind of domain ? nt-style? Or ads? > As I can tell I could not register a windows 2012 Server in an nt-style > domain with xxx.yyy domain name. > > Greetings > Daniel > > > EDV Daniel
2017 Jun 20
2
How to remove duplicate zone names in Samba AD DNS
hello, I have thousands of DNS entries like BA15-1073 CNF:058373e2-f784-458f-8c7b-fbf76fa25694 in my Samba AD. I know that these records are conflicts between AD DC synchronisation, and that I can remove it safely. When I list the DNS with the command samba-tool dns query localhost DOMAIN @ ALL it appears that there is a \n between the host name (BA15-1073) and the rest of the name
2023 Jan 05
1
Directly setting unicodePwd - better type of hash?
On 05/01/2023 10:13, Edward Graham via samba wrote: > Hi, > > we sync our password from other system by directly setting unicodePwd in samba database file. We would like to drop the insecure hash stored in other system and replace it with something newer and more robust. > > Documentation on page
2023 Jan 05
3
Directly setting unicodePwd - better type of hash?
Hi, we sync our password from other system by directly setting unicodePwd in samba database file. We would like to drop the insecure hash stored in other system and replace it with something newer and more robust. Documentation on page https://samba.tranquil.it/doc/en/samba_fundamentals/about_password_hash.html#propagating-a-password-change-from-samba-ad-to-an-openldap says "It is now
2023 Jan 05
1
Directly setting unicodePwd - better type of hash?
It works for us without problems. We would like to improve security though, so I'm looking for information whether it's possible to use different hash in samba. ________________________________ Od: samba <samba-bounces at lists.samba.org> za u?ivatele Rowland Penny via samba <samba at lists.samba.org> Odesl?no: ?tvrtek 5. ledna 2023 12:15 Komu: samba at lists.samba.org
2023 Jan 06
1
Directly setting unicodePwd - better type of hash?
No, I would (probably) not, but I consider samba better product and with it's open nature more versatile. Anyway, thank you for clarification. ________________________________ Od: samba <samba-bounces at lists.samba.org> za u?ivatele Rowland Penny via samba <samba at lists.samba.org> Odesl?no: ?tvrtek 5. ledna 2023 14:12 Komu: samba at lists.samba.org <samba at
2009 Feb 25
1
Samba4: programmatic account creation via LDAP (unicodePwd)
Hello, I've started working with samba4-alpha6. I've been successful in setting up an AD with an openldap backend. I'm now shifting my focus to how I would go about migrating to a samba4 setup from a microsoft AD implementation. To that end I've written a perl script that uses Net::LDAP to create users in the samba4 LDAP backend. I can create the user in such a way that samba4
2016 Oct 26
2
samba-tool user getpassword --decrypt-samba-gpg
Hello, I'm looking to use the new 'samba-tool user getpassword' or 'samba-tool user syncpasswords' for syncing to an OpenLDAP server. I've configured the 'password hash gpg key ids' in smb.conf. Everything appears to be working fine, except the plaintext passwords returned from samba-tool user getpassword --decrypt-samba-gpg are different. Do the returned values
2023 Jan 05
1
Directly setting unicodePwd - better type of hash?
On 05/01/2023 12:18, Edward Graham via samba wrote: > It works for us without problems. We would like to improve security though, so I'm looking for information whether it's possible to use different hash in samba. No, would you ask this question about Microsoft AD ? Rowland
2016 Feb 03
2
Python hashlib and ripemd160
Hi - I think the patent monster has struck again. rmd = hashlib.new('ripemd160',binascii.unhexlify(someString)).hexdigest() That fails - ValueError: unsupported hash type From some googling, it appears that the supported hash types are from OpenSSL and that means the OpenSSL in CentOS doesn't support ripemd160. I've worked around other stuff missing from CentOS OpenSSL by
2010 Apr 06
2
Authenticating against ActiveDirectory - can't read userPassword/unicodePwd?
Hello list, So, the application I am working on right now needs to have LDAP authentication build in, meaning that if the user enabled it, we will query about his basic data (email,pwd) on a user-setup LDAP directory. It used to work fine when I was testing with OpenLDAP. The code, essentially, is this: connection.bind(self.bind_dn,self.password)
2016 Feb 03
1
Python hashlib and ripemd160
okay it appears there are no suspect patent issues with ripemd160 so either they just didn't include it for some other reason or the issue is elsewhere. On 02/03/2016 03:00 AM, Eero Volotinen wrote: > well, how about compiling instance to another directory like > /opt/python-alternative? > > usually works like ./configure --prefix=/opt/python-alternative and then > other
2005 Dec 08
2
Samba and Soliworks
hello, I have a problem with the CAD software SolidWorks (2006 rc2.0 and rc0.0) and Samba (3.0.14a on Debian Gnu/Linux 3.1 Sarge (stable). There are several stations running Windows XP and SolidWorks. Before the migration (from Windows XP server), the application was running ok. The problem is while opening new files, I have messages like "connection to file has been lost...",
2013 Apr 02
1
Rpy2 and Mac OS X 10.8.3
I am having a strange problem. I have been using python + rpy2 on my Mac for quite sometime now. I recently upgraded to OS X 10.8 from 10.6 and that's when the problem began. Now, when I try to load some R packages (like zoo) using robjects.r, python crashes with seg fault 11. Here's an example below: >> import rpy2.robjects as ro >> ro.r(''' library(zoo)
2013 Apr 02
1
Rpy2 and Mac OS X 10.8.3
I am having a strange problem. I have been using python + rpy2 on my Mac for quite sometime now. I recently upgraded to OS X 10.8 from 10.6 and that's when the problem began. Now, when I try to load some R packages (like zoo) using robjects.r, python crashes with seg fault 11. Here's an example below: >> import rpy2.robjects as ro >> ro.r(''' library(zoo)
2018 Mar 22
4
Google Cloud Directory Service password synchronization for AD DC
I'm trying to have my Samba 4 AD DC users mapped and synchronized with google apps for education accounts. I would like to start from the native windows password update procedure to eventually update the google apps password (actually, I think only some types of hashes are stored). Google actually provides a tool to synchronize user accounts and profiles which works juste fine. This tools