View Full Version : Please help me to stop "Teleport".........
liang99
06-23-2001, 03:52 PM
Please give me advice or where i can find such info....Thank you!!!
DemonWolfe
06-23-2001, 03:57 PM
Whats a "Teleport"...
some 3rd part software?
PornoWill
06-23-2001, 04:06 PM
I think it is a download program that downloads whole websites.
it's very hard to detect it because you can set it so that it acts as if it was IE or Netscape... However unexperienced users don't set it so if you block "Teleport" user agent through rewrite in apache, it should cut some Teleport users...
Solution is very simple, so please listen all webmasters, who have trouble with offline browsers (Teleport Pro, Offline Explorer (Best!) )
Teleport pro is very simple web site mirroring program, its still very popular but there is no new version after 1.29
And if I'm not wrong, Teleport Pro 1.29 has no cookie support. That means, it can't read and send cookies.
If you use php or perl script, instead of .html files, you can send cookies and retrieve them for checking. If there is no cookie, simply send teleport pro to yahoo.com and visitor got a big trouble unless it configured teleport pro well http://bbs.adultwebmasterinfo.com/ubb/smile.gif
You can do that by javascript too! Its a better way. You can make a gateway with javascript, for checking cookie. If its ok, sends to mainpage.
with javascript cookie check, I'm sure no any offline browser pass that http://bbs.adultwebmasterinfo.com/ubb/smile.gif
If anyone wants, I can write a simple Enterance / Cookie Check Gateway
darksoft
06-24-2001, 04:03 AM
Go here for full info and an .htaccess file to download to stop these little turds...
http://www.myhottiez.com/nohotlink.html
liang99
06-24-2001, 07:02 AM
<font face="Verdana, Arial" size="2">Originally posted by XP:
with javascript cookie check, I'm sure no any offline browser pass that http://bbs.adultwebmasterinfo.com/ubb/smile.gif
If anyone wants, I can write a simple Enterance / Cookie Check Gateway
</font>
Hi, XP
Can I have that javascript code?
Thank you!!!
my e-mail: chang@a-liang.freeserve.co.uk
I just write a small one, I haven't tested it yet but it will work.
First put this code to your login page (or index page must before from gateway page!)
<script language="javascript">
if (document.cookie.indexOf("Visitor") == -1) {
var expdate = new Date((new Date()).getTime() + 86400);
document.cookie="Visitor=Confirmed; expires=" + expdate.toGMTString() + "; path=/;"
}
</script>
then put this script to your gateway page. (Placed on members/index.html or anywhere you want)
<script language="javascript">
if (document.cookie.indexOf("Visitor") == "Confirmed") {
window.location = "http://www.secret.com/members/";
} else {
window.location = "http://www.secret.com/fuckoff/";
}
</script>
<noscript>
<p>Please use a JavaScript capable browser</p>
</noscript>
or with frames, use this code on members/index.html (gives better results!)
<script language="javascript">
if (document.cookie.indexOf("Visitor") == "Confirmed") {
var mpage = "http://www.secret.com/members/main.html";
} else {
var mpage = "http://www.secret.com/members/sorry.html";
}
var out = "<html><head><title>Members Area</title></head><frameset border=\"0\" frameborder=\"0\" rows=\"100%,*\"><frame name=\"main\" src=\"" +mpage+ "\" scrolling=\"auto\"><noframes><center><a href=\"" +mpage+ "\">Your browser doesn't support frames, please go here to enter</a></center></noframes></frameset></html>";
document.write(out);
</script>
<noscript>
I recommend frame one http://bbs.adultwebmasterinfo.com/ubb/biggrin.gif
liang99
06-24-2001, 10:23 AM
<font face="Verdana, Arial" size="2">Originally posted by XP:
I just write a small one, I haven't tested it yet but it will work.
</font>
Thank you very much!!!
vBulletin® v3.7.3, Copyright ©2000-2012, Jelsoft Enterprises Ltd.