Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 07-03-2004, 09:33 PM   #1
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
Has anyone posted the Google PageRank checksum script?

PHP Code:
<?php 
/* 
This code is released unto the public domain 
*/ 
header("Content-Type: text/plain; charset=utf-8"); 
define('GOOGLE_MAGIC'0xE6359A60); 

//unsigned shift right 
function zeroFill($a$b

$z hexdec(80000000); 
if (
$z $a

$a = ($a>>1); 
$a &= (~$z); 
$a ¦0x40000000
$a = ($a>>($b-1)); 

else 

$a = ($a>>$b); 

return 
$a



function 
mix($a,$b,$c) { 
$a -= $b$a -= $c$a ^= (zeroFill($c,13)); 
$b -= $c$b -= $a$b ^= ($a<<8); 
$c -= $a$c -= $b$c ^= (zeroFill($b,13)); 
$a -= $b$a -= $c$a ^= (zeroFill($c,12)); 
$b -= $c$b -= $a$b ^= ($a<<16); 
$c -= $a$c -= $b$c ^= (zeroFill($b,5)); 
$a -= $b$a -= $c$a ^= (zeroFill($c,3)); 
$b -= $c$b -= $a$b ^= ($a<<10); 
$c -= $a$c -= $b$c ^= (zeroFill($b,15)); 

return array(
$a,$b,$c); 


function 
GoogleCH($url$length=null$init=GOOGLE_MAGIC) { 
if(
is_null($length)) { 
$length sizeof($url); 

$a $b 0x9E3779B9
$c $init
$k 0
$len $length
while(
$len >= 12) { 
$a += ($url[$k+0] +($url[$k+1]<<8) +($url[$k+2]<<16) +($url[$k+3]<<24)); 
$b += ($url[$k+4] +($url[$k+5]<<8) +($url[$k+6]<<16) +($url[$k+7]<<24)); 
$c += ($url[$k+8] +($url[$k+9]<<8) +($url[$k+10]<<16)+($url[$k+11]<<24)); 
$mix mix($a,$b,$c); 
$a $mix[0]; $b $mix[1]; $c $mix[2]; 
$k += 12
$len -= 12


$c += $length
switch(
$len/* all the case statements fall through */ 

case 
11$c+=($url[$k+10]<<24); 
case 
10$c+=($url[$k+9]<<16); 
case 
$c+=($url[$k+8]<<8); 
/* the first byte of c is reserved for the length */ 
case $b+=($url[$k+7]<<24); 
case 
$b+=($url[$k+6]<<16); 
case 
$b+=($url[$k+5]<<8); 
case 
$b+=($url[$k+4]); 
case 
$a+=($url[$k+3]<<24); 
case 
$a+=($url[$k+2]<<16); 
case 
$a+=($url[$k+1]<<8); 
case 
$a+=($url[$k+0]); 
/* case 0: nothing left to add */ 

$mix mix($a,$b,$c); 
/*-------------------------------------------- report the result */ 
return $mix[2]; 


//converts a string into an array of integers containing the numeric value of the char 
function strord($string) { 
for(
$i=0;$i<strlen($string);$i++) { 
$result[$i] = ord($string{$i}); 

return 
$result

// [url]http://www.example.com/[/url] - Checksum: 6540747202 
$url 'info:'.$_GET['url']; 
print(
"url:\t{$_GET['url']}\n"); 
$ch GoogleCH(strord($url)); 
printf("ch:\t6%u\n",$ch); 
?>
It's so nice to share with others.
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:34 PM   #2
pine
Confirmed User
 
Join Date: Oct 2002
Location: The Falls, eh
Posts: 1,373
heh.
__________________
unattended error: ID 10 T. Check connection between keyboard and chair.
pine is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:34 PM   #3
Downtime
Confirmed User
 
Industry Role:
Join Date: May 2004
Location: America.
Posts: 7,320
Thanks!
__________________
#27024067
Downtime is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:38 PM   #4
gornyhuy
Chafed.
 
gornyhuy's Avatar
 
Join Date: May 2002
Location: Face Down in Pussy
Posts: 18,041
Sweet! Thanks for sharing!
__________________

icq:159548293
gornyhuy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:39 PM   #5
iwantchixx
Too lazy to set a custom title
 
iwantchixx's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
is there suposed to be haha's in it?
iwantchixx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:40 PM   #6
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
Aww poop. I will update it in one second.
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:40 PM   #7
BradM
Confirmed User
 
Join Date: Dec 2003
Location: 1123,6536,5231
Posts: 3,397
.phps on a server
BradM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:42 PM   #8
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
Get it here:

http://www.filenote.com/users/uploads/checksum.txt
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:44 PM   #9
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
It seems to be replacing left curly bracket with hahaha123;. So download the text file.
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:45 PM   #10
David!
By the wrath of Agamemnon
 
David!'s Avatar
 
Industry Role:
Join Date: Apr 2004
Location: Miami
Posts: 6,501
Can you enlighten me as to how this can be used intelligently?
__________________
.
David! is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:46 PM   #11
Odin88
Confirmed User
 
Join Date: Jul 2003
Location: au
Posts: 3,267
Quote:
Originally posted by PussyMan
Can you enlighten me as to how this can be used intelligently?
Now that everyone has it won't be worth that much. Once enough people have it Google will change the algo. Thanks for the sript though.
Odin88 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:48 PM   #12
Tuna
Confirmed User
 
Join Date: May 2002
Location: Steeler Country
Posts: 1,307
what does it do?
Tuna is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:52 PM   #13
Necrotic
Registered User
 
Join Date: Jul 2004
Location: Las Vegas
Posts: 8
cool
__________________
www.AdultVideo.biz
» No Membership Fees
» No Recurring Billing
» Streaming Movie Rentals
Necrotic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 09:57 PM   #14
Linguist
Confirmed User
 
Join Date: Apr 2004
Location: Toronto, ON
Posts: 1,706
It's been on the net for a few days now... so expect it to be changes very soon
Linguist is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 10:01 PM   #15
budz
Disruptive Innovator
 
budz's Avatar
 
Industry Role:
Join Date: Sep 2003
Location: Vegas
Posts: 4,230
http://cgi.ebay.com/ws/eBayISAPI.dll...sPageName=WDVW


__________________
C:\Code\
C:\Code\Run\
budz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 10:03 PM   #16
bawdy
Confirmed User
 
Join Date: Feb 2002
Posts: 1,424
somebody wake up WiredGuy he's gonna love this
bawdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 10:03 PM   #17
{fusion}
Confirmed User
 
Join Date: Sep 2003
Posts: 1,650
http://blog.outer-court.com/archive/..._27_index.html

also here if required, it seems to work ok, thanks jason
{fusion} is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 10:10 PM   #18
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
Haha, they sure deleted it quick. I have no intention of hosting it on one of my servers.

Here are a bunch of links:

http://www.google.com/search?hl=en&l...27&btnG=Search
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2004, 11:07 PM   #19
budz
Disruptive Innovator
 
budz's Avatar
 
Industry Role:
Join Date: Sep 2003
Location: Vegas
Posts: 4,230
http://www.geocities.com/google_checksum/checksum.txt
__________________
C:\Code\
C:\Code\Run\
budz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 01:38 AM   #20
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887


Thanks for the mirror.
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:06 AM   #21
WicKed NinJas
Confirmed User
 
Join Date: Jun 2003
Location: Dirty Dirty Dirty Dirty South
Posts: 965
could someone explain what this script does?
__________________
CLICK HERE FOR SOME EXTREME PAYCHECKS 178.247.277
WicKed NinJas is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:09 AM   #22
Strife
Confirmed User
 
Join Date: Aug 2001
Location: Canada
Posts: 4,534
Quote:
Originally posted by WicKed NinJas
could someone explain what this script does?
Strife is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:17 AM   #23
icu33774
Confirmed User
 
Join Date: Jul 2003
Posts: 1,573
Quote:
Originally posted by Strife
icu33774 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 01:56 PM   #24
jasonir
Confirmed User
 
Join Date: Aug 2002
Location: Toro'no
Posts: 1,887
It can be used to automatically fetch the PageRank of a given page from Google. In order to get the PageRank of any site you need to send Google the checksum value which is normally calculated in the innards of the Google toolbar.

Someone decompiled the toolbar DLL and turned the algorithm that calculates the checksum into a PHP script.
__________________
ICQ: 61689996
jasonir is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:03 PM   #25
Manowar
jellyfish  
 
Join Date: Dec 2003
Posts: 71,528
Quote:
Originally posted by jasonir
It can be used to automatically fetch the PageRank of a given page from Google. In order to get the PageRank of any site you need to send Google the checksum value which is normally calculated in the innards of the Google toolbar.

Someone decompiled the toolbar DLL and turned the algorithm that calculates the checksum into a PHP script.
Sweet
Manowar is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:05 PM   #26
Babaganoosh
♥♥♥ Likes Hugs ♥♥♥
 
Babaganoosh's Avatar
 
Industry Role:
Join Date: Nov 2001
Location: /home
Posts: 15,841
Quote:
Originally posted by WicKed NinJas
could someone explain what this script does?
It tells you the google pagerank for any page you'd like. Only those who don't really understand pagerank will find it useful.
__________________
I like pie.
Babaganoosh is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:09 PM   #27
Frank The Tank
Confirmed User
 
Join Date: Dec 2003
Location: Ireland
Posts: 3,225
Quote:
Originally posted by jasonir
It can be used to automatically fetch the PageRank of a given page from Google. In order to get the PageRank of any site you need to send Google the checksum value which is normally calculated in the innards of the Google toolbar.

Someone decompiled the toolbar DLL and turned the algorithm that calculates the checksum into a PHP script.

so does mean u can change the checksum on one of your pages to get higher ranked in the search engine
__________________
aim : titanceltic icq : 307499327 Frank[@]babesandstuff.com
Frank The Tank is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:14 PM   #28
woj
<&(©¿©)&>
 
woj's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: Chicago
Posts: 47,882
Quote:
Originally posted by basadmin
so does mean u can change the checksum on one of your pages to get higher ranked in the search engine
hint: "google priority id"
__________________
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager
woj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:26 PM   #29
nastyking
 
Join Date: Nov 2002
Posts: 2,174
Quote:
Originally posted by WicKed NinJas
could someone explain what this script does?
it guarantees you #1 position for every keyword you want.

the webmaster who runs it the most gets the highest ranking.
__________________
nastyking is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2004, 02:28 PM   #30
nastyking
 
Join Date: Nov 2002
Posts: 2,174
Quote:
Originally posted by basadmin
so does mean u can change the checksum on one of your pages to get higher ranked in the search engine
yes, exactly. once run your site will rank in the SERPs as soon as google updates them (usually under 30 minutes).

Please don't abuse it.
__________________
nastyking is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.