PHStamp won't work..

R4z<3

Newbie
Joined
Dec 23, 2012
Messages
2
Reaction score
0
Well, yesterday my freind gave me a list of 500k facebook accounts, 7.5k from them are working and i tried to make my own AutoLiker, and etc and i found out the problem is the PHSTAMP, i googled a little bit.. and i found this code :
PHP:
function generatePhstamp(qs, dtsg) {    var input_len = qs.length;    numeric_csrf_value='';
    for(var ii=0;ii<dtsg.length;ii++) {        numeric_csrf_value+=dtsg.charCodeAt(ii);    }    return '1' + numeric_csrf_value + input_len;}
but it won't work.. any suggestions ?
 
It works, the function can easily be found in the javascript on any facebook page. Just make sure you generate the hash without "&phstamp=xxxx" appended to the query string. You should append it after you have generated it.
 
i generated a php function, and with the software it also doesn't work..
PHP:
	public function generatePhstamp($qs, $dtsg) {		$input_len = strlen($qs);		$numeric_csrf_value='';		for($ii=0;$ii<strlen($dtsg);$ii++) {			$numeric_csrf_value .= $this->charCodeAt($dtsg,$ii);		}		return '1' . $numeric_csrf_value . $input_len;
}
why it won't work ?
 
What 's number xxx of "&phstamp=xxx"? where can i get it on facebook? Thanks
 
Back
Top