Jonathan’s Blog

un blog pas comme les autres …

Mon nouveau projet : iAdvize

October 30th, 2009 by eCliPs

Voila cela fait déjà un moment que je bosse sur un nouveau service et aujourd’hui nous lançons la version BETA !
Le service s’appelle iAdvize. C’est une solution de chat commercial ou livechat qui s’intègre très facilement à votre site (une seule ligne de javascript)

iadvize

Venez nous rendre visite et demandez une démo de notre solution !

Posted in mes sites | No Comments »

ecrire un poème online

November 11th, 2008 by eCliPs

Vous aimez la poésie ? venez découvrir notre recueil de poèmes et pourquoi pas, venez aussi ecrire votre poème dans notre nouveau site http://www.nospoemes.fr

Posted in fun, mes sites | No Comments »

Hanouka 2008 – promo sur isranetshop

November 5th, 2008 by eCliPs

C’est bientot Hanoukkah et isranetshop propose maintenant une toute nouvelle collection de hanoukiots, mais aussi de tres nombreux nouveau produits comme les articles pour enfants, de nouveau porte-clefs judaica, de tres belles nappes pour le pain (shabbat) et pour finir des mezouzot en bois magnifiques.
A commander au plus vite avant les fetes !

hanoukia colore Hanoukkia orange Hannukia abstract Hannukia blue wave

Posted in isranetshop, mes sites | No Comments »

Human website translation service

August 28th, 2008 by eCliPs

Do you need to translate your website or any other document to another language ? Check Icanlocalize

http://www.icanlocalize.com/my/invite/597

Posted in Uncategorized | No Comments »

XSS attacks and SEO

July 5th, 2008 by eCliPs

Using XSS attack to get more back links to your site ?
here is a simple example I found today while searching in google !
AS soon as google will index this post it will find the url and add one more link to my contest page for the busby seo challenge ! isn’t it nice ?

Posted in Uncategorized, seo | No Comments »

Stop spam flood attack with postfix and iptables

June 25th, 2008 by eCliPs

For about 2 or 3 months, I constantly get attacked by an army of robots trying to spam my mailbox for the domain exeko.com that by the way is participating in the busby seo challenge and a few of my clients domains. Yesterday night the spam flood attack was so violent that my poor little server hosted by OVH started to swap like a crazy cow !

I finally decided to write a little shell script to read the mail log file and extract the last minute of log to count the number of rejected attempts to send mail to my server by the same host and ban this host using iptables if a defined limit is reached.

Here is a version of my script:
#!/bin/bash
IPT=/sbin/iptables
LIMIT=10
cd /root/Filters
# first get one minute of log
grep "`date +"%b %d %H:%M:" --date="1 minutes ago"`" /var/log/mail.info > minutelog
# now extract the rejected attempts, sort and count uniq ip
cat minutelog | grep "reject:" | cut -d" " -f10 | cut -d"[" -f2 | cut -d"]" -f 1 | sort | uniq -c | sort -n | sed 's/^[ \t]*//' > tmp1
# for each line in result
while read line
do
MYCOUNT=`echo $line | cut -d" " -f1`
MYIP=`echo $line | cut -d" " -f2`
if [ $MYCOUNT -lt $LIMIT ] ;
then
echo $MYIP is ok: $MYCOUNT attempts
else
echo blocking the spammer at $MYIP with $MYCOUNT attempts
$IPT -I INPUT -i eth0 --proto tcp -s $MYIP --destination-port 25 -j DROP
echo $MYIP >> blocked.smtp
fi
done < tmp1
rm -f minutelog
rm -f tmp1

You can also download this script here: filter_smtp.zip

This shell script is running for about 12 hours on my mail server and it already stopped 701 spamming machines. Any feedback on the script is welcome !

Posted in linux, shell scripts | 4 Comments »

Busby SEO Challenge update

June 10th, 2008 by eCliPs

Today I am checking my position for the busby seo challenge on google and I find myself on the second position on google.fr for the keywork: busby seo challenge !
I started this seo challenge before 72 hours and i already reached the top ranking on google.fr.
Will I reach the first page on google.com ? competition is hard !
If you want to help me, feel free to link to my page located at http://exeko.com/busby-seo-challenge/

Posted in busby seo challenge, seo | No Comments »

busby seo challenge

June 7th, 2008 by eCliPs

Today I found that a busby SEO challenge has been launched by Busby website. It may be a good opportunity to participate in this busby seo challenge and show the world what I know about seo.
I am a bit late because the busby seo challenge started on june 1st.
This post is to show you the page i prepared for the seo challenge organised by busby.
I did not won the last seo challenge but i will try this busby seo contest.

heavy text isn’t it ?

Posted in busby seo challenge, seo | 2 Comments »

Update clamav-daemon on debian etch

May 30th, 2008 by eCliPs

I noticed that the version of clamav (0.90) in debian etch is sometime hanging randomly and mails are deferred and never delivered to the mailboxes. We can install clamav from the volatile repository to correct this problem. Here is what i did:
We need to add a line in /etc/apt/sources.list
vi /etc/apt/sources.list
Simply paste this line at the end of the file:
deb-src http://volatile.debian.org/debian-volatile sarge/volatile main contrib non-free
apt-get update
We first build all the dependency for clamav-daemon
apt-get build-dep clamav-daemon
Now we fetch the source of clamav-daemon and build the package
cd /usr/src
apt-get source clamav-daemon
cd clamav-0.92.1dfsg/
dpkg-buildpackage -uc -us -rfakeroot -nc

Then we just need to install the necessary packages
dpkg -i clamav-base_0.92.1dfsg-0volatile1_all.deb
dpkg -i libclamav3_0.92.1dfsg-0volatile1_i386.deb
dpkg -i clamav-daemon_0.92.1dfsg-0volatile1_i386.deb

That’s all ! Your antivirus is now updated and ready to scan mails

Posted in linux, tutorials | No Comments »

Andy Mckee – Back to my guitar :)

May 17th, 2008 by eCliPs

A few days ago, i was surfing the web searching for something for my work and i found this video on youtube.
I found this song so nice that i had to take my guitar and try to learn it :)
Good to mention that I did not play for about 5 years before hearing this song !

Not so easy to play because of the strange tuning but in a few days it will be ok !
Maybe i will be able to play like this little boy ?

Posted in Uncategorized | 1 Comment »

« Previous Entries