webblock netsupport
you have to make yourself admin, depending on if you use a Windows or a mac. If you are using a mac, click here, for Windows, I’ll try to find it for you
and after your done, go into Profile management or something like that and disable Parental Controls. For a Windows, I think all you have to do is this.
MD5 is a type of encryption method that produces a 16 byte hash value, it is used to secure data so people don’t know what it is but there are quite a few MD5decryptors out there on the internet, so it’s not really that secure. All you have to know is that it’s an encryption method to secure strings of words.
11 years ago | edited 11 years ago
0
ENTER THE TEXT TO CREATE A MD5 HASH OF THE TEXT
<?php error_reporting(0); // Some popular password hashes // NAME MD5 HASH // letmein = 0d107d09f5bbe40cade3de5c71e9e9b7 // password = 5f4dcc3b5aa765d61d8327deb882cf99 // admin = 21232f297a57a5a743894a0e4a801fc3 // asdfg = 040b7cf4a55014e185813e0644502ea9 // qwerty = d8578edf8458ce06fbc5bb76a58c5ca4 // fred = 570a90bfbf8c7eab5dc5d4e26832d5b1 // timelord = 17ea970ba1f6e5426e9636fb434d1055 // 1234567890 = e807f1fcf82d132f9bb018ca6738a19f // what is this hash? adc8fc4ceae4159e56c2cd05c68d91cc echo "
"; $str = $_POST["md5hash"]; echo ('This is the MD5 Hash for
'.$str); echo "
"; echo md5($str); ?>
if you are using a webserver just include it as part of your website in your resources and update your site. There might be a way to just upload the php but I don’t know
11 years ago
0
Oh forgot to mention: MD5 means a 128-bit encryption algorithm, generating a 32-character hexadecimal hash.
11 years ago | edited 11 years ago
0
If you don’t have a server and are on windows or Linux you can use xxamp as an apache server. Go to this address and get the one you need. SOFTWARE HERE You can then run it on your localhost or 127.0.0.1 which is much the same. OK? And it is that simple to create a MD5 HASH. :) To decrypt it is much harder! :) If you upload it to a server make sure you save it as MD5.php and not md5.php they are not the same. :)
well ANORA, it seems to me that there are online MD5 decryptors, so do they just run off of known hashes to the server or do they actually decrypt it? I’ve always wondered that and wanted to clear that up
11 years ago | edited 11 years ago
0
The MD5 online so called decrypters use a database of known MD5 hashes you can use a program like jkain to decrypt some simple passwords but to decrypt a MD5 or a sha1 or any other hash like, md2, md4, sha256 is encrypted in much the same way but the decryption of a unique password that someone has never used before say something like : qw12er34ty56 would produce a hash of: aeb1efb4b886ef03a9d34b255c9e543c now to decrypt that would take a long time if you could decrypt it. :)
11 years ago | edited 11 years ago
0
Forgot to mention: If you need a FREE server you can get one here at no cost at all. : FREE WEBHOSTING HERE
11 years ago
0
Another point in case you are interested in hashes: Here is a MD5 hash for hello = 5d41402abc4b2a76b9719d911017c592
And here is the same word hello but as a sha1 hash :aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
A lot of difference. Saying that the SHA256 Hash is even more secure than these. Because a
SHA-256 Hash is a cryptographic (one-way) hash function , so there is no direct way to decode it.
The entire purpose of a cryptographic hash function is that you can’t undo it.