Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package br.com.estudogrupo.online; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.List; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; /** * * @author higor */ public class DicionarioOnline01 implements Runnable { /* <one line to give the program's name and a brief idea of what it does.> Copyright (C) <2015> Higor Diego Alves Ferreira Pinheiro> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ private int contador = 0; public int getContador() { return contador; } public void setContador(int contador) { this.contador = contador; } private String recebe; public String getRecebe() { return recebe; } public void setRecebe(String recebe) { this.recebe = recebe; } @Override public void run() { HttpClient client = new DefaultHttpClient(); HttpPost post = new HttpPost("http://md5.my-addr.com/md5_decrypt-md5_cracker_online/md5_decoder_tool.php"); try { List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1); nameValuePairs.add(new BasicNameValuePair("md5", getRecebe())); post.setEntity(new UrlEncodedFormEntity(nameValuePairs)); HttpResponse response = client.execute(post); BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent())); String line = ""; while ((line = rd.readLine()) != null) { if (line.startsWith( "<div class='white_bg_title'><span class='middle_title'>Hashed string</span>")) { String key = line.substring(77).replaceAll("</div>", ""); System.out.println("Senha : " + key); System.exit(0); } } } catch (IOException | NullPointerException e) { e.printStackTrace(); } } }