Desidero accedere al mio account Facebook con Indy. La versione è 9.00.10 e utilizzo OpenSSL con TIDHTTP e gli ho assegnato un cookie manager. Tutto funziona benissimo (posso inviare una richiesta POST a GET, ecc)Accedi a Facebook con Indy
ho fiutato il login reale con i tuoi amici e ho le seguenti informazioni:
AgenteUtente: Mozilla/5.0 (Windows; U ; Windows NT 6.0; en-US; rv: 1.9.2) Gecko/Firefox 20.100.115/3.6 (.NET CLR 3.5.30729)
ci sono diversi parametri POST:
- LSD = ho non ho idea di cosa sia.
- email = L'effettivo nome utente/email di Facebook.
- pass = La password (non crittografata) -> Sono rimasto scioccato nel vedere testo in chiaro.
- default_persistent = (0 o 1) per "mantieni il login"
- timezone = Codice fuso orario.
- lgnrnd = Non ho idea di cosa sia.
- lgnjs = Non ho idea di cosa sia.
- locale = posizione GeoIP (e.x. en_US)
Il post è effettuata sulla https://www.facebook.com/login.php?login_attempt=1. Tuttavia, quando provo ad accedere, restituisco che ho inserito un'e-mail errata. Sono sicuro di aver usato l'eMail e la password giuste.
Ecco il mio codice:
procedure TForm1.Button1Click(Sender: TObject);
var
TEST : STRING;
lParamList: TStringList;
i : Integer;
begin
lParamList := TStringList.Create;
lparamlist.Add('lsd=AVoBzJ5G');
lparamlist.Add('email=myeMail%40mysite.com');
lparamlist.Add('pass=mypass');
lparamlist.Add('default_persistent=0');
lparamlist.Add('timezone=240');
lparamlist.Add('lgnrnd=210302_FeQV');
lparamlist.Add('lgnjs=1367035381');
lparamlist.Add('locale=en_US');
IDHTTP1.Request.UserAgent := 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)';
Test := IdHTTP1.Get('https://www.facebook.com'); // To get the first cookies.
for i := 0 to IDHTTP1.CookieManager.CookieCollection.Count - 1 do begin
ShowMessage(IDHTTP1.CookieManager.CookieCollection.Items[i].CookieText); // Show me the cookies.
end;
TEST := IDHTTP1.Post('https://www.facebook.com/login.php?login_attempt=1', lParamList);
StrToFile ('text.html', test);
ShellExecute (0, 'open', 'text.html', '', '', SW_SHOW);
end;
ho usato i parametri che ho ricevuto da livehttpheaders. Come posso accedere a Facebook con Indy?
EDIT: provato con XE2 e Indy 10 ma ottengo l'errore 'e-mail non corretta':
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IdCookieManager, IdIOHandler,
IdIOHandlerSocket, IdIOHandlerStack, IdSSL, IdSSLOpenSSL, IdBaseComponent,
IdComponent, DateUtils, ShellAPI, IdTCPConnection, IdTCPClient, IdHTTP, Vcl.StdCtrls;
type
TForm1 = class(TForm)
IdHTTP1: TIdHTTP;
IdSSLIOHandlerSocketOpenSSL1: TIdSSLIOHandlerSocketOpenSSL;
IdCookieManager1: TIdCookieManager;
Button1: TButton;
Memo1: TMemo;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
function GetBetween (Str: String; StrStart : String; StrEnd : String) : String;
var
iPos : Integer;
BackUp : String;
begin
result := '';
iPos := Pos (StrStart, Str);
if iPos <> 0 then begin
Delete (Str, 1, iPos + Length (StrStart) - 1);
iPos := Pos (StrEnd, Str);
if iPos <> 0 then begin
result := Copy(Str,1, iPos - 1);
end;
end;
end;
function StrToFile(szFilePath:string; dwPosition:DWORD; szInput:string):Boolean;
var
hFile: DWORD;
dwSize: DWORD;
dwWritten: DWORD;
begin
Result := FALSE;
hFile := CreateFileW(PWideChar(szFilePath), GENERIC_WRITE, 0, nil, CREATE_ALWAYS, 0, 0);
if hFile <> INVALID_HANDLE_VALUE then
begin
dwSize := Length(szInput) * 2;
if dwSize > 0 then
begin
SetFilePointer(hFile, dwPosition, nil, FILE_BEGIN);
WriteFile(hFile, szInput[1], dwSize, dwWritten, nil);
if dwWritten = dwSize then
Result := TRUE;
end;
CloseHandle(hFile);
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
Response : String;
lparamList : TStringList;
begin
IDHTTP1.Request.UserAgent := 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)';
try
Response := IDHTTP1.Get('https://www.facebook.com/');
except
end;
lParamList := TStringList.Create;
lParamList.Add('lsd='+GetBetween (Response, 'name="lsd" value="', '"'));
lParamList.Add('[email protected]');
lParamList.Add('pass=myPassword');
lParamList.Add('default_persistent'+GetBetween (Response, 'name="default_persistent" value="', '"'));
lParamList.Add('timezone=240');
lParamList.Add('lgnrnd='+GetBetween (Response, 'name="lgnrnd" value="', '"'));
lParamList.Add('lgnjs='+inttostr(DateTimeToUnix(Now)));
lParamList.Add('locale=en_US');
IDHTTP1.Request.Referer := 'https://www.facebook.com/';
try
Response := IDHTTP1.Post('https://www.facebook.com/login.php?login_attempt=1', lparamList);
except
end;
StrToFile ('test.html', 0, Response);
ShellExecute (0, 'open', 'test.html', '', '', SW_SHOW);
end;
end.
Hai uno sniffer. Annusa i dati trasmessi da Indy e li confronta con i dati trasmessi da un browser web. –
È possibile utilizzare Fiddler per annusare i dati SSL, poiché funge da proxy locale. Configura automaticamente le app basate su WinInet, incluso Internet Explorer, per connettersi attraverso esso mentre è in esecuzione. Devi configurare altre app manualmente, incluso 'TIdHTTP' (che ha una proprietà' ProxyParams'). –
Uso Fiddler per sniffare il traffico SSL, compreso il traffico 'TIdHTTP', quindi so per certo che funziona. Assicurati di configurare la proprietà 'TIdHTTP.ProxyParams' per dire a' TIdHTTP' di connettersi a Fiddler e non direttamente al server HTTPS. –