NEED fake hits script

Anubis1980

Regular Member
Joined
Mar 20, 2010
Messages
281
Reaction score
81
Hi ,

i need a script wich can:

fake hits with:
- unique ip ( proxy spining )
- unique user agents ( a bunch of user agents can be saved in the list )
- click and stay for a while in the site (simulating "user")


any idea, any url?

Thank you in advance
 
I think I might have 1 in my PC, I'll try to get it for you tomorrow if I can, but don't expect it :(
 
Search the forum for [GET] Traffic and Linking Tools , it might be the program that you're looking for.
 
How much do you want to spend?
 
you can also check out bbrez's fastvisits:
Code:
http://www.blackhatworld.com/blackhat-seo/member-downloads/223353-get-fastvisits-v1-1-get-hundreds-visitors.html
but i think - just like the other tool mentioned in this thread - it isn't acting like a real human and cannot stay on the site for a while
 
very basilar java app example that visit a list of urls with random user agent and proxy and print the page title:

it uses htmlunit which is full browser written in java, it read all images, css, it read and execute javascript with an internal javascript engine, you can programmatically fill web forms, submit, click on buttons or on links.

Code:
public class WebClick {

    public static BrowserVersion[] userAgents = new BrowserVersion[]{
        BrowserVersion.FIREFOX_2,
        BrowserVersion.FIREFOX_3,
        BrowserVersion.INTERNET_EXPLORER_6,
        BrowserVersion.INTERNET_EXPLORER_7
    };

    public static String[] urlsToVisit = new String[]{
        "url1",
        "url2",
        "url3" /*i cannot post url because of forum limitation*/
    };

    public static String[][] proxies = new String[][]{
        new String[]{"proxy1","3128"},
        new String[]{"proxy2","3128"}
    };

    static SecureRandom RAND = new SecureRandom();

    public static void main(String[] args) throws Exception {
        for (int i = 0; i < urlsToVisit.length; i++) {
            BrowserVersion agent = userAgents[RAND.nextInt(userAgents.length)];
            String[] proxy = proxies[RAND.nextInt(proxies.length)];
            WebClient browser = new WebClient(agent,proxy[0], Integer.parseInt(proxy[1]));
            HtmlPage page = browser.getPage(urlsToVisit[i]);
            String title = page.getElementsByTagName("title").get(0).getTextContent();
            System.out.println("visited url "+urlsToVisit[i]+" with  proxy "+proxy[0]+" "+proxy[1]+", user agent  "+agent.getApplicationName()+" and the result page title is  '"+title+"'");
        }
        
    }
    
}
 
If you google clickbots you'll find these things have been freely available forever, but at the same time that means whatever you're trying to cheat probably has some kind of protection they just don't get around.
 
Yeah dude if your trying to fill offers out or beat adsense you can forget it. Plus you'll never really get far by doing this to the industry if you keep it 100 with the money it keep 1,000 with you.
 
+1 for HtmlUnit, recommended by Aristide.

I do a lot of my work with Python + PyCurl, which is incredibly flexible and productive. Its one downfall is that it doesn't execute javascript. HtmlUnit handles javascript automatically.

JWebUnit adds a layer on top of HtmlUnit/JUnit, which makes things a little easier than just HtmlUnit.

--Ma

P.S. Unless you really know what you are doing, you are probably going to do more harm than good by faking hits. Be careful.
 
Back
Top