Projects tagged ‘captcha’


[83 total ]

12 Users

reCAPTCHA improves the process of digitizing books by sending words that cannot be read by computers to the Web in the form of CAPTCHAs for humans to decipher. More specifically, each word that cannot ... [More] be read correctly by OCR is placed on an image and used as a CAPTCHA. This is possible because most OCR programs alert you when a word cannot be read correctly. [Less]
Created over 2 years ago.

8 Users

Django Simple CaptchaAboutDjango Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form. UsageSample view: from django ... [More] import forms from captcha.fields import CaptchaField from django.shortcuts import render_to_response class CaptchaTestForm(forms.Form): myfield = AnyOtherField() captcha = CaptchaField() """ # or, as a ModelForm: class CaptchaTestModelForm(forms.ModelForm): captcha = CaptchaField() class Meta: model = MyModel """ def home(request): if request.POST: form = CaptchaTestForm(request.POST) # Validate the form: the captcha field will automatically # check the input if form.is_valid(): human = True else: form = CaptchaTestForm() return render_to_response('base.html',locals()) FeaturesVery simple to setup and deploy, yet very configurable Can use custom challenges (e.g. random chars, simple maths, dictionary word, ...) Custom generators, noise and filter functions alter the look of the generated image Supports text-to-speech audio output of the challenge text, for improved accessibility RequirementsDjango 1.0+ A fairly recent version of the Python Imaging Library (PIL) compiled with FreeType support Flite is required for text-to-speech (audio) output, but not mandatory InstallationDownload the 'captcha' application and put it anywhere in your Python path (or using setuptools: sudo easy_install django-simple-captcha) Add 'captcha' to the INSTALLED_APPS in your settings.py Run manage.py syncdb to create the required database tables Add an entry to your urls.py: urlpatterns += patterns('', url(r'^captcha/', include('captcha.urls')), )ConfigurationSee CaptchaConfiguration for details on available configuration settings. GeneratorsSee CaptchaGenerators for a list of available challenge generator functions. [Less]
Created about 1 year ago.

2 Users

Simple Captcha provides the captcha authentication functionality in rubyonrails application. Its really simple to implement, requires one line of code in view and one line of code in controller or ... [More] model and it provides the multiple image styles to be displayed. AKA simple_captcha rails plugin [Less]
Created over 2 years ago.

2 Users
 

kaptcha is a modern version of the SimpleCaptcha project. By default it is very easy to setup and use and the default output produces a captcha that is hard to bust and similar to the ones produced by Yahoo.com.
Created over 3 years ago.

2 Users

Egglue Semantic CAPTCHA generates textual challenges to protect websites from automated spam. Unlike conventional CAPTCHA, all challenges require only basic intuitive/reasoning abilities to solve. ... [More] In the current Beta, visitors are presented with two meaningful sentences, each missing one verb. Visitors are asked to type in the missing verbs so that the sentences make intuitive sense. An example challenge is: Speakers can ______ sound. A correct answer is play. Other correct answers include amplify, produce, control and others, as intuition suggests. Visitors are free to type in any verb as long as the completed sentence makes intuitive sense and uses correct grammar. Egglue knows that there is no single solution to each challenge, so it tries to pass all intuitively relevant solutions. [Less]
Created 7 months ago.

1 Users

reCAPTCHA is an eZ Publish extension that allows the integration of the reCAPTCHA anti-spam CAPTCHA service in eZ publish content objects. The reCAPTCHA extension provides a reCAPTCHA datatype that ... [More] can be used in editing content and information collection. [Less]
Created about 1 year ago.

1 Users
 

TracRecaptchaPlugin is a Trac plugin that adds a CAPTCHA (from reCAPTCHA) to ticket forms.
Created about 1 year ago.

1 Users

PHP Class that generates images for CAPTCHA verification in forms.
Created over 2 years ago.

1 Users

This is a struts2 plugin for ease integrate captcha verify ability into struts2 application developmnet environment. Current the plugin support jcaptcha only Spring security is also supported when using it as web layer security manager
Created about 1 year ago.

1 Users
 

Plowshare is a command-line downloader/uploader for some of the most popular file-sharing websites. It works on UNIX-like systems and presently supports Megaupload, Rapidshare, 2Shared, 4Shared ... [More] , ZShare, Badongo, DepositFiles and Mediafire. Refer to the README for more info. $ plowdown http://rapidshare.com/files/130403982/1989_-_Castellum_honesti.rar 1989_-_Castellum_honesti.rar$ plowup natalie_merchant-crazy_man_michael.mp3 megaupload http://www.megaupload.com/?d=710JVG89Do you need to upload videos to Youtube? Check youtube-upload [Less]
Created 11 months ago.