Hey, I'm pretty sure there is a little snippet of code which makes it harder for inexperienced webmasters to snarf html like say metatags or whole freaking pages. Anybody know offhand what that code snippet is? Thanks for any help y'all may be able to give me.
How do I hide my source code from copy pasters?
Collapse
X
-
How do I hide my source code from copy pasters?
Tags: None -
Originally posted by Equinox
check out PK's source. very effective.
The irony factor of looking at someone's source code in order to figure out how to protect your own is not lost on me. So how do I do that and does that hide anything from search engines, or only from nosy copycats?
Comment
-
-
Originally posted by AmeliaG
The irony factor of looking at someone's source code in order to figure out how to protect your own is not lost on me. So how do I do that and does that hide anything from search engines, or only from nosy copycats?
cough, scroll down on that page. I see it even fooled you.Comment
-
Originally posted by ztik
this what your looking for?
http://www.evrsoft.com/developers/encrypter.shtml
Will
The thing at the top of that page which says:
[an error occurred while processing this directive]
concerns me. I don't want my code scrambled, just harder to steal.Comment
-
Originally posted by Equinox
cough, scroll down on that page. I see it even fooled you.
Wow. That is fucking inspired. Thank you.Comment
-

ALL Domains and Websites are GOING AWAY NOW! Ask me!
Many great domains, mainstream and adult, some complete sites with databases, some names with traffic and PR, some investment quality names. Come take a look! { Traffic Orders: Please go here }
.:: SHARPEN the Elite - BURN the leftovers! Ooh-Rah!! ::.Comment
-
omg...that's too good. I've checked out her source in the past (trying to find out some of her secrets, obviously)...and was immediately "shut down" by the phony error. Kudo's to Kitty.Originally posted by Equinox
check out PK's source. very effective.Sig too big
http://www.gofuckyourself.com/gfy_faqs.html
Want to use a large banner in your sig??? Contact Eric about getting on as an advertiser - eric AT adult.comComment
-
this is what you are looking for... it works very good...
http://www.fantomaster.com/faarticles/cloakmetatags.txtComment
-
PK???Originally posted by overlord
That is fucking clever on PK
u mean do this:
'SSI DHTML ERROR 402 - FILE NOT FOUND'
then put your html below<a href="http://www.jensmoviepost.com">
JensMoviePost.com</a> - Looking for 1K+ Sized Trades!
ICQ# 328466504 or Signup Directly!Comment
-
In order for the browser to be able to parse the HTML code to begin with, it has to be send readable code. There is no possibly way to properly "hide" HTML source. If it was hidden then the browser wouldn't be able to read it, either.
There's never anything worth "hiding" anyhow.Comment
-
search engines will see the Meta Tags... but, surfers will not.Comment
-
Originally posted by Socks
I would use a small couch, or a sectional.
Comment
-
Originally posted by 12clicks
Amelia, you should ask Moof
Thanks! Will do.
PS You have to change your sig because it makes me have inappropriate thoughts whenever I see itComment
-
Script by : Svetlin StaevOriginally posted by ztik
this what your looking for?
http://www.evrsoft.com/developers/encrypter.shtml
Will
I think I know this guy (that developed the script)...Selling MedicalPorn,com and a dozen other gyno & doctor domains here:
http://www.gofuckyourself.com/showthread.php?t=871984Comment
-
Also, I'm not sure if it's of any help but studio.adobe.com uses some kind of gimmick that actually prevented me from saving it to my hard drive. I can view the source all right but I couldn't save it... [still not sure why]Originally posted by AmeliaG
Hey, I'm pretty sure there is a little snippet of code which makes it harder for inexperienced webmasters to snarf html like say metatags or whole freaking pages. Anybody know offhand what that code snippet is? Thanks for any help y'all may be able to give me.
Generally, unless you get dynamic content from a DB, it's impossible to hide code. I mean, you can't steal server-side code, only client-side code.
However, you can do some tricks to protect your client side code. You can use includes for the CSS and JS, use several files, includes within includes but this will probably just complicate things and will only help you against newbies.Selling MedicalPorn,com and a dozen other gyno & doctor domains here:
http://www.gofuckyourself.com/showthread.php?t=871984Comment
-
Originally posted by KraZ
Also, I'm not sure if it's of any help but studio.adobe.com uses some kind of gimmick that actually prevented me from saving it to my hard drive. I can view the source all right but I couldn't save it... [still not sure why]
Generally, unless you get dynamic content from a DB, it's impossible to hide code. I mean, you can't steal server-side code, only client-side code.
However, you can do some tricks to protect your client side code. You can use includes for the CSS and JS, use several files, includes within includes but this will probably just complicate things and will only help you against newbies.
Thanks, I'll have to take a look at that.
I'm really only looking for code snippets which will make it more difficult for inexperienced webmasters to view source.
Experienced webmasters will always be able to figure out a way to get around such obstacles, but I doubt I have any code which would be news to anyone who really knows what they are doing.
I'm just sick of seeing html, php, and tags etc. obviously copy-pasted from my pages on sites belonging to people too lazy to even come ask a how-to question on gfy.Comment
-
http://www.hostedcontent.com/encrypt.phtml
Simply enter the part of the HTML code you dont want people to figure out, paste it into the form then paste the JS it creates into your html code where the content you encrypted should goComment
-
-
i cant believe that somebody actually fell for that PK trick
here's what i use..
with perl, wrap your entire code into a variable and run it through
sub clean_page($)
{
my $pp = shift;
$pp =~ s/<!-.*?->//igs;
$pp =~ s/\t+/ /igs;
$pp =~ s/ / /igs;
$pp =~ s/ >/>/igs;
$pp =~ s/\n//igs;
$pp =~ s#\/\*.*?\*\/##igs;
$pp =~ s/ "/"/igs;
$pp =~ s/ / /igs;
return $pp;
}
it will remove any comments, new lines, tabs etc .. your entire code will be shown in a single line
optionally use some JS encryption method for vital parts (as shown in posts above) , and that should do the trick
of course its not full proof...
Comment
-
I do not know if this is 100% relivant or not, but i have found no matter what is used to hide source codes or protect images from being snaged (Disable right click, cloaking, etc) there is still one way that has and always?? will work.
File/Save As.....
This saves the whole page then all one has to do is open it with html or text editor to see the source code.
Now ok so lets remove the file bar from the page.
Now all the surfer has to do is go back a page and then open your page in a new browser window thus giving them back their file bar.
So really i think if someone wants your code their gonna get it. right?
I find it best to put all my secret stuff in a swf file but now theres a decompiler so even that way is phucked lol
-Loki-MAKE MONEY WITH 3D TOONS!
Need hosting? LokiCa$h Uses Amerinoc and love them!
Skype: LokiPorn Or Email 3dloki|at|gmail.comComment
-
Originally posted by vdc-Loki
I do not know if this is 100% relivant or not, but i have found no matter what is used to hide source codes or protect images from being snaged (Disable right click, cloaking, etc) there is still one way that has and always?? will work.
File/Save As.....
This saves the whole page then all one has to do is open it with html or text editor to see the source code.
Now ok so lets remove the file bar from the page.
Now all the surfer has to do is go back a page and then open your page in a new browser window thus giving them back their file bar.
So really i think if someone wants your code their gonna get it. right?
I find it best to put all my secret stuff in a swf file but now theres a decompiler so even that way is phucked lol
-Loki-
Someone who can decompile a swf file is probably not going to be trying to grab my code because there won't be much of interest for someone that sophisticated there I don't think. Oddly, we used to use the disable right click on a lot of our sites. We've removed it every place it was in an include, but there are still a few old galleries we haven't changed yet and there actually are a lot of people who can't figure out how to get around it, even now.Comment
-
Yup, its good, i used to do that like years ago already.Originally posted by Equinox
cough, scroll down on that page. I see it even fooled you.
In her case tho, it does show the code on 1600x1200.
She needs to add some more space.Comment
-
Wen i spoke of flash decompilers i was refering to the spam i get about "Decode Any Flash File" and 2 of my lower end flash makers that come with decompilers and detailed info on what to do with them.Originally posted by AmeliaG
Someone who can decompile a swf file is probably not going to be trying to grab my code because there won't be much of interest for someone that sophisticated there I don't think. Oddly, we used to use the disable right click on a lot of our sites. We've removed it every place it was in an include, but there are still a few old galleries we haven't changed yet and there actually are a lot of people who can't figure out how to get around it, even now.
Wow man i think the file/save as was one of the first things i learned lol, back when i first started doing design work lol, i find it odd that more ppl don't know about it.
-Loki-MAKE MONEY WITH 3D TOONS!
Need hosting? LokiCa$h Uses Amerinoc and love them!
Skype: LokiPorn Or Email 3dloki|at|gmail.comComment
-
You'd be amazed at the number of emails I've gotten over the years asking ..
"How do you do that?"Comment
-
Intelligence of people amazes me.Originally posted by PersianKitty
You'd be amazed at the number of emails I've gotten over the years asking ..
"How do you do that?"
If you want an actual HTML encryption program that will be sure to knock any webmaster off their feet, check this out:
http://www.mtopsoft.comComment
-
If you think that PK thing is amazing, how many webmasters do you think will be able to crack the HTML to this page:
http://www.mtopsoft.com/encryptpro/example.htm
Comment
-
Er um.. I hit the save page as option in netscape..saved the page.. opened it in my editor and saw it all.Originally posted by AdultNex
If you think that PK thing is amazing, how many webmasters do you think will be able to crack the HTML to this page:
http://www.mtopsoft.com/encryptpro/example.htm
Comment
-
"Will Encrypt HTML Pro affects my search engine ranking?Originally posted by AdultNex
Intelligence of people amazes me.
If you want an actual HTML encryption program that will be sure to knock any webmaster off their feet, check this out:
http://www.mtopsoft.com
If you want your search engine ranking unaffected, please select "Only encrypt partial section" or "Do not encrypt html source code" in Step 2. Otherwise, the search engine can't cache your page correctly. The "Encrypt all links" will also affect the search engine: Search engine spiders can't index other web pages linked by this page."Comment
-
Yeah, that's the only descrepancy, but if you want something that will most likely defer away most webmasters, then go with EncryptHTML.Originally posted by PersianKitty
"Will Encrypt HTML Pro affects my search engine ranking?
If you want your search engine ranking unaffected, please select "Only encrypt partial section" or "Do not encrypt html source code" in Step 2. Otherwise, the search engine can't cache your page correctly. The "Encrypt all links" will also affect the search engine: Search engine spiders can't index other web pages linked by this page."
This doesn't work with Firebird or IE. Who uses Netscape anyways?Er um.. I hit the save page as option in netscape..saved the page.. opened it in my editor and saw it all.
Comment
-
I always review in Netscape. It's not as forgiving as IE. I can catch alot of mistakes that cause page load problems for some browsers, but not necessarily IE. Never give em a break ;)Originally posted by AdultNex
This doesn't work with Firebird or IE. Who uses Netscape anyways?
And actually. I saved the page in IE and opened just the html in my browser and got the same thing. No encryption.Last edited by PersianKitty; 02-22-2004, 03:29 AM.Comment
-
Why does that page try to paste from your clipboard?Originally posted by AdultNex
If you think that PK thing is amazing, how many webmasters do you think will be able to crack the HTML to this page:
http://www.mtopsoft.com/encryptpro/example.htm
Comment
-
Hm, what version of IE are you using?Originally posted by PersianKitty
I always review in Netscape. It's not as forgiving as IE. I can catch alot of mistakes that cause page load problems for some browsers, but not necessarily IE. Never give em a break ;)
And actually. I saved the page in IE and opened just the html in my browser and got the same thing. No encryption.Comment
-
6.0.28yadahyadahOriginally posted by AdultNex
Hm, what version of IE are you using?Comment




Comment