Programming: Facebook Account Creator

lamat

Newbie
Joined
Jan 4, 2014
Messages
7
Reaction score
3
Hi,
i'm programming fb ac with Delphi. i can create an account but the page say "you must confirm your phone or e-mail"

any idea?

post areas for test:

mail:='[email protected]'; //

t1 := explode('name="lsd" value="',s,0);
t2:=explode('"',t1[1],0);
s1:=t2[0];
lParamList.Add('lsd='+s1);

t1 := explode('name="reg_instance" value="',s,0);
t2:=explode('"',t1[1],0);
s1:=t2[0];
lParamList.Add('reg_instance='+s1);

lParamList.Add('firstname=AYPERO');
lParamList.Add('lastname=AYTEPE');
lParamList.Add('reg_email__='+mail);
lParamList.Add('reg_email_confirmation__='+mail);
lParamList.Add('reg_passwd__=123456tyye');
lParamList.Add('birthday_day=10');
lParamList.Add('birthday_month=11');
lParamList.Add('birthday_year=1982');
lParamList.Add('sex=1');
lParamList.Add('referer=');
lParamList.Add('terms=on');
lParamList.Add('ccp=2');
lParamList.Add('mbt=24');
lParamList.Add('locale=tr_TR');
lParamList.Add('asked_to_login=0');
lParamList.Add('recaptcha_type=password');
lParamList.Add('multi_page_js_state=passed');
lParamList.Add('charset_test=€,´,€,´,水,Д,Є');



if i can finish this project i'll share on bhw.
 
the email is random. i have not got this email address.
 
You will need phone confirmation so a API will be needed .
First API call will be for the number and the callback will be for the the sms confirmation .
 
i beliving, we can bypass phone confirmation. I dont want use 3rd party website or api for free applications. I'm searching a secret hole for this way.
 
i beliving, we can bypass phone confirmation. I dont want use 3rd party website or api for free applications. I'm searching a secret hole for this way.
hope you'll find the solution to bypass phone verification and looking forward to hear it from you.
good luck :)
 
Try using disposable e-mails, that should work better than your current solution.
 
Any idea how fb account seller bypass phon verification?
 
Back
Top