- Blue Hat SEO-Advanced SEO Tactics - http://www.BlueHatSEO.com -

Del.icio.us Captcha Cracked

Posted By Eli On March 22, 2008 @ 10:54 pm In Check Mates | 275 Comments

Here ya go. This is the del.icio.us captcha busted in Python.
376623524.png


#!/usr/bin/python
import Image,time,random,glob,re,os,sys

##$$$$
train = raw_input("train? (y/n)")
if(train == "y") : train= True
else: train = False
##
fileName = ''.join(sys.argv[1:])
def getNeighbourhood(i,width,height,pixels):
	results = []
	try:
		if(pixels[i+1] != 0): results.append(i+1)
		if(pixels[i-1] != 0): results.append(i-1)
		if(pixels[i-width] != 0): results.append(i-width)
		if(pixels[i+width] != 0): results.append(i+width)
		if(pixels[i-width+1] != 0): results.append(i-width+1)
		if(pixels[i+width+1] != 0): results.append(i+width+1)
		if(pixels[i-width-1] != 0): results.append(i-width-1)
		if(pixels[i+width-1] != 0): results.append(i+width-1)
	except:pass
	return results
now = time.time()
captcha = Image.open(fileName)
(width,height) = captcha.size
pixels = list(captcha.getdata())
i=0
for pixel in pixels:
	if (pixel == 2): pixels[i] = 0
	i+=1
toclean = []
for i in xrange(len(pixels)):
	neighbourhood = getNeighbourhood(i,width,height,pixels)
	if (len(neighbourhood) < 4) : 	pixels[i] = 0

captcha.putdata(pixels)
started=False
lowestY,highestY,count = 0,10000,0
captchas = []
slant = 15
for x in xrange(width):
	hasBlack = False
	for y in xrange(height):
		thisPixel = captcha.getpixel((x,y))
		if(thisPixel != 0):
			if(started == False):
				started=True
				firstX = x
				firstY = y
			else:
				lastX = x
			if(y > lowestY): lowestY = y
			if(y< highestY): highestY = y
			hasBlack = True
	if((hasBlack == False) and (started==True)):
		if((lowestY - highestY) > 4):
			croppingBox = (firstX,highestY,lastX,lowestY)
			newCaptcha = captcha.crop(croppingBox)
			if(train):
				text = raw_input(”char:n”)
				try: os.mkdir(”/home/dbyte/deliciousImages/” + text)
				except:pass
				text__ = “/home/dbyte/deliciousImages/” + text + “/” + str(random.randint(1,100000)) + “-.png”
				newCaptcha.resize((20,30)).save(text__)
				text_ = “/home/dbyte/deliciousImages/” + text + “/” + str(random.randint(1,100000)) + “-.png”
				newCaptcha.resize((20,30)).rotate(slant).save(text_)
				text_ = “/home/dbyte/deliciousImages/” + text + “/” + str(random.randint(1,100000)) + “-.png”
				newCaptcha.resize((20,30)).rotate(360 - slant).save(text_)
				captchas.append(Image.open(text__))
			else:
				#text = str(count)
				#text = “tmp-delicious-” + text + “.png”
				#newCaptcha.save(text)
				captchas.append(newCaptcha.resize((20,30)))

			started=False
			lowestY,highestY = 0,10000
			count +=1
if(train == False):

	imageFolders = os.listdir(”/home/dbyte/deliciousImages/”)
	images =[]
	for imageFolder in imageFolders:
		imageFiles = glob.glob(”/home/dbyte/deliciousImages/” + imageFolder + “/*.png”)
		for imageFile in imageFiles:
			pixels = list(Image.open(imageFile).getdata())
			for i in xrange(len(pixels)):
				if pixels[i] != 0: pixels[i] = 1
			images.append((pixels,imageFolder))

	crackedString = “”
	for captcha in captchas:
		bestSum,bestChar = 0,”"
		captchaPixels = list(captcha.getdata())
		for i in xrange(len(captchaPixels)):
			if captchaPixels[i] != 0: captchaPixels[i] = 1
		for imageAll in images:
			thisSum = 0
			pixels = imageAll[0]
			for i in xrange(len(captchaPixels)):
				try:
					if(captchaPixels[i] == pixels[i]): thisSum+=1
				except: pass
			if(thisSum > bestSum):
				bestSum = thisSum
				bestChar = imageAll[1]
		crackedString += bestChar
	print crackedString
	#print “time taken: ” + str(time.time() - now)

275 Comments To "Del.icio.us Captcha Cracked"

#1 Comment By busin3ss On March 23, 2008 @ 12:58 am

You are really in war against that dude…

#2 Comment By highqualitydirectory.com On March 23, 2008 @ 1:02 am

hahah this keeps getting better and better. Get em eli. lol

#3 Comment By kamo On March 23, 2008 @ 1:25 am

nice man…those retards can’t evolve so they have to keep bitchin’

this is your code? it’s very neat, i might add.

#4 Comment By Ivo On March 23, 2008 @ 5:39 am

LOL :)

I’m glad your site is back anyway

#5 Comment By SlightlyShadySEO On March 23, 2008 @ 9:21 am

God damn it Eli… I actually use this one on my own already! argghhh.
Eh whatever. Time to evolve I guess. haha

#6 Comment By Prosperity Writer On March 23, 2008 @ 10:52 am

what a lovely piece of code, great share Eli!

#7 Comment By shesek On March 23, 2008 @ 12:18 pm

Great Eli, thanks :)
Keep it comin’!

#8 Comment By Sale On March 24, 2008 @ 2:56 am

Hi Eli!
I discovered your site just before it goes down…happy to see it’s back, anyway I spent some hours browsing Google cached results to read your past articles…very interesting.

Now, just a question on this script: what kind of parameters do I need to pass? It may be a stupid question, but I’m not a python programmer…

#9 Comment By Futon-Matt On March 24, 2008 @ 5:27 am

I think this is a little out of my league, but I think the idea is cool.

#10 Comment By vlad321 On March 24, 2008 @ 6:55 am

thanks . ssuper

#11 Comment By anty On March 24, 2008 @ 11:07 am

Some comments in the code would be nice. A short introduction what the algorithm behind this is, would be perfect :)

After a short glance I guess the solution is, that the letters are always the same (pixelwise), so you are searching for letters from the left to the right buy comparing pixels?

#12 Comment By Sanchi On March 24, 2008 @ 11:34 am

cool….

but pythone is out of my list… anyways I am eagerly waitin for something, from u r box, which i can utilize on full fledged basis…

#13 Comment By Peter On March 24, 2008 @ 1:11 pm

This is awesome - but unfortunately well out of my league at the moment - just a matter of time me hopes though! Once again Eli you have pulled some great stuff out of the bag

#14 Comment By rob On March 24, 2008 @ 1:39 pm

been waiting for this for ages. captcha is getting a joke these days. last week i have to type a 15 alpha numeric code just to submit something. i am glad this is now busted open

#15 Comment By WhiteGirl On March 24, 2008 @ 1:58 pm

Thanks for the usefull information!
I gonna write sumular using php

#16 Comment By Amit On March 25, 2008 @ 1:11 pm

Awesome post ! I wish I had some programming skills.

#17 Comment By Bavarian Souvenirs On March 25, 2008 @ 4:01 pm

Damn crazy

#18 Comment By houserocker On March 26, 2008 @ 3:54 am

Hope this will not end delicious life:)

#19 Comment By Marketing In China On March 27, 2008 @ 5:39 am

Nice to see some new posts recently. Saw all of the drama on wf. To bad it took someone going after you server, though.

Anyway, hope to see more, and the seo empire pt. 2 post soon, too.

#20 Comment By lol you suck On March 27, 2008 @ 7:15 am

lol - please learn to code.

that code reads like some shit a 12 year old fat kid hacked into his xbox controller.

#21 Comment By MisterBlogger On March 27, 2008 @ 7:36 am

lol thats great… :-)

#22 Comment By stfu & gtfo On March 27, 2008 @ 12:20 pm

aka you

#23 Comment By rent back On March 27, 2008 @ 2:30 pm

phyton is beyond me i’m afraid. even though this is a great achievement. can someone explain what evil things they would do with this?

#24 Comment By MrDVDman On March 27, 2008 @ 10:39 pm

WOW I lost my bookmarks not to long ago and Im glad i found this site again! i’m never going to lose it this time..LOl Best SEO site hands down!

#25 Comment By Bookmark Submitter On March 29, 2008 @ 7:22 am

Thanks for sharing. Comes in handy :)

#26 Comment By Festerfolien On March 29, 2008 @ 6:34 pm

Thanks for the usefull information.
Have a nice day!

#27 Comment By Kyo On March 31, 2008 @ 1:48 pm

Great post Eli, as always! No one should mess with us )))).

#28 Comment By Stefanie On April 1, 2008 @ 1:35 pm

Just when I thought the site was down and gone forever, I happen to land here and see that it’s back. I don’t know much about what you just posted, but I’m glad to see something here :)

#29 Comment By Bobbink SEO Blog On April 1, 2008 @ 2:32 pm

Thanks for sharing this code. I will use it, for sure!

#30 Comment By emp On April 3, 2008 @ 3:51 am

Seeing this in PHP would be nice.

::emp::

#31 Comment By Foto Sharing On April 3, 2008 @ 4:44 pm

Good code! Thank you.

#32 Comment By Steve On April 5, 2008 @ 7:33 am

release more captchas!! :)

#33 Comment By yato On April 6, 2008 @ 4:05 am

Seeing this in PHP would be nice.

seconded.. i don’t know sh*t about python lol

#34 Comment By Barack Obama Proxy On April 7, 2008 @ 11:16 am

couldnt help it. :) Had to start one.

#35 Comment By Forumistan On April 7, 2008 @ 3:08 pm

Wow, how can this be ?

#36 Comment By Gadgets4nowt On April 7, 2008 @ 5:02 pm

If Delicious offered you money to devise a captcha that wasn’t crackable, would you do it..and for how much?

#37 Comment By shoban On April 7, 2008 @ 10:37 pm

Nice article!!!

#38 Comment By Jagdu On April 9, 2008 @ 10:50 am

Hilarious! At least you’re making as many friends as enemies along the way. I’d second Gadgets4nowt’s questions about creating a captcha.

#39 Comment By Pay Per Install On April 10, 2008 @ 4:24 am

Well it might bring more secure captcha…

#40 Comment By Homebuilder On April 10, 2008 @ 1:56 pm

LOL! I read a little bit into the controversy that cracking captchas has caused. Some of those forum posts are pretty amusing, I like the fact that you redirected to the whitehouse.gov site to get even!

#41 Comment By Kyle On April 10, 2008 @ 11:40 pm

Thanks a lot for this - and good to see you back posting!

#42 Comment By Marco On April 11, 2008 @ 8:02 pm

Hey…
is Seo Empire part II coming soon??

#43 Comment By SEO Ranter On April 12, 2008 @ 2:46 am

Haha, thanks!

#44 Comment By Achat vetements On April 14, 2008 @ 5:08 am

That is so sneaky mr Blue Hat :)

#45 Comment By @lex On April 15, 2008 @ 1:06 am

Nice news. Thanks you!

#46 Comment By Aka On April 15, 2008 @ 1:09 am

Thanks for sharing this code. Of course, it’s good thing

#47 Comment By payday On April 15, 2008 @ 3:36 am

Cool, thanks for sharing the code.

#48 Comment By Tristan Bull On April 17, 2008 @ 1:17 am

hahah awesome sweet thanks man appreciate it ;)

#49 Comment By Empire Auto Pilot Jon On April 23, 2008 @ 10:32 am

Sweet Eli keep it up. For the win.

#50 Comment By Webmaster Money On April 23, 2008 @ 9:40 pm

That’s awesome man, keep up the good work. Going to try and dissect the code and see what I can learn.

#51 Comment By Webmaster Money On April 23, 2008 @ 9:42 pm

How long did it take you?

#52 Comment By Alvin On April 25, 2008 @ 10:42 am

How can you beat it? It’s great! You are master!

#53 Comment By MSN hacken On April 26, 2008 @ 5:25 am

Why you want to beat the captcha of Del.icio.us? What use does it have to crack the captcha

#54 Comment By Collin LaHay On April 26, 2008 @ 4:12 pm

For the people who make automated bots to join and submit links.

#55 Comment By flash developer On April 29, 2008 @ 2:06 am

I wonder if anybody could translate this into VB or C ?

#56 Comment By Red Hot Chilli Peppers On May 1, 2008 @ 2:56 am

You are very clever!

#57 Comment By Alex On May 5, 2008 @ 4:08 am

=)!Thank’s great code ! I will use it ! Continue in same direction! +1 for the post !

#58 Comment By find cheap buys On May 5, 2008 @ 5:12 am

Nice! Now i just need to convert it to PHP ;-)

#59 Comment By denisss70 On May 6, 2008 @ 5:21 am

I will try to use this code on my blog. Thanks to the author!

#60 Comment By Handy On May 6, 2008 @ 12:23 pm

Really nice but what about PHP?

#61 Comment By Harry On May 7, 2008 @ 12:11 pm

‮I can’t understand why delicious haven’t done anything about this already.

#62 Comment By abitur On May 11, 2008 @ 4:45 am

now the spamwave goes on…

#63 Comment By Niche Traffic Explosion On May 11, 2008 @ 5:13 am

Still not sure why this would be helpful. Can anyone explain, please

#64 Comment By Stefanie On May 12, 2008 @ 4:31 pm

This is a very nice post, thanks for posting about it!

#65 Comment By Geek On May 13, 2008 @ 7:55 pm

Well, I guess old good days of captcha in the past now.

#66 Comment By Norton On May 14, 2008 @ 10:23 pm

Kick as* blog, great stuff. I found another one recently that you all might enjoy (no affiliation). blackhatworld.com

#67 Comment By Ken Nickless On May 16, 2008 @ 3:55 pm

Wow, just found your blog and bookmarked it as there’s so much to read.Keep up the great work

#68 Comment By Max M On May 23, 2008 @ 12:52 am

Thank you, i use this code in future.

#69 Comment By hax0r On May 27, 2008 @ 7:58 am

This one at delicious isnt so bad to crack because:

–the letters are sharp without any garbage over them
–you can easily get rid of the background by setting an RGB threshold value
–the same rotation angle applies to all letters in the word
–the rotation angle is always 0, +15 or -15, as opposed to being completely random
–Only lowercase symbols are present. No caps or numbers. This greatly enhances the success rate.

The next one to tackle down that has most of these difficulties (randomly rotated,caps, numbers,random lines crossing and garbage over symbols..) is the captcha at digg! I’m working on it but it’s hard to obtain sharp letters because of all the line garbage.. I tried the one at delicious with my tools and it got around 50% success of guessing the captchas. Individual letter guessing success is pretty good near 88%

Based on how good your success rate for your script is, a way to improve it:
notice that no two vowels are next to each other on delicious captchas, also no two consonants either. So on top of everything you do you can check for that too. I haven’t tried that tho. keep up the good work

#70 Comment By Forumistan On June 7, 2008 @ 8:23 am

LoL, Now i just need to convert it to PHP

#71 Comment By Mendham New Jersey On June 13, 2008 @ 12:32 pm

glad your site is back! I know that I can really this.

#72 Comment By Brett On June 16, 2008 @ 10:52 am

Great post. Thank you so much and keep it up!

#73 Comment By abdul On June 16, 2008 @ 9:59 pm

After reading this post i can say…
Eli is the king of blogger..

#74 Comment By Jonathan Volk On June 17, 2008 @ 3:30 pm

Very impressive! :D

#75 Comment By BEN’ya On June 19, 2008 @ 2:52 pm

You are very clever!

#76 Comment By Andi On June 24, 2008 @ 2:01 pm

Marvellous work. I always thought this would require some very intense analysis of the graph, but it looks like a miracle with a few lines of code.

#77 Comment By Alvin On June 25, 2008 @ 10:50 am

Thanks for the info.

#78 Comment By Alvin On June 26, 2008 @ 7:36 am

Thanks for sharing:)

#79 Comment By Metaspring On July 3, 2008 @ 9:32 pm

This is really impressive!

#80 Comment By Utah Search Engine Optimization On July 4, 2008 @ 12:04 pm

Very Clever. thanks for this.

#81 Comment By Free Wii On July 4, 2008 @ 3:00 pm

It’s four months since this post was written, has the captcha been updated in the meantime?

#82 Comment By Fantasy Art Prints On July 8, 2008 @ 2:01 pm

Thank you so much for a very useful information.

#83 Comment By Work On July 11, 2008 @ 7:32 am

Great Nice post

#84 Comment By Geeks DIY On July 16, 2008 @ 1:31 pm

Thanks a lot for posting the code! I learn a lot better when I can look at code like that and figure it out so I can understand whats going on.
Thats a big help!

#85 Comment By Yewbic On July 17, 2008 @ 4:48 am

Great job. Keep them flowing

#86 Comment By ewps On July 18, 2008 @ 9:56 am

Thanks for the useful info!

#87 Comment By Eurodipity On July 21, 2008 @ 1:05 am

Gracias por el artículo.

#88 Comment By Sandpoint Idaho Real Estate On July 21, 2008 @ 1:45 pm

Great post. keep up the goodwork.

#89 Comment By Voidness On July 28, 2008 @ 1:09 pm

Thank You! Works great! :)

#90 Comment By Del Mar Picks On July 28, 2008 @ 8:44 pm

I’m gonna try porting this to Perl.. ;)

#91 Comment By Mahesh On July 29, 2008 @ 2:03 am

Hey Man,
Thanks for the information. keep posting…

#92 Comment By newborn gift On July 29, 2008 @ 12:15 pm

Does this still work? or did they update their stuff

#93 Comment By kpss kitaplari On July 30, 2008 @ 5:55 am

ReCaptcha forever. ;)

#94 Comment By Wordpress SEO On July 31, 2008 @ 12:32 am

Hell yeah!

#95 Comment By search engine optimisation On August 3, 2008 @ 5:21 am

cool where did u get this

#96 Comment By Irimia On August 10, 2008 @ 10:41 am

I really need to learn some programming…I don’t know how to use that…I am going to run and hope to find someone who can translate that for me….

#97 Comment By Stop Snoring Tips On September 13, 2008 @ 1:49 pm

I may be dense or something but can one just not sign up for delicious and use it the regular way. I am sure that works fine

I mean what is the application of this method, the benefits

Someone please answer?

#98 Comment By Stop Snoring Tips On September 13, 2008 @ 1:50 pm

And how can I use it to promote my site?

#99 Comment By şarkı sözleri On September 24, 2008 @ 1:32 am

great tactics and Black hat methods : )

#100 Comment By Alexey Afinogenov On September 30, 2008 @ 7:45 am

Thanks for the nice article.

#101 Comment By SEO On October 10, 2008 @ 3:53 pm

Is this not a shade black?

#102 Comment By Dbz On October 19, 2008 @ 8:37 pm

Wow, This is definatly above my level of scripting but im glad ive found it, credit to the author and creator of this site, Bookmarked!
Wonder how long the creator of the script has programmed for

#103 Comment By MSN Hacken On October 24, 2008 @ 2:59 pm

Why want to beat the captcha of Del.icio.us? What use does it have to crack the captcha

#104 Comment By MSN Hacken On October 24, 2008 @ 3:05 pm

Why want to beat the captcha of Del.icio.us?

#105 Comment By vertaalbureau engels On October 25, 2008 @ 4:25 am

@MSN hacken

Because he can, that’s why!

Maybe you can’t put it on your resume, but it’s quite an impressive and handy feat.

#106 Comment By Free Macbook On October 28, 2008 @ 1:53 pm

Excellent! Thanks!!

#107 Comment By Live Sets On November 10, 2008 @ 2:03 am

Maybe you can’t put it on your resume, but it’s quite an impressive and handy feat.

#108 Comment By cyrus jay On November 20, 2008 @ 5:16 pm

This has to be one of the most useful piece of information

#109 Comment By Article Submission On January 13, 2009 @ 10:31 am

I wonder how many other sites are using this same Captcha. You may have screwed over a lot of people…

#110 Comment By MSN hacker On January 25, 2009 @ 8:55 am

Nice content. Very simple to understand, i love it!!

keep up this focking good work

#111 Comment By Radio luisteren On January 27, 2009 @ 1:50 am

lovely piece of code, great share Eli!

#112 Comment By BusbySEO Test On January 28, 2009 @ 12:03 pm

another week captcha makes it asy to crack

#113 Comment By Sweaty Palms On January 29, 2009 @ 4:21 pm

Complex code.. Hard to understand… Mind-boggling :)

#114 Comment By Karunakar On January 30, 2009 @ 11:05 pm

Its great,

but how this is useful to seo guys??

#115 Comment By Rocket Spanish Review On February 1, 2009 @ 8:32 am

Well I guess this can be used for auto submissions to the site.

#116 Comment By Abdulrehman | How to Make Money On February 7, 2009 @ 5:32 am

You’re an evil dude Eli, I must say that. Crackin’ captchas is RAW, but they must’ve changed their system by now!!

#117 Comment By Shop Fittings On March 3, 2009 @ 2:35 am

May captchas are dead not just this one.

#118 Comment By Indonesia Burger On March 4, 2009 @ 1:05 am

It’s about time. The security had been flawed for a while.

#119 Comment By Singapore Hotel On March 14, 2009 @ 10:22 pm

It’s amazing to find that happening.

#120 Comment By ENT Doctor On March 17, 2009 @ 7:37 am

It’s about time someone did that.

#121 Comment By Kai Lo On March 21, 2009 @ 9:58 pm

That code confuses the crap out of me. Can someone explain?

#122 Comment By Free DSi On April 5, 2009 @ 1:32 pm

Thats some sneaky stuff right there…how did you come about making it doe?

#123 Comment By CasTex On April 5, 2009 @ 3:09 pm

This is really impressive!

#124 Comment By Spedition Berlin On April 5, 2009 @ 4:04 pm

Thanks for this post.

best regards

#125 Comment By Runescape hack programma On April 8, 2009 @ 11:51 am

Nice hack. But it is not work anymore, because this code is changes by Delicious.com at the moment. It’s outdated, but anyway it’s was very funny in the time when it worked!

#126 Comment By strom On April 13, 2009 @ 11:46 am

nice, very cool script ;-)

#127 Comment By Pozycjonowanie Poznan On April 15, 2009 @ 12:01 am

People crack captchas and then complain when the stuff like the rapidshare captcha comes out.

#128 Comment By Odzyskiwanie Danych On April 21, 2009 @ 2:57 am

I don’t think I’ll use it but it’s nice to know.

#129 Comment By game4power On May 10, 2009 @ 2:15 am

I discovered your site just before it goes down…happy to see it’s back, anyway I spent some hours browsing Google cached results to read your past articles…very interesting.

#130 Comment By Cirurgia Plastica On May 10, 2009 @ 7:56 am

crackers are always ahed

#131 Comment By Protese Peniana On May 10, 2009 @ 7:56 am

Thats useful info.

#132 Comment By Wordpress Website guy On May 16, 2009 @ 9:10 am

You never cease to amaze me.
Guy

#133 Comment By Naomi-KPI Course On May 28, 2009 @ 11:20 pm

Thank you for the article! This is awesome - but unfortunately well out of my league at the moment - just a matter of time me hopes though! Once again Eli you have pulled some great stuff out of the bag

#134 Comment By Nicolas Prudhon On May 29, 2009 @ 4:47 pm

I’m impressed by your ability to reverse engineer this code, however I’m not sure what I’d be doing with it ^_^

#135 Comment By small business seo On June 1, 2009 @ 12:06 pm

Thanks for the great posts and tips - pretty intense stuff and I appreciate you disclosing all this information. Very helpful!

#136 Comment By life purpose coaching center On June 1, 2009 @ 12:08 pm

Not sure how you figure things out, but I have to say I’m impressed - thanks for the post.

#137 Comment By sell your own home On June 1, 2009 @ 12:10 pm

I’ve been trying to crack this stuff for some of my own site exposure and I have to say this is wonderful. Thanks for sharing this information!

#138 Comment By best florida storage On June 1, 2009 @ 12:11 pm

Nice post! Crazy that you found a way to do this…thanks for sharing.

#139 Comment By Seo Singapore On June 6, 2009 @ 3:28 am

This is quite and amazing feat. I mean the hackers.

#140 Comment By windows tweaks On June 21, 2009 @ 8:15 am

Eli you are a genius

#141 Comment By work at home On June 24, 2009 @ 5:36 pm

That’s amazing, and to think it all starts in learning simple coding languages LOL amazing Eli.

#142 Comment By Wordpress Webdesign On June 26, 2009 @ 7:51 am

Allthough I can’t write a bit python, it’s good to know, that captchas can be broken, because personally I hate them!

#143 Comment By potenz On June 30, 2009 @ 5:10 am

thanks 4 this very usefull info. by

#144 Comment By ohne rezept On June 30, 2009 @ 5:14 am

Thanks for the nice article.

#145 Comment By Todays Freebies On August 17, 2009 @ 7:25 am

thanks for this article learning new stuff every day

#146 Comment By Music mates On September 15, 2009 @ 8:42 pm

I’m working on it but it’s hard to obtain sharp letters because of all the line garbage.. I tried the one at delicious with my tools and it got around 50% success of guessing the captchas. Individual letter guessing success is pretty good near 88%

#147 Comment By cashing at home On September 20, 2009 @ 11:15 pm

very nice code there, keep it up

#148 Comment By Golden triangle tour On October 6, 2009 @ 2:26 am

I have been reading this blog for manydays which is full of exicting and knowledgable for the users.

#149 Comment By Payday No Teletrack On October 9, 2009 @ 4:06 am

The info you presented is overwhelming for its readers.

#150 Comment By Faxless payday On October 9, 2009 @ 10:28 pm

Very nice post man! keep posting ………. Thanks

#151 Comment By Bob Gates On November 4, 2009 @ 1:02 pm

I can’t believe this has been done - there are some real dedicated and highly able hackers out there - they could earn a fortune working for a corporation, assuming they are old enough.

#152 Comment By infants On November 5, 2009 @ 6:50 pm

Not sure how you figure things out, but I have to say I’m impressed - thanks for the post.

#153 Comment By Ho jewelry Blog On November 19, 2009 @ 10:58 am

Not sure how you figure things out, but I have to say I’m impressed - thanks for the post.

#154 Comment By Zenmed Scar Treatment On December 18, 2009 @ 12:33 pm

It is like a pain in the dark side all those capchas. I think that 80 of captchas art broken already :)

#155 Comment By get a free ipad On February 9, 2010 @ 6:11 am

I just need to compile this in python and it works right out of the box or do you need to code something else to create accounts or submit links?

Anyway, thanks for the share.

#156 Comment By Eurostar Holidays On February 19, 2010 @ 9:13 am

The code to do this is so simple an effective, nice work my friend. Much appreciated.

#157 Comment By Spyros On February 21, 2010 @ 9:21 pm

What about recaptcha ? This is the leading and most difficult type of captchas at the moment.

#158 Comment By MLM Training On March 3, 2010 @ 8:11 pm

Thanks for the useful information.
Have a nice day!

#159 Comment By Chipotle Coupons On April 7, 2010 @ 1:12 am

Dang, that little piece of code can actually break a captcha??? Wow! I wish I knew more about programming.

#160 Comment By rude jokes On April 10, 2010 @ 12:38 pm

Wow, This is definatly above my level of scripting but im glad ive found it, credit to the author and creator of this site, Bookmarked!
Wonder how long the creator of the script has programmed for

#161 Comment By Buy Kefir Grains On April 25, 2010 @ 2:39 am

So the Del.icio.us Captcha is already Cracked. That’s bad, the hacker is going wild.

[1] Banner Ads | Banner Advertising

#162 Comment By seo india On May 2, 2010 @ 11:15 am

thanks for sharing this information! it’s very useful for a lot people try to understand how we can use this product.

#163 Comment By Buy Kefir Grains On May 6, 2010 @ 8:38 am

cool tips, totally original. I never thought of that.

#164 Comment By Homes For Sale In Boise On May 6, 2010 @ 12:09 pm

This looks like a complicated script and I’ve never used Python but I think I’m going to have to learn it so I can put this to work. Thanks!

#165 Comment By Buy Kefir Grains On May 12, 2010 @ 8:43 am

Great you are genius.

#166 Comment By Wordpress Webdesign On May 17, 2010 @ 8:03 am

Thanks for great tutorial

#167 Comment By Beekeeping for beginners On June 14, 2010 @ 7:12 am

This is a very complicated program to use. I tried it last week and was not successful in using and learning it.

Hope they release a better one soon.

#168 Comment By Low Carb Diet Planner On June 14, 2010 @ 7:20 am

Thanks this is a great tutorial for this program Python. I definitely needed this.

#169 Comment By Planning The Perfect Wedding On June 14, 2010 @ 8:04 am

Its amazing that little piece of code can actually break a captcha. Wow! I wish I knew more about programming.

#170 Comment By New Jersey SEO On June 14, 2010 @ 7:48 pm

Excellent bit of code.

#171 Comment By Low Carb Diet Planner On June 16, 2010 @ 2:35 am

I do agree with you on this article, although I read from another blog something different from what you are saying.

Anyway thank you for your review.

All the best!

#172 Comment By توبيكات On July 4, 2010 @ 11:00 am

cool …. thanx ^^

#173 Comment By Beekeeping For beginners On September 14, 2010 @ 10:31 am

I might be.

#174 Comment By Beekeeping For beginners On September 14, 2010 @ 10:32 am

LOL

#175 Comment By Скачать фильм On October 1, 2010 @ 4:42 am

I really need to learn some programming…I don’t know how to use that…I am going to run and hope to find someone who can translate that for me….

#176 Comment By Sweaty Palms On October 4, 2010 @ 2:42 pm

This information is simply.. delicious, great info, definately have to try it out some time, although i am a bit of a noob what it comes to programming!

THanks
Harry

#177 Comment By Soniya Sharma On October 9, 2010 @ 8:09 am

I am obliged with you.Thanks. Have a nice day ahead.

#178 Comment By unemployed loans On October 13, 2010 @ 11:26 pm

I am very very obliged to you as you have mentioned good information. Thanks

#179 Comment By Kvepalai pigiau On November 6, 2010 @ 5:48 am

Cool, thanks for sharing the code.

#180 Comment By http://maxalas.blogspot.com On November 14, 2010 @ 3:21 pm

[2] http://maxalas.blogspot.com νεα βιντεο φωτογραφιες

#181 Comment By Schulze Thomas On November 16, 2010 @ 4:13 pm

Intersting piece of code, thanks fopr sharing!

#182 Comment By pararfumar On November 17, 2010 @ 12:27 pm

That what I was looking for. [3] parardefumar

#183 Comment By Vistona On November 24, 2010 @ 10:45 am

Nice code! I really need to learn some programming…

#184 Comment By SEO Miami On November 28, 2010 @ 12:25 pm

Nice crack!

#185 Comment By azong On December 12, 2010 @ 11:41 pm

Thanks for great tutorial

#186 Comment By Wireless Networking On December 17, 2010 @ 9:01 am

Great post ! Your programming skills are awesome.

#187 Comment By bright On December 17, 2010 @ 9:17 am

Great stuff! You never cease to amaze me. Wonderful skills you have.

#188 Comment By braindump On December 21, 2010 @ 12:02 am

I found this is an informative and interesting post so i think so it is very useful and knowledgeable. I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well. In fact your creative writing ability has inspired me. Really the article is spreading its wings rapidly…

#189 Comment By شات كتابي On December 30, 2010 @ 7:08 am

Thanks for great tutorial

#190 Comment By filmindir On January 2, 2011 @ 1:07 pm

Very useful hacks, thanks a lot, I already implemented the

#191 Comment By Venice Beach Hotel On January 7, 2011 @ 4:23 am

Very clever article. Thought evoking to say the least. Thanks for the post.

#192 Comment By pozycjonowanie On January 24, 2011 @ 5:33 pm

it was matter of time. obvious…

#193 Comment By cami halısı On February 4, 2011 @ 6:07 am

Great stuff! You never cease to amaze me. Wonderful skills you have.

#194 Comment By Mannatech LIFT On February 21, 2011 @ 2:22 pm

That’s cool, the captcha is good, but nice to get around if needed.

#195 Comment By India Tour Packeges On February 24, 2011 @ 9:51 am

Golden Triangle Tour Covering Delhi, Agra and Jaipur. [4] Golden Triangle Tour is the most popular tourist circuit in India. This incredible Golden Triangle Tour Itinerary comprising the three famous cities of India-Delhi, Agra and Jaipur having grandeur, glory & history.

#196 Comment By compra coletiva On February 25, 2011 @ 10:07 pm

giving a try!

#197 Comment By Online Tv chennels On March 2, 2011 @ 11:11 am

you can say that Very clever article. Thought evoking to say the least. Thanks for the post.

#198 Comment By sac ekim On March 23, 2011 @ 1:20 pm

This is a really stupid question but what language does the script need to be in?
trrrr

#199 Comment By shoes On April 6, 2011 @ 10:16 pm

Northwest Indians told early explorers about the fiery Mount St. Helens. In fact, an Indian name for the mountain, Louwala-Clough, means “smoking mountain”. According to one legend, the mountain was once a beautiful maiden, “Loowit”. When two sons of the Great Spirit “Sahale” fell in love with her, she could not choose between them. The two braves, Wyeast and Klickitat fought over her, burying villages and forests in the process. Sahale was furious. He smote the three lovers and erected a mighty mountain peak where each fell. Because Loowit was beautiful, her mountain (Mount St. Helens) was a beautiful, symmetrical cone of dazzling white. Wyeast (Mount Hood) lifts his head in pride, but Klickitat (Mount Adams) wept to see the beautiful maiden wrapped in snow, so he bends his head as he gazes on St. Helens.

#200 Comment By porno On May 12, 2011 @ 8:16 am

That’s cool, the captcha is good, but nice to get around if needed.

#201 Comment By p90x On May 26, 2011 @ 8:42 pm

The answer is Michael Jordan. “By acclamation, Michael Jordan is the greatest basketball player of all time.”

#202 Comment By karen millen uk On June 2, 2011 @ 12:06 am

I just added this weblog to my feed reader, great stuff. Can’t get enough!

#203 Comment By Word Templates On June 7, 2011 @ 4:47 am

No doubt this is a useful hacks,thanks for providing with us.

#204 Comment By Word Templates On June 7, 2011 @ 4:48 am

I would like to say the captcha is good, but nice to get around if needed,and i really enjoy reading most part of the article.

#205 Comment By ผ้าม่าน On June 20, 2011 @ 1:17 am

my comments not appearing

#206 Comment By Equine Antibiotics On June 22, 2011 @ 2:29 am

You’re really shared to us a very helpful updates about SEO world. I will keep visiting to this site for latest updates.
Thank you…

#207 Comment By Work Online On June 25, 2011 @ 4:53 am

I always prefer to SEO world.

#208 Comment By Work Online On June 25, 2011 @ 4:53 am

And the concept of CAPTCHA was first described in 1998 in a patent application invented by Eran Reshef, Gili Raanan and Eilon Solan.

#209 Comment By Work Online On June 25, 2011 @ 4:54 am

I appreciate your hard work and this very informative post.

#210 Comment By Home Online Work On July 3, 2011 @ 2:13 am

Of course…

#211 Comment By kadın On July 29, 2011 @ 4:27 am

I do agree with all of the ideas you have presented in your post. They’re really convincing and will definitely work. Still, the posts are too short for newbies. Could you please extend them a bit from next time? Thanks for the post.

#212 Comment By Free Templates On August 8, 2011 @ 12:45 pm

If your working is right then this could be a new invention. I am agree with your working and so far convinced with the idea. Let’s see how its work.

#213 Comment By teaching overseas jobs On August 8, 2011 @ 2:21 pm

I always browse this site. The fact is I have learned more about SEO.

#214 Comment By fishing reel reviews On August 9, 2011 @ 8:38 pm

Great post. I love coming to this site often.

#215 Comment By Handbags On Sale On August 14, 2011 @ 7:28 pm

I do agree with all of the ideas you have presented in your post. They’re really convincing and will definitely work. Still, the posts are too short for newbies. Could you please extend them a bit from next time? Thanks for the post.

#216 Comment By learning english On August 16, 2011 @ 2:31 pm

Actually, I’ve been using this tool of one of my blogs. I don’t think so that that there are some errors with it.

#217 Comment By website hosting india On August 22, 2011 @ 9:18 pm

You have done a great job by sharing this informative post. I would like to appreciate your good work and also would like to encourage you to keep it up.

#218 Comment By web hosting On August 22, 2011 @ 10:35 pm

It is a very informative and useful post thanks it is good material to read this post increases my knowledge

#219 Comment By Chelsea Alabama Physical Therapy On September 1, 2011 @ 3:13 pm

Good site. I’ve learned alot and will tell my friends.

#220 Comment By porno On September 6, 2011 @ 2:45 am

And the concept of CAPTCHA was first described in 1998 in a patent application invented by Eran Reshef, Gili Raanan and Eilon Solan.

#221 Comment By مدونة On September 13, 2011 @ 8:22 pm

thats perfect looool
thanks man

#222 Comment By Caldaie Vaillant On September 24, 2011 @ 6:21 am

Still, the posts are too short for newbies.

#223 Comment By commando 2 On October 2, 2011 @ 7:20 am

This is definatly above my level of scripting but im glad ive found it, credit to the author and creator of this site, Bookmarked!

#224 Comment By cami halısı On October 6, 2011 @ 5:17 am

waow. So how are we gonna feel us safe?

#225 Comment By diyaliz merkezleri On October 6, 2011 @ 5:19 am

this is peeeerfect ! but our websites are in dangeour u know…

#226 Comment By Kuhinje On October 13, 2011 @ 11:27 pm

This is really impressive!

#227 Comment By Property Marbella On October 14, 2011 @ 8:08 am

what a lovely piece of code, great share Eli!

#228 Comment By tesettür gelinlik On October 17, 2011 @ 1:01 am

so impressivE !

#229 Comment By Das Orchester On October 17, 2011 @ 1:18 pm

Das Orchester und der Chor verheiligten die Feier des Heiligen Abendmahls.

#230 Comment By Cami Halısı On October 19, 2011 @ 12:30 am

very interesting working and effort

#231 Comment By porno On November 9, 2011 @ 9:39 am

thx for admin

#232 Comment By porno On November 9, 2011 @ 9:43 am

very interesting thank you…

#233 Comment By Ritesh On November 19, 2011 @ 1:44 pm

#234 Comment By porno On December 6, 2011 @ 1:51 pm

concept of CAPTCHA was first described in 1998 in a patent application invented by Eran Reshef, Gili Raanan and Eilon Solan

#235 Comment By شات مصرى On December 19, 2011 @ 2:34 am

ty fpr uys

#236 Comment By شات صوتي On December 19, 2011 @ 2:35 am

okkkkkkkkkkkkkkkkkkkkkkkkkkkk

#237 Comment By Nitish On December 28, 2011 @ 9:33 am

awesome eli lol maybe i should give it a try as well xD

#238 Comment By Nitish On December 28, 2011 @ 9:34 am

It is appearing nw lol

#239 Comment By Nitish On December 28, 2011 @ 9:35 am

and i used to think hacking captcha’s aint possible xD

#240 Comment By Nitish On December 28, 2011 @ 9:36 am

WTH is this? how is this anyway related to the topic? O.o

#241 Comment By Nitish On December 28, 2011 @ 9:37 am

m thinking the same, tho i am in seo field with website marketing and all, learning a little programming wont do me a hard, so definitely giving it a try :)

#242 Comment By Summer Holidays On January 1, 2012 @ 7:58 pm

Eli, No idea if this method still works, but I shall certainly implement it on my sites! Regards!

#243 Comment By PCSO Lotto Results Phil On January 2, 2012 @ 12:55 am

This is especially important when doing business on the internet. Reap the rewards of knowledge all of you!

#244 Comment By Jens On January 2, 2012 @ 12:31 pm

After 3 hours trying, thinking and trying again, i understand how it works. Yeah! Great script, especially the way to get the best character after rotating them. To use the maximum of unclipped pixels as criteria is really tricky. Finally it has to be combined it with ocr.

#245 Comment By Mobile Laptop On January 2, 2012 @ 5:57 pm

Nice trick. It’s a good post and a great game plan. Well Done!

#246 Comment By سعودي انحراف On January 4, 2012 @ 8:15 am

OKKKKKKKKKKKKKKKKKKKKKKKKK

#247 Comment By سعودي انحراف On January 4, 2012 @ 8:15 am

YEEEEEESSSSSSSSSSSSSSSS

#248 Comment By شات صوتي On January 4, 2012 @ 8:16 am

Nice trick. It’s a good post and a great game plan. Well Done!

#249 Comment By Ismat Zahra On January 6, 2012 @ 1:36 pm

nice guyz

#250 Comment By Ismat Zahra On January 6, 2012 @ 1:38 pm

ur mind works so fast and soooo intelligent

#251 Comment By Ismat Zahra On January 6, 2012 @ 1:45 pm

i lyk this blog its informative and ppl help each other. this is cooooolll acutly ;)

#252 Comment By Ismat Zahra On January 6, 2012 @ 1:46 pm

realy impressed

#253 Comment By Property Marbella On January 8, 2012 @ 3:37 am

Something say to me that I think this is a little out of my league, but I think the idea is cool.

#254 Comment By PCSO Lotto On January 10, 2012 @ 11:33 pm

Okay just finally got around to trying this

#255 Comment By Divya @ Life Insurance Policies On January 12, 2012 @ 11:39 pm

but most of the social bookmarking sites are using captcha to confirm the user as not a spammer

#256 Comment By klizni plakari On February 3, 2012 @ 8:39 am

It’s amazing to find that happening.

#257 Comment By americki plakari On February 3, 2012 @ 8:40 am

Nice trick. It’s a good post and a great game plan. Well Done!

#258 Comment By Property Marbella On February 13, 2012 @ 5:30 am

Way no, think this is a little out of my league, but I think the idea is cool.

#259 Comment By kuhinje po meri On February 16, 2012 @ 6:54 am

This is really impressive!Thanks for sharing this.[6] Selidbe

#260 Comment By Schmuck Online On February 29, 2012 @ 6:45 am

this is interesting. thanks for sharing!

#261 Comment By Crafts Factory On March 11, 2012 @ 1:47 am

Intersting piece of code, thanks fopr sharing!

#262 Comment By HealthWrong On March 20, 2012 @ 9:25 pm

genius!!! u r really genius!!! i don’t think anyone else can do that.

#263 Comment By Aliosha Kasin On April 5, 2012 @ 9:18 am

LOL this is very cool piece of code Eli.

#264 Comment By Life Insurance Over 85 Years Old On April 5, 2012 @ 5:27 pm

thanks for sharing this code Eli!

#265 Comment By Justbeenpaid On April 9, 2012 @ 1:28 pm

Very useful yet hard to implement

#266 Comment By Microcamp On June 25, 2012 @ 11:55 am

great post .. very interesting

#267 Comment By Prestação de Serviços On July 7, 2012 @ 1:44 pm

Thanks for sharing this. Hugs ! :)

#268 Comment By شبكة رصد On July 13, 2012 @ 3:26 pm

fjhhf jgfd dj fhdjhd

#269 Comment By رصد On July 13, 2012 @ 3:26 pm

rhb hhfd jhdhfjd j

#270 Comment By كفر الشيخ On July 13, 2012 @ 3:27 pm

fhfh fjhf jdjf

#271 Comment By hut be phot On September 2, 2012 @ 3:40 am

Something say to me that I think this is a little out of my league, but I think the idea is cool.

#272 Comment By thong cong On September 2, 2012 @ 9:18 pm

but most of the social bookmarking sites are using captcha to confirm the user as not a spammer

#273 Comment By Rich On September 6, 2012 @ 7:16 pm

Wow, I know this is old but it’s still interesting to see how it can be done.

#274 Comment By Swim Caps On October 5, 2012 @ 5:33 am

I am very fond of swimming but i am unable to swim. Please give me suggestions to improve my swim capabilities. Thanks in advance.

#275 Comment By chong tham dot On October 13, 2012 @ 8:00 pm

I mean what is the application of this method, the benefits


Article printed from Blue Hat SEO-Advanced SEO Tactics: http://www.BlueHatSEO.com

URL to article: http://www.BlueHatSEO.com/delicious-captcha-cracked/

URLs in this post:
[1] Banner Ads | Banner Advertising: http://www.banneradsblueprintreviewed.com
[2] http://maxalas.blogspot.com: http://maxalas.blogspot.com
[3] parardefumar: http://www.pararfumar.com.br
[4] Golden Triangle Tour: http://www.maketripindia.com/golden-triangle-tour.html
[5] Do follow list PR 7 Blogs SEO: http://www.techinspiro.blogspot.com
[6] Selidbe: http://www.selidbe-pakovanje.com

Click here to print.