Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #60484
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <ycui@outlook.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.162 |
| X-Spam-Level | * |
| X-Spam-Evidence | '*H*': 0.68; '*S*': 0.00; 'subject:Python': 0.06; 'assuming': 0.09; 'python': 0.11; 'url:download': 0.12; 'hashes': 0.16; 'md5': 0.16; 'operation.': 0.16; 'url:how': 0.16; ':-)': 0.16; 'wrote:': 0.18; 'value.': 0.19; '+0000': 0.22; 'to:name :python-list@python.org': 0.22; 'this?': 0.23; 'url:home': 0.24; 'mon,': 0.24; "i've": 0.25; 'script': 0.25; '>': 0.26; 'right.': 0.26; 'header:In-Reply-To:1': 0.27; "doesn't": 0.30; 'said,': 0.30; "i'm": 0.30; 'url:mailman': 0.30; 'program,': 0.31; 'code': 0.31; 'commonly': 0.31; 'steven': 0.31; 'them?': 0.31; 'anyone': 0.31; 'url:python': 0.33; 'date:': 0.34; 'subject:with': 0.35; 'tool': 0.35; 'but': 0.35; 'url:listinfo': 0.36; "i'll": 0.36; 'possible': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'searching': 0.37; 'email addr:python.org': 0.37; 'project': 0.37; 'nov': 0.38; 'same.': 0.38; 'to:addr:python-list': 0.38; 'received:65.54': 0.38; 'received:65.54.190': 0.38; 'received:bay0.hotmail.com': 0.38; 'does': 0.39; 'subject:': 0.39; 'to:addr:python.org': 0.39; 'url:mail': 0.40; 'how': 0.40; 'skip:u 10': 0.60; 'course.': 0.60; 'most': 0.60; 'browser': 0.61; 'here:': 0.62; 'save': 0.62; 'address': 0.63; 'information': 0.63; 're:': 0.63; 'more': 0.64; 'school': 0.64; 'taking': 0.65; 'email name:python-list': 0.65; 'situation': 0.65; 'reverse': 0.68; 'collision': 0.84; 'email name:steve': 0.84; 'heh.': 0.84; 'technically': 0.84; 'browse': 0.95; '2013': 0.98 |
| X-TMN | [aXBJXA1hzG7rWcWtypPn2p9ma1fOAfON] |
| X-Originating-Email | [ycui@outlook.com] |
| Content-Type | multipart/alternative; boundary="_b1dfdfa0-e1eb-462d-9d6f-a6538bf0af85_" |
| From | Frank Cui <ycui@outlook.com> |
| To | "python-list@python.org" <python-list@python.org> |
| Subject | RE: Cracking hashes with Python |
| Date | Mon, 25 Nov 2013 23:46:09 -0300 |
| Importance | Normal |
| In-Reply-To | <52940dbe$0$11089$c3e8da3@news.astraweb.com> |
| References | <52940dbe$0$11089$c3e8da3@news.astraweb.com> |
| MIME-Version | 1.0 |
| X-OriginalArrivalTime | 26 Nov 2013 03:16:10.0047 (UTC) FILETIME=[DA9264F0:01CEEA55] |
| X-Mailman-Approved-At | Tue, 26 Nov 2013 05:06:27 +0100 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3215.1385438789.18130.python-list@python.org> (permalink) |
| Lines | 112 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1385438789 news.xs4all.nl 15863 [2001:888:2000:d::a6]:58919 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:60484 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
Hi, I'm assuming you are taking a computer/network security course. Md5 hashing operation is designed to be mathematically unidirectional, you can only attempt to find a collision situation but it's technically impossible to reverse the operation. With that said, it's possible to "crack" or "decrypt" a md5 hash value by searching through a value-hash database to find the most commonly used password under a given hash value. You can see the tool at http://www.md5crack.com/home. Yatong > From: steve@pearwood.info > Subject: Re: Cracking hashes with Python > Date: Tue, 26 Nov 2013 02:55:58 +0000 > To: python-list@python.org > > On Mon, 25 Nov 2013 15:32:41 -0800, TheRandomPast wrote: > > > Hi, > > > > I have a school project to do where I've to download MD5 Hashes from a > > particular website and write a code that will crack them. > > A school project. Right. Heh. :-) > > And which website's hashes would this be? > > > > Does anyone > > know where I'll find out more information on how to do this? There's > > only 4 hashes that I need to do so it doesn't have to be a large script > > just needs to be able to download the hashes from the website. Can > > anyone help me out? > > The size of the script has nothing to do with the number of hashes you > have to crack. Whether it is one hash and one million, the script will be > exactly the same. > > Do you have to write a program to download the hashes, or can you just > browse to the web address with your browser and save them? > > If you have to write your own program, start here: > > https://duckduckgo.com/?q=python+how+to+download+data+from+the+web > > > -- > Steven > -- > https://mail.python.org/mailman/listinfo/python-list
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Cracking hashes with Python TheRandomPast <wishingforsam@gmail.com> - 2013-11-25 15:32 -0800
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-26 10:47 +1100
Re: Cracking hashes with Python TheRandomPast <wishingforsam@gmail.com> - 2013-11-25 16:01 -0800
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-26 11:19 +1100
Re: Cracking hashes with Python Steven D'Aprano <steve@pearwood.info> - 2013-11-26 02:55 +0000
RE: Cracking hashes with Python Frank Cui <ycui@outlook.com> - 2013-11-25 23:46 -0300
Re: Cracking hashes with Python TheRandomPast <wishingforsam@gmail.com> - 2013-11-26 02:30 -0800
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-26 21:39 +1100
Re: Cracking hashes with Python "TheRandomPast ." <wishingforsam@gmail.com> - 2013-11-26 11:46 +0000
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-26 23:48 +1100
Re: Cracking hashes with Python Robert Kern <robert.kern@gmail.com> - 2013-11-26 13:00 +0000
Re: Cracking hashes with Python "TheRandomPast ." <wishingforsam@gmail.com> - 2013-11-26 14:18 +0000
Re: Cracking hashes with Python Denis McMahon <denismfmcmahon@gmail.com> - 2013-11-26 18:33 +0000
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-27 01:46 +1100
Re: Cracking hashes with Python "TheRandomPast ." <wishingforsam@gmail.com> - 2013-11-26 15:13 +0000
Re: Cracking hashes with Python Denis McMahon <denismfmcmahon@gmail.com> - 2013-11-26 18:17 +0000
Re: Cracking hashes with Python "TheRandomPast ." <wishingforsam@gmail.com> - 2013-11-26 23:06 +0000
Re: Cracking hashes with Python Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-11-27 01:04 +0000
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-27 13:28 +1100
Re: Cracking hashes with Python Tim Delaney <timothy.c.delaney@gmail.com> - 2013-11-27 13:55 +1100
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-27 13:58 +1100
Re: Cracking hashes with Python "TheRandomPast ." <wishingforsam@gmail.com> - 2013-11-27 12:40 +0000
Re: Cracking hashes with Python Denis McMahon <denismfmcmahon@gmail.com> - 2013-11-27 21:18 +0000
Re: Cracking hashes with Python Chris Angelico <rosuav@gmail.com> - 2013-11-28 00:27 +1100
Re: Cracking hashes with Python MRAB <python@mrabarnett.plus.com> - 2013-11-27 17:44 +0000
csiph-web