Posts Tagged ‘Protecting’
Friday, March 2nd, 2012 There are four major plugins as of writting of this that can be used to reduce significantly the amount of registration spam in Elgg 1.8.x <= (1.8.3)
Probably there are other plugins to protect against spam in elgg, however I personally tried just this ones to work with elgg 1.8.3..
1. Elgg Anti bot spam registartions with Text Captcha

As you can see in the picture this plugin requires, skills in maths 😉 For serious websites it also looks a bit ridiculous, besides that is actually an easy one to handle by spam bots, probably plenty of the nowdays spam bots crawling the net could trespass it.
2. Protecting elgg registration formw tih Image Capcha

3. Elgg anti registration spam with Google Captcha

4. Just a Captcha for Elgg 1.8
- Check and Download Elgg Just a Captcha for Elgg here

One note to make here is the 4 Captchas did not work together if enabled from elgg administration panel. You will have to use one at a piece.
I haven't tested to I don't know which one is the most efficient. Anyhow I really think Image Captcha is looking best from all of them and more intuitive to the user.
I'm quite happy Image Captcha is available and works fine in 1.8.3 in prior version 1.6.x generation, I couldn't find any decent plugin to filter login spam and my experimental social network based on elgg, got quickly filled with Spam. Now will wait and see if the Image Captcha will stop the drones.
Tags:
administration panel,
amount,
Anyhow,
Auto,
Capcha,
Captcha,
Captchas,
Draft,
drones,
elgg,
fine,
formw,
generation,
google,
Image,
login,
lt 1,
Math,
math text,
maths,
nbsp,
network,
network platform,
page,
panel,
platform,
plenty,
plugin,
Protecting,
registration,
Social,
spam,
tih,
trespass,
version,
writting,
x generation Tags: administration panel, amount, Anyhow, Auto, Capcha, Captcha, Captchas, Draft, drones, elgg, fine, formw, generation, google, Image, login, lt 1, Math, math text, maths, nbsp, network, network platform, page, panel, platform, plenty, plugin, Protecting, registration, Social, spam, tih, trespass, version, writting, x generation
Posted in Everyday Life, Various, Web and CMS | 3 Comments »
Sunday, April 11th, 2010 I have a running awstats installation and needed a way to protect the cgi-bin statistics with a password. Thanksfully there is a way to achieve that through the Apache. To secure your let’s say awstats.pl or any other /cgi-bin/ executable with a password here is what you need to do:
First make sure you have:
Allowoverride All directive enabled in your Apache Directory permissions for the /cgi-bin/.
Next you will need to create an .htaccess file in your /cgi-bin/ directory .The file should contain something close to:
<FilesMatch "awstats.pl">AuthName "Login Required"
AuthType Basic
AuthUserFile /var/www/awstats/.htpasswd
require valid-user
</FilesMatch>
The above example presumes that you have created the .htpasswd in /var/www/awstats/.
To create this file issue the command:
debian:~# htpasswd -c /var/www/awstats/.htpasswd admin
That’s all now your awstats installation or any other executable specified in FileMatch would be created with a password.
Tags:
Allowoverride,
apache,
AuthType,
AuthUserFile,
awstats,
cgi bin directory,
command,
directive,
directory permissions,
file,
htaccess file,
htpasswd,
installation,
issue,
login,
lt,
password,
Password Protecting single file with htaccess password / Securing single exetubale in Apache with password through htaccess,
pl,
Protecting,
quot,
Securing,
single file,
something,
statistics,
Thanksfully,
var,
way,
www Tags: Allowoverride, apache, AuthType, AuthUserFile, awstats, cgi bin directory, command, directive, directory permissions, file, htaccess file, htpasswd, installation, issue, login, lt, password, Password Protecting single file with htaccess password / Securing single exetubale in Apache with password through htaccess, pl, Protecting, quot, Securing, single file, something, statistics, Thanksfully, var, way, www
Posted in Linux, System Administration, Web and CMS | No Comments »