A reverse string captcha

Tropicalista

Client
Регистрация
24.05.2011
Сообщения
29
Благодарностей
0
Баллы
0
How to work with this simple captcha?

Код:
http://www.logindot.com/aggiungi_sito.php
It's a text string reversed. In the html there is the solution, but how could I retrieve the text and then reverse the string?

Код:
<img src="/conf/antiflood.php?key=9GQ3" border="0" alt="Codice antiflood">
Could you help me?
 

ninny83

Client
Регистрация
10.05.2011
Сообщения
86
Благодарностей
8
Баллы
0
Tropicalista, are you Italian?
 

Tropicalista

Client
Регистрация
24.05.2011
Сообщения
29
Благодарностей
0
Баллы
0
yes, I'm Italian.

I've solved this! simply parse the page text extract the 4 characters string and then reverse with javascript!! This software is amazing!
 

ninny83

Client
Регистрация
10.05.2011
Сообщения
86
Благодарностей
8
Баллы
0
PM I'm Italian too!
 

step85

Client
Регистрация
19.02.2010
Сообщения
1 839
Благодарностей
287
Баллы
83
Use Java:

PHP:
var result = "captcha"; 
var result=(result.split("", )); 
var result=(result.reverse()); 
var result=(result.join(""));
 
  • Спасибо
Реакции: Stereomike

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)