Questions tagged [hash]

114 questions
0
votes
1 answer

update mysql passwords to new hash format without knowing the original passwords

I have a user who updated his sql connector to 6.6.5 and not he cannot run his code due to the passwords being hashed in the older format (pre 4.1?). I would like to update all of the mysql accounts to the newer format unfortunately I do not know…
user160910
0
votes
1 answer

Tools for compare huge number of files in two different server

I have question. Have you ever use any tools that can fast compare the identical of huge number of files (let's say thousands files with total size up to 15 GB) in two different windows 2003 server? I want to make a test see if our backup tools are…
ronin
  • 121
  • 3
  • 9
0
votes
1 answer

puppet manifest usage with hash

I'm struggling to get this to work and don't understand where I'm going wrong, can someone please guide me on how to correct? Basically I want to get an array in my nodes.pp, which is then used by my templates file by cycling through it and writing…
Dan
  • 367
  • 3
  • 4
  • 16
0
votes
1 answer

Use of hash in defined type for puppet

I'm trying to use a hash for the first time in puppet, so in my nodes.pp I'm going to use this: node test1.example.com { netset::int::vconf {"servers" : label1 => { 'comment' => 'VIP Test1', 'ipaddress' => '192.168.1.10', 'netmask' =>…
Dan
  • 367
  • 3
  • 4
  • 16
0
votes
3 answers

Monitoring folder diffs across servers with zabbix

Problem: I want to make sure that a certain folder is equal regarding it's contents across my servers. I do not want an automatic filesync to keep them equal, changing is done manually. My initial thought was to once a day calculate some crc/hash on…
Marcus
  • 125
  • 1
  • 6
0
votes
1 answer

Is it possible to store Hashed data in a different field than userPassword in LDAP

I've been asked to store hashed data in a LDAP server. Putting hashed passwords is easy but I'm not sure if LDAP allows to store data like email hashed or even encrypted. Creating a LDIF file with a string "{MD5}contents" gives me no errors but I…
F3RD3F
  • 155
  • 1
  • 1
  • 6
0
votes
2 answers

Change password hashing algorithm for SuSE users from blowfish to MD5

I have a network of roughly 1000 SuSE machines with 20-200 users on each. The password hashing algorithm used is the default i.e. blowfish. In order to check, whether a user has used a dictionary word as the password, have written a small utility…
Amit Kumar
  • 1
  • 1
  • 1
0
votes
3 answers

Automate hashing for each file in a folder?

I have quite a few FTP folders, and I add a few each month and prefer to leave some sort of method of verifying their integrity, for example the files MD5SUMS, SHA256SUMS, ... which I could create using a script. Take for example: find ./ -type f…
Kennie R.
  • 3
  • 2
0
votes
0 answers

Nginx: could not build map_hash, you should increase map_hash_bucket_size: 64 even when its set under http (stream module used)

since I can only ask questions here but its more of a solution for other people that have this issues I hope its still fine to be posting here, I didnt know a better place since I don't own a website or anything. After updating our nginx we use with…
0
votes
0 answers

Storing Hashed Passwords for Docker and Docker Compose

What is the best way to store passwords and use them in Dockerfile and docker-compose.yaml. Can I store the secrets in a hashed format and make use of it, So that no one can read my real passwords even if they have physical access. Or else, is there…
zakadmin
  • 11
  • 1
0
votes
1 answer

PureFTPD 1.0.50 with MariaDB fails to auth, possible reason wrong hash

I am using pure-ftpd with MariaDB to auth users. After upgrade to Debian 12 Bookworm it stopped working. Debian 12 includes new pure-ftpd 1.0.50, which has introduced the following change: Support for MD5, SHA1 and the MySQL PASSWORD() function were…
oneee
  • 1
  • 1
0
votes
1 answer

Strange hash lengths in OpenLDAP

I recently went through all the hashes stored in an LDAP instance I have access to and noticed something strange that I can't explain. Despite all the hashes being marked as SSHA (which should be seeded SHA1), most hashes were 32 characters in…
MarkZ
  • 11
  • 2
0
votes
2 answers

Generate SHA256 Hash of a STRING from Windows Command Line

While this is simple to do in the *nix world, I can't come up with a solution for generating a SHA256 hash of a string from the Windows command shell (not PowerShell) without installing a 3rd party application or batch file. CertUtil works fine for…
Michael Oryl
  • 215
  • 1
  • 4
  • 11
0
votes
1 answer

PureFtpD to Proftp Password Conversion

I am planning to migrate users from pureftp to proftpd, i need a tool to perform password conversion Mysql password format- MYSQLCrypt md5 pureftp From: 9dd4e461268c8034f5c8564e155c67a6 Proftpd - To $1$64eb18f6a8f793689ad1eb1136f43ccf
0
votes
1 answer

pgcrypto and password hashing

I'm thinking about my choices regarding how to store passwords in Postgres. One such option is to use pgcrypto. Reading their docs, I see that their crypt and gen_salt functions do not use sha256 but instead use custom version of the…