What technique Scrapebox is using?

free

Junior Member
Joined
Aug 25, 2007
Messages
171
Reaction score
94
I'm curious what is the technique that SweetFunny using in her Scrapebox since it perform a very large amount of queries on Google and it VERY fast!

I know SB do multi-threading thing but IMO using 'HttpWebRequest' and phrasing data should not enough.

if you have any clue, pls give me some hint :D
 
Why dont you ask Sweetfunny via supportmail? Or do you need info for cracking the software?

Anyway... I dont know what you refer to with technique. Why shouldnt it be possible to have a large amount of connections? Or what do you mean?
 
Well, I'm new to term of programming and I mentioned to scrapebox because I bought it and got some inspiration when I use it.
Of course scrapebox is the best in its tasks IMO so I just want some hints to starting to coding my own custom bot!

pls not so negative dude.
 
The SB team will surely not reveal the methods used for harvesting or posting etc.
It took month's and endless hours to get it just right.
 
If the 2 links should be related to SB, wrong. SB does not use .net or such.
 
Im sure he's using multithreading as well. Anyway speed always depends on your connection speed.
 
maybe she use something to call Sb in own server, so it helps Sb user to get faster,
 
This is something i would like to know as well to improve my code. Downloading all those pages + regex them would probably take more time than it takes imo :x
 
Windows socket's cant do a shit if you have slow connection.

OP asked what scrapebox uses, Im sure its sockets. Youre wrong, sockets can do a shit if you have a slow connection, its fast cause it only loads the needed parts of the page, it wont load the images etc. And if you will be using tools like scrapebox, you obviously need a fast connection.
 
Actually i saw somewhere that it uses IE control and yes it uses multithreading
 
There are two ways I can think of off the top of my head:

1: Using some kind of Web Browser control and using DOM to quickly fill out and submit forms. You can definitely multi-thread this by using a control array. This would be easy, and would look like a real browser, down to executing JS... mostly because it's pretty much a real browser. This would have a heavy bandwidth footprint.

2: Using raw sockets, which wouldn't execute images or transfer the binary of images. You could grab the source and use Regex to handle things.
 
goawayplease is on the right path.

using a wb control is never going to go fast period, because it will always execute script code and load images etc.

sockets, inet, etc will pull raw source code and can be multi threaded without executing anything.
 
This is what i got when i checked using ResHack,looks like it is developed using CodeGear RAD Studio,i don't know much about software development,but if any of you know anything,see if this helps you!
 

Attachments

many of you suggest to go for socket programming
seem it will take time to study but it's good know where to start

thanks guys
 
Back
Top