GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   PROGRAMMERS: can you do this ?? (https://gfy.com/showthread.php?t=153324)

NetRodent 07-16-2003 01:34 PM

It seems possible to get around the checksum. If you check out the lower left corner of http://www.bannedstuff.com/ they've got a working cgi version. I checked a few pages through it and the PR seemed right.

http://scripts.xrenoder.com/googpr.php also seems to work sometimes.

PowerCum 07-16-2003 02:31 PM

Ok, here is what I found, so perhaps someone could get some advantage of it.

checksum dependency:

navigator = NO
IP = NO
hour = NO
server IP = NO
domain = YES
page size = YES ??? after changing my page, the checksum changed
page modification date = YES ??? same as the page size.

The method I figured it would be fast to do it:

You will need the googlenav.dll (download the google toolbat .cab file from Google and extract the googlenav.dll from it.

If you dissasemble googlenav.dll (breaking the terms of service... but who the fuck cares?) you can see that it imports several other modules:
Wininet.dll
CRYPT32.dll
It includes several more, but these are the important.
The googlenav.dll will export these functions:
DllCanUnloadNow
DllGetClassObject
DllInfoA
DllRegisterServer
DllUpdated2
DllUpdated
DllVersionStringA
DllVersionStringW
As you can see, it does not export the PR nor the crc.
That is quite logical if you take in mind that it uses the WININET.dll HttpSendRequestA function. If you take a look at the WININET.dll imported functions, it almost starts it's own browser.
The CRYPT32.dll will use CryptQueryObject to help making the crc code.

Now the glitch is that you have a dll that will query by itself the page rank and some other info, so it could be included in any other browser or program and give the same results. The best method I guess it's to do that is just adding this dll to a program that makes page queries and then consults the dll.
The page rank is a value returned in pure text, so it could be captured by the browser (page rank checker program), or just the output on the googlenav.dll could be redirected to the program that checks the PRs. If you capture the reply, you will not violate google's license because you would not need to modify their dll. If you decide to modify the dll and make it redirect the output to something else, you will be breaking google's license (but who cares?). In any case, if you are about to modify the googlenav.dll (and break google's license) then it's just a better idea to modify the WININET.dll statements and make it load your own modification of wininet.dll, so it would modify several of the query methods. After all, the WININET.dll is used to comunicate with google's servers once the crc is calculated, so make it comunicate with your program instead of google's server.

Hope this helps you. I know almost nothing about windows because I'm unix geek, so I can't help much more. If you know any programmer familiar with windows internals, I think he could take some advantage of this post.

funkmaster 07-16-2003 02:32 PM

Quote:

Originally posted by goBigtime
Anyone speak french? (lol)

http://www.abc-actu.com/abc-pr.html


http://www.abc-actu.com/abc-pr/princ.jpg

... doesnīt work, and my firewall notified that it tried to connect to some IP during program start.

... and no, I am not interested in in the $5/1000 request offer, this way you guys will get the good domains first, I am not that stupid ... LOL !!

funkmaster 07-16-2003 02:33 PM

btw: thanks for your time on ICQ powercum, pretty much appreciated !!

bawdy 07-16-2003 02:46 PM

ok heres what ive come up with so far seems pretty easy

download a http sniffer like this one
http://www.effetech.com/sniffer/

write a simple program to open all the urls you want to obtain pr ... (dont forget to turn images/hahahahahahahahahaha/etc off so you dont waste bandwidth/get popups etc)

once this is done save the http sniffer log

write a simple program to parse log file to extract urls for pr query

execute url and save url/pr to csv file

funkmaster 07-16-2003 02:54 PM

Quote:

Originally posted by bawdy
ok heres what ive come up with so far seems pretty easy

download a http sniffer like this one
http://www.effetech.com/sniffer/

write a simple program to open all the urls you want to obtain pr ... (dont forget to turn images/hahahahahahahahahaha/etc off so you dont waste bandwidth/get popups etc)

once this is done save the http sniffer log

write a simple program to parse log file to extract urls for pr query

execute url and save url/pr to csv file

you are the man ... even I can code that ... fucking congrats !!

bawdy 07-16-2003 03:05 PM

hahahahaha = j avascrip t

it might help to connect via proxy so they dont get the same ip all the time

i could program it if your interested or im sure you could find many ppl who would be capable

PowerCum 07-16-2003 03:11 PM

Quote:

Originally posted by bawdy
hahahahaha = j avascrip t

it might help to connect via proxy so they dont get the same ip all the time

i could program it if your interested or im sure you could find many ppl who would be capable

Google detects your proxy and real IP.

If you have got the forbidden page when the checksum is not correct, you can see some crap stuff at the end of the page. It's a base64_encoded text, so use base64_decode("the-google-encrypted reply here)

It will give you the same think what you get if you put a sniffer. It's a complete sniff of your request.

If you connect in raw to the PR servers, you can see that they use a custom coded Google Web Server (GWS)

In any case, they did not blacklist my IP after 5k consecutive queries

fnet 07-16-2003 03:38 PM

Quote:

Originally posted by bawdy
ok heres what ive come up with so far seems pretty easy

download a http sniffer like this one
http://www.effetech.com/sniffer/

write a simple program to open all the urls you want to obtain pr ... (dont forget to turn images/hahahahahahahahahaha/etc off so you dont waste bandwidth/get popups etc)

once this is done save the http sniffer log

write a simple program to parse log file to extract urls for pr query

execute url and save url/pr to csv file

you don't even need the sniffer

you also don't want ie starting new instances- so are you automating ie or hitting the urls some other way? automation is only simple if you know what you're doing :)

bawdy 07-16-2003 03:48 PM

Quote:

Originally posted by fnet


you don't even need the sniffer

you also don't want ie starting new instances- so are you automating ie or hitting the urls some other way? automation is only simple if you know what you're doing :)

use winapi to open a new window... when the window opens you are returned a handle to the window which you can use to either change the url or close the window when your done with the query

for example you could open 4 windows each of which cycles through a bunch of urls

fnet 07-16-2003 04:13 PM

Quote:

Originally posted by bawdy


use winapi to open a new window... when the window opens you are returned a handle to the window which you can use to either change the url or close the window when your done with the query

for example you could open 4 windows each of which cycles through a bunch of urls

just figured out how to do it with automation in 7 lines of code.

popping and dropping windows will kill you on load times.

need to do this against 1 million+ urls with no display window. has to be automation.

btw, i'd be happy to provide my code to someone who wants to trade something for it.

Dildozer 07-17-2003 09:58 PM

I'll trade you lil2rich4u2 and 2 swoit sigs

igneus 07-19-2003 05:14 PM

I just finished reversing google's checksum algo, which means I could make you guys a program that checks a bunch of urls in the background instead of using a bunch of IE's and the google toolbar (not sure what you're doing now)

PM me or respond here if you're interested and I'll start working on it. I don't need it for anything, so if nobody wants it, I'll just leave it alone and won't waste anymore time. :)

igneus 07-19-2003 06:53 PM

..Or AIM me at 'jcsn3409'--didn't know pm's were disabled. :)

Dildozer 07-19-2003 07:12 PM

Quote:

Originally posted by igneus
..Or AIM me at 'jcsn3409'--didn't know pm's were disabled. :)
you got icq? hit me up

igneus 07-19-2003 07:36 PM

Downloaded icq and have no idea how to use it, but you guys can contact me at that too: 201430673

nuclei 07-19-2003 08:36 PM

Oh come on now, you have got to be joking about this being hard or "being able to make it but not show you made it".
come on guys.

http://4retards.com/pagerank.pl

igneus 07-19-2003 09:05 PM

I didn't say it was hard. Posting a screenshot of the program wouldn't prove anything, so I didn't.

Cute perl script. :thumbsup

bawdy 07-19-2003 09:05 PM

Quote:

Originally posted by nuclei
Oh come on now, you have got to be joking about this being hard or "being able to make it but not show you made it".
come on guys.

http://4retards.com/pagerank.pl

?? any of the below:
CRC32
MD5
SHA1
SHA256
SHA384
SHA512

nuclei 07-19-2003 09:09 PM

Quote:

Originally posted by igneus
I didn't say it was hard. Posting a screenshot of the program wouldn't prove anything, so I didn't.

Cute perl script. :thumbsup

Thanks.

You should make 2 versions. a free version that does only one url at a time, and then the paid one that does a full list. showing people what you have works will sell a lot more.

igneus 07-19-2003 09:22 PM

Quote:

Originally posted by nuclei


Thanks.

You should make 2 versions. a free version that does only one url at a time, and then the paid one that does a full list. showing people what you have works will sell a lot more.

Yeah, I was going to do something like that, but it could just be automated with some simple API. And I don't really "have" anything yet because I was waiting to see if anyone wanted it before starting the actual list checker. What I have now just generates the checksum for the URL--the only part of the list checker that poses any sort of challenge--but it's useless. :)

Here's a screenshot of it and all it's glory if you want to see it though: http://www.sunday.ru/pottery/prview.jpg

Generates the URL as you type and, like I said, doesn't really prove much since if I really wanted to I could put all that information in manually. 8-T

nuclei 07-20-2003 05:49 AM

heh everyone shut up pretty quickly on that one :1orglaugh

igneus 07-20-2003 11:49 AM

http://www.sunday.ru/pottery/pagerank.jpg

:)

swedguy 07-20-2003 11:55 AM

Quote:

Originally posted by igneus
http://www.sunday.ru/pottery/pagerank.jpg

:)

Very nice :thumbsup

Dildozer 07-20-2003 11:58 AM

-1 ???:eek7

richard 07-20-2003 12:00 PM

Quote:

Originally posted by Dildozer
-1 ???:eek7
could be the default for urls not checked yet

igneus 07-20-2003 12:00 PM

-1 when it hasn't been checked yet, hehe

edit: Richard wins 8-(

Dildozer 07-20-2003 12:00 PM

btw how fast is it?

igneus 07-20-2003 12:01 PM

Where can I get a big list to try it with? Did that list in like a second. 8-T

4eym 07-20-2003 12:12 PM

Nice, nice... So, when does it become available?

igneus 07-20-2003 12:24 PM

Just tried a list Dildozer gave me with one thread going and it went about 5/sec, but now I know what needs to be improved. :) (didn't think lists would be so enormous)

I'll probably make it use a couple more threads to speed it up a bit.

And, as I've found, having no stop button is terribly inconvenient--can't believe I forgot that, lol.

So, once I give it a couple more threads, a stop button (:thumbsup) and optimize a couple little things for the big list size, it should be good to go. :)

funkmaster 07-20-2003 12:25 PM

igneus, got paypal ?

... please answer my ICQ requests, I am going to buy it !

igneus 07-20-2003 12:29 PM

You sent me icq requests? lol

How do I get them? I normally use aim 8-T

edit: and yes, paypal's great

funkmaster 07-20-2003 12:30 PM

Quote:

Originally posted by igneus
You sent me icq requests? lol

How do I get them? I normally use aim 8-T

edit: and yes, paypal's great

... well, you posted this UIN 201430673 ... and the nick says igneus ... so thatīs not you ?

Dildozer 07-20-2003 12:40 PM

Quote:

Originally posted by funkmaster


... well, you posted this UIN 201430673 ... and the nick says igneus ... so thatīs not you ?

nice sig lol

bawdy 07-20-2003 12:52 PM

Quote:

Originally posted by igneus
http://www.sunday.ru/pottery/pagerank.jpg

:)

very cool.. :)

funkmaster 07-20-2003 12:58 PM

Quote:

Originally posted by Dildozer


nice sig lol

... did you sign up ??

Dildozer 07-20-2003 01:01 PM

Quote:

Originally posted by funkmaster


... did you sign up ??

won't work

funkmaster 07-20-2003 01:09 PM

Quote:

Originally posted by Dildozer


won't work

... pretty much like swoit then , LOL !!

funkmaster 07-20-2003 01:54 PM

... thanks igeus, could be some of the best $2500 I have spent this year ... excellent piece of software, you should rise the price now !!

Brujah 07-20-2003 04:02 PM

Igneus,

Was it 5 names per second now ? Or faster ?

Either way, looks good.

igneus 07-20-2003 04:55 PM

It's roughly 5-8/sec now. Once I finish multithreading (starting that now), it should be closer to 30-40+/sec, depending on bandwidth. :thumbsup

HEARTBREAKER 07-20-2003 06:20 PM

hit my sig!!!!!!!!http://burns.thefinaldimension.org/otn/angry/eatme.gif

Swanks 07-20-2003 11:13 PM

Works like a charm, excellent program and created by very talented guy. Ill vouch for that, :thumbsup

From what ive read up on and heard its not as easy to create as everyone had thought. At least for something similar to igneus' :Graucho

funkmaster 07-21-2003 01:43 AM

... put it this way, I picked up 3 PR6 domains yesterday within 30 min ... ssame stuff would have taken me days without this little proggy ... so is it worth itīs money, yes it is ...

nuclei 07-21-2003 05:25 AM

Quote:

Originally posted by swank
Works like a charm, excellent program and created by very talented guy. Ill vouch for that, :thumbsup

From what ive read up on and heard its not as easy to create as everyone had thought. At least for something similar to igneus' :Graucho

actually it isnt that hard to do in any language.

Igneus: glad to see yer making some sales :)

The perl and now php versions we have went like hotcakes to the people we allowed to have it.

igneus 07-26-2003 04:07 PM

Thanks nuclei :)

Quick update (last bit of spam :))..I've started off the multithread version with 5 threads and it does about 850 domains/minute (~14/sec--a little less than I anticipated, hehe) now. Upping it to 10 threads didn't seem to have much effect, but it could just be my setup/bandwidth/etc--I'm still tweaking around with it.

The single thread one hangs out at around 5-8 domains/second.

I've been told to only get rid of a few copies, sooo that's what I'll do--icq me if you're still interested. :)

Thanks for the support funkmaster :thumbsup

michaelw 07-26-2003 06:10 PM

http://www.biggiemovies.com/main.JPG

its done
icq 146423631

hudson 08-08-2003 08:56 PM

hey...if anyone has it, please post up the russian solution to this problem on a linux platform...thanks in advance ;-)


All times are GMT -7. The time now is 09:16 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123