
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
really_simple_captcha
Advanced tools
ReallySimpleCaptcha is just another captcha gem.
The plain captcha display an image with distorted text and a text field.
To use it, add this line in the view file within the form tag :
<%= plain_captcha_tag %>
To verify the captcha in the controller, use :
plain_captcha_valid?
The reverse captcha add a text field hidden with CSS to trick bot into filling this field.
To use it, add this line in the view file within the form tag :
<%= reverse_captcha_tag %>
To verify the captcha in the controller, use :
reverse_captcha_valid?
ReverseCaptcha and PlainCaptcha must be configured separately.
ReallySimpleCaptcha::Captcha::PlainCaptcha.configure do |config|
config.field_name = :plain_captcha
config.text_length = 6
# colors
config.fill = 'darkblue'
config.background_color = 'white'
# font size
config.pointsize = 22
# image modification options
config.width = 120
config.height = 40
config.implode_amount = 0.3
config.wave_amplitude = 4.0
config.wave_length = 60.0
end
ReallySimpleCaptcha::Captcha::ReverseCaptcha.configure do |config|
config.field_name = :reverse_captcha
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)ReallySimpleCaptcha is released under the AGPLv3. Copyright (c) 2013 La Fourmi Immo.
FAQs
Unknown package
We found that really_simple_captcha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.