COO tiket.com. Advisor bouncity.com. Advisor golfnesia.com. Co-founded urbanesia.com. Initiator #StartupLokal
After reading this article, I am starting to think that adding 34 characters (salt) in your password, and then hashing it is still ineffective.
Lets begin with hashing. This is how long does it take to brute force attack certain character length hashed text using modern days GPU:
all 6 character password MD5s: 3 seconds
all 7 character password MD5s: 4 minutes
all 8 character password MD5s: 4 hours
all 9 character password MD5s: 10 days
all 10 character password MD5s: ~625 days
all 11 character password MD5sfuggedaboudit
I have a plan. There are some techniques to add the “characters” in hashing (and make it super unique).
How do you handle usually handle your user password? Please share with me.
These are software engineers, mobile developers, UI designers, program managers, quality engineers and a services engineer who worked for Yahoo! Indonesia, Yahoo! Mail, Yahoo! Messenger, Yahoo! Hub, and of course Koprol. They love Scrum, Ruby on Rails, mobile apps (J2ME, BlackBerry, Android,…
The Sounds Of Nature…Literally
This is a simple step by step in installing Sphinx Search on Basic 64-bit Amazon Linux AMI. This is applicable to 32-bit too. This installation is very bare, starting from zero installation at all.
The conditions I wanted to meet:
So here goes:
# yum install mysql mysql-server mysql-devel
# yum install make gcc gcc-c++
# yum install svn
# cd /usr/src/
# svn checkout http://sphinxsearch.googlecode.com/svn/trunk/ sphinxsearch
# cd sphinxsearch
# ./configure —with-mysql
# make
# make install
# /usr/local/bin/indexer —all
# /etc/init.d/searchd start
And that’s it! Crazy simple!
Project Eden, Grha 9 5th floor, Jl. Penataran no. 9, Menteng
Been trying to put the painting on the wall for weeks. Finally after the girls (me & nuniek) spend more time at the office, the painting finally put in the right place :D
(via nuniek)
Hey guys, I need your point of view on this. So I have this query, which can take up to 17 (Seventeen!) tables into one query. I have been using Sphinx a lot for searches, and luckily, since Sphinx 1.10-beta, we have this attribute called sql_attr_string. What this attribute does is store the value for retrieval at Sphinx. So this is what I get (below is a sphinx index):
mysql> select room_date, room_name FROM rooms LIMIT 5; +-----------+--------+-----------+---------------+ | id | weight | room_date | room_name | +-----------+--------+-----------+---------------+ | 120120106 | 1 | 20120106 | Superior Room | | 120120107 | 1 | 20120107 | Superior Room | | 120120108 | 1 | 20120108 | Superior Room | | 120120109 | 1 | 20120109 | Superior Room | | 120120110 | 1 | 20120110 | Superior Room | +-----------+--------+-----------+-------------------+ 5 rows in set (0.01 sec)
So as you can see, I don’t need to query my tables anymore, basically sphinx search is doing the hard work by indexing ALL tables (schedule in background), and updates anything necessarily by using real-time indexing.
Reading the manual, it says that searchd will cache all values in RAM. But I think that’s before 1.10-beta. I need your PoV on this. Is this plausible or is this consuming a lot of Sphinx Search resource?