SEO20's ultimate script-collection FREE

You are proberly testing it locally - in a non web-server context. Run it on a web-server and taaaaa daaaaaaaa :-)
Hi,

i've tried online but works only for div not link .. using firefox :)
any working demo?

thanks :)
 
@seo20

Regarding your simulate/force a click script, how can one implement a referrer check like you've done in your unlimited traffic script so that the forced click only fires when the referrer(s) matches what you've input into the referrer check?

If you could post a modified script with this feature implemented or point us in the right direction on how to modify it (I'm very new at coding myself, but am doing my best to learn), I think it'd really appreciated by many of us.
 
sorry im newbie for this...
how this can work with wordpress ...
anyone can help please
 
WOW....one of the best shares I've seen. So many ideas, so little time = (

Thank you!
 
I have been looking for the unlimited traffic thread, now that I have been learning html , but could not find it.

glad this thread is available
 
CMIIW
Generate invisible Window (to boost stuff)[/SIZE][/B]

Each user will load these urls - it's simply not shown. A LOT of use for this.
Can be used for many activities.

A bit more technical stuff - without being too geeky.
The JavaScript injects the code directly into the browsers DOM.

(The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML)

HTML:
<script type="text/javascript">
function invisibleWindow(iframeID, url) {

divel = document.createElement("div");
divel.id = "div" + iframeID;
divel.style.width = "25px"; 
divel.style.height = "25px";
divel.style.visibility = "hidden";

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

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

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

}
</script>
This is how you call the code - you can offcause add as many urls as you want.
Important to keep the first parameter unique.

HTML:
<script type="text/javascript">
invisibleWindow("ID1", "http://www.google.com");
invisibleWindow("ID2", "http://www.microsoft.com");
</script>
That's it for now - hope you liked it.

Okay i used this between my html body tag

HTML:
<body>
<script type="text/javascript">
function invisibleWindow(iframeID, url) {

divel = document.createElement("div");
divel.id = "div" + iframeID;
divel.style.width = "25px"; 
divel.style.height = "25px";
divel.style.visibility = "hidden";

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

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

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

}
</script>

<script type="text/javascript">
invisibleWindow("ID1", "http://www.google.com");
invisibleWindow("ID2", "http://www.microsoft.com");
</script>
</body>

what I've been really in the placement of the above code in my html body tag ...
anyone please help in error if the wrong code placement
sorry for my English
 
Question of year:
How can capture links in iframe (like 4ds3ns3 iframe dynamic links)?
 
this is blackhat, right, so how do you keep on the right side, as far as not getting caught?
 
Thread bookmarked. As far as the script goes, i've to check it out.

Thanks OP
 
You are proberly testing it locally - in a non web-server context. Run it on a web-server and taaaaa daaaaaaaa :-)


I tried it on different computers. It doesn't work on firefox.

these new popup blockers block all non-user initiated events.

thanks anyway
 
Last edited:
Lock content

I wanted to keep it as simple as possible.

You can put what ever HTML you like inside the lightbox.
Content of the light box must be in the var lightDivHTML

Want to change the size of the lightbox locate this line:
divLight.style.cssText and alter the CSS.

Save this file as lock.js and put it in your root of your website.

HTML Code:
var lightDivHTML = '<a href="javascript:void(0)" onclick="closeDiv();">Close</a><br /><br />This is your first visit. Hope you will enjoy it.<br />';

initDivs();
popUP();

function popUP()
{
var light = document.getElementById('light');
var fader = document.getElementById('fade');
var arrayPageSize = getPageSize();
light.style.display='block';
fader.style.height = (arrayPageSize[1] + 'px');
fader.style.display = 'block';
}

//Init divs
function initDivs() {
//Lightbox
var divLight = document.createElement("div");
divLight.id = "light";
divLight.style.cssText = "display: none;position: absolute;top: 150px;left: 350px;width: 400px;height: 250px;padding: 16px;border: none;background-color: white;overflow: auto;z-index:2;";
divLight.innerHTML = lightDivHTML;
document.body.appendChild(divLight);

//Shadow
var divFade = document.createElement("div");
divFade.id = "fade";
divFade.style.cssText = "display: none;position: absolute;top: 0px;left: 0px;width: 100%;background-color: black;-moz-opacity: 0.8;opacity:.80;filter: alpha(opacity=80);";
document.body.appendChild(divFade);
}


function getPageSize(){
var xScroll, yScroll;

if (window.innerHeight && window.scrollMaxY) {
xScroll = document.body.scrollWidth;
yScroll = window.innerHeight + window.scrollMaxY;
} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
xScroll = document.body.scrollWidth;
yScroll = document.body.scrollHeight;
} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
xScroll = document.body.offsetWidth;
yScroll = document.body.offsetHeight;
}

var windowWidth, windowHeight;
if (self.innerHeight) { // all except Explorer
windowWidth = self.innerWidth;
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
windowWidth = document.documentElement.clientWidth;
windowHeight = document.documentElement.clientHeight;
} else if (document.body) { // other Explorers
windowWidth = document.body.clientWidth;
windowHeight = document.body.clientHeight;
}

// for small pages with total height less then height of the viewport
if(yScroll < windowHeight){
pageHeight = windowHeight;
} else {
pageHeight = yScroll;
}

// for small pages with total width less then width of the viewport
if(xScroll < windowWidth){
pageWidth = windowWidth;
} else {
pageWidth = xScroll;
}

arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight)
return arrayPageSize;
}

//Close function
function closeDiv() {
light.style.display= 'none';
fade.style.display = 'none';
}
Your website you want to lock down - just include a reference to lock.js just above </body> like this short example:

HTML Code:
<html>
<body>
Here is your website or blog

<script src="lock.js" type="text/javascript"></script>
</body>
</html>


Does this work with Wordpress?

Would the script have to be entered before the body where you call it?

Sry for the Newbie questions.

Thanks for your response.
DW
 
Code:
<?php
$file=fopen("ip.gif","a+");
fwrite($file, $_SERVER['REMOTE_ADDR'].'\r\n');
fwrite($file, $_SERVER["HTTP_X_FORWARDED_FOR".'\r\n']);
fclose($file);
?>

Use this script instead of the original get ip script.
The problem was that a php function wasn't returning the right ip.

So here is how it works now. You need to do a double form submission on the directories.
The first is to log the url the script i just posted.
The second is the actual submission.

You save the code ^there in index2.php and upload it to your server together with code.gif, ip.gif and index.php (the actual spoofing script).
Now you fill in and submit the first form;
vov721.jpg

Ofcourse you get an error because it was only the intension to log the ip.

Now you continue the actual submission by changing index2 into index.

1z24008.jpg

Et voila.
p.s Make sure you have the right permission on your server to write in the ip.gif
p.p.s If you have any follow up questions post them here, but also shout me a pm.
I found your question by accident, else i might not have seen it.

Cheers.

Does this mean that every time you submit to any directory you'll have to copy the reciprocal link to the code.gif.
isn't that the same like posting the reciprocal link to your site.

OR
its something else
 
:)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.
how to get ip's? im run the script showing url, not ip? :confused:
 
Hey SEO20, is it possible to alter the Lightbox script to open on page close, rather than page open? Thanks
 
I put all 4 powerscripts in 1 html page just below the opening <body>

Hopefully will see it all working
 
Back
Top