Well this is my new site, that very kindly egressive have sponsored me. It will hopefully end up being my Drupal playground and a place for mostly me but others to just chill.
Its taken me a little bit to get the hang of subversion but tonight has helped me a lot with getting this setup. Wasn't too hard in the end though. Just takes skills.
Well bed time. Got a full day of hockey ahead of me tomorrow. Should be good fun. :)
CAPTCHA
Your captcha is rather useless.
Here is the crack code in java.
import java.util.regex.*
public static String find(String txt) {
Matcher m = Pattern.compile("What is the (\\w+) word in the phrase \"(\\w+) (\\w+) (\\w+) (\\w+) (\\w+)\"\\?: ").matcher(txt);
if (m.find()) {
String select = m.group(1);
if(select.equals("first")) { return m.group(2); }
else if(select.equals("second")) { return m.group(3); }
else if(select.equals("third")) { return m.group(4); }
else if(select.equals("fourth")) { return m.group(5); }
else if(select.equals("fifth")) { return m.group(6); }
else { return null; }
} else { return null; }
}
Post new comment