Questions tagged [md5]

43 questions
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
2 answers

Prompt server for Etag or MD5

We are a price comparison portal and crawl certain websites on a regular basis. I am looking for a method to save bandwidth by avoiding downloading the same page over and over again if the content did not change and instead make only a head request.…
Radu M.
  • 139
  • 6
0
votes
2 answers

How can I ensure non-corrupt file transfer in linux?

I have script scheduled with cron that transfers a file around to other machines using scp filename user@host:~ and today have noticed that sometimes the md5 of the files don't match. Upon closer inspection it seems the file is corrupt. My question…
James
  • 325
  • 2
  • 11
  • 22
0
votes
2 answers

HOw to know if files md5 chnaged by virus or system itself centos

I installed OSSSEC to very files have chnaged or not. But sometimes it is giving me false waring and integrity checksums like following files have chnaged. How can i makesure that files are chnaged system not by virus itslef. It is very…
John
0
votes
3 answers

Puppet - MD5 sum of string

I would like to name a file based on a MD5 sum of certain characters. Such as $environment and $URL. So from a high-level what I'd want is something like md5("http://$environment/$url"). Does anyone know how I get make this happen? Is there a built…
dartarrow
  • 1
  • 3
0
votes
1 answer

check MD5 checksums from md5 file in Windows

Hopefully a simple question, does a simple Windows command line equivalent to md5sum --check [files.md5] exist? Alternatively, something I can script as a batch file. I can generate the hashes file fine, but it's the check at the destination,…
16shells
  • 1
  • 3
0
votes
1 answer

Linux md5 checksum issue

I have a directory in which thousands of directories are present. I need to get md5sum of only around 60 directories from this list of thousands of directories. How do I selectively run the md5 on a selective set of directories. I know the below…
0
votes
1 answer

NGINX secure_link returning 403

I´m using the following serve block to serve some mp4 files using NGINX secure link. server { listen 80; listen [::]:80; root /var/www/cdn; index index.html index.php index.htm index.nginx-debian.html; …
Paul Mark
  • 1
  • 1
0
votes
2 answers

Ubuntu - Is there any programme for MD5 rainbowtables on Ubuntu?

I've been reading about Rainbow Tables recently. There's a few webpages that will do a reverse look up for an MD5 hash. Is there any programme on Ubuntu that lets me do this? Is there something in Ubuntu that will let me generate my own rainbow…
Amandasaurus
  • 31,471
  • 65
  • 192
  • 253
0
votes
1 answer

Removing old files from home directories

I need to find and remove files older than 2 weeks from the home directories of my cluster. I do not want to let people just "touch" the file to change the modification date and keep it for another 2 weeks. (I'm talking about files of several…
David
  • 1
  • 1
0
votes
1 answer

Compute and update the md5 hash after the fact

So... I just realized that the utility I’ve been using to upload data to azure blobs has only been setting content-md5 hashes for the small files, leaving the larger (more important) files without a hash. What is the best way to compute and update…
-1
votes
1 answer

MD5 for Git's git-credential-osxkeychain executable?

This question copied over from Super-User, where it was apparently unwelcome. Anyway, asked and answered: I'm setting up a GitHub account and have downloaded Git's git-credential-osxkeychain executable via the Password Caching section of GitHub's…
QED
  • 123
  • 4
-2
votes
1 answer

Understanding linux /etc/shadow file structure (Linux)

Consider the following line taken from /etc/shadow file: root:$1$NFEf74q.$bmukkxAq9dOMJINgEtP7u0:15258:0::::: From this I understand that the hashing algorithm is md5 ($1) and starting from third $ sign is the hashed password consisting of 22…
astralmaster
  • 109
  • 5
1 2
3