473,387 Members | 1,520 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Security of HTML pages

This is very possibly the wrong place to ask this so I'd appreciate any
suggestions on better places to ask....
I want to post my resume on my friend's server so that I can give the URL
out to prospective employers. However, since I was planning to put my street
address, email address, and phone number in the resume, I am concerned that
this information will wind up getting harvested by telemarketers, perhaps
via "cataloging spiders" or "automated screen scrapers" or other automated
tools. I definitely DON'T want telemarketers calling me, sending me snail
mail spam, emailing me, or banging on my door to flog their wares.

Is there any reasonably secure way to put this information on a web page so
that telemarketers or others cannot harvest my information against my
wishes? What percentage would you put on the security offered by this
technique? 100%? 80%? 20%?

If the best I can hope for is only 80% security, then I'm inclined to leave
my snail mail address and phone number off the resume, use a throwaway
Hotmail-type email address, and suggest that visitors of the page use the
Hotmail-type email to get my street address or phone number if they want
them. Then, of course, I would only give that information out to what I
believed were legitimate prospective employers.

Or am I being way too paranoid? I've heard a lot about identity theft in
recent years so maybe I'm over-reacting to the risk....

--
Rhino
---
rhino1 AT sympatico DOT ca
"There are two ways of constructing a software design. One way is to make it
so simple that there are obviously no deficiencies. And the other way is to
make it so complicated that there are no obvious deficiencies." - C.A.R.
Hoare
Jul 23 '05 #1
6 1437
Rhino wrote:
Is there any reasonably secure way to put this information on a web
page so that telemarketers or others cannot harvest my information
against my wishes? What percentage would you put on the security
offered by this technique? 100%? 80%? 20%?


Several ways:
1. Password-protect the page, and send the password via email to those
who should get to the site.
2. Simply exclude search engines via the Robots.txt file, or meta-tags.
(You may still be found, but not as easy.)
3. Attach your Resume to the email in Word-Format.

--
Google Blogoscoped
http://blog.outer-court.com
Jul 23 '05 #2
In article <WH*********************@news20.bellglobal.com>,
Rhino <rh****@NOSPAM.sympatico.ca> wrote:
[snip]

I want to post my resume on my friend's server so that I can give the URL
out to prospective employers. However, since I was planning to put my street
address, email address, and phone number in the resume, I am concerned that
this information will wind up getting harvested by telemarketers, perhaps
via "cataloging spiders" or "automated screen scrapers" or other automated
tools. I definitely DON'T want telemarketers calling me, sending me snail
mail spam, emailing me, or banging on my door to flog their wares.

[snip]


I wouldn't worry too much about it. My resume has been on the web for
several years in plain html format with all that info and I haven't had
a problem with any of that.

= Eric
--
= Eric Bustad, Norwegian bachelor programmer
Jul 23 '05 #3
In article <34*************@individual.net>,
"Philipp Lenssen" <in**@outer-court.com> wrote:
Rhino wrote:
Is there any reasonably secure way to put this information on a web
page

[...]
2. Simply exclude search engines via the Robots.txt file, or meta-tags.
(You may still be found, but not as easy.)
To the best of my knowledge that's nonsense. There is nothing about
robots.txt that offers any level of security. Consider it a mechanism to
politely request to not index the contents of directory x, no more.
3. Attach your Resume to the email in Word-Format.


Perhaps if you're only interested in jobs in M$-only-land, yes ;)

--
Sander Tekelenburg, <http://www.euronet.nl/%7Etekelenb/>
Jul 23 '05 #4
"Rhino" wrote in comp.infosystems.www.authoring.html:
Is there any reasonably secure way to put this information on a web page so
that telemarketers or others cannot harvest my information against my
wishes?


Let me rephrase:

Is it possible to make something publicly accessible so that bad
people won't have access to it?

No.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Jul 23 '05 #5
Sander Tekelenburg wrote:
In article <34*************@individual.net>,
"Philipp Lenssen" <in**@outer-court.com> wrote:

2. Simply exclude search engines via the Robots.txt file, or
meta-tags. (You may still be found, but not as easy.)


To the best of my knowledge that's nonsense. There is nothing about
robots.txt that offers any level of security. Consider it a mechanism
to politely request to not index the contents of directory x, no more.


Which is why I said "You may still be found, but not as easy." And
yeah, Google is respecting Robots.txt, and many people use Google, so
*you may not be found as easy*. I exclude my Resumee from Google simply
because I don't want people to find it that easily. I still know it's
public, and there's no harm in that. It's just hidden from 5-second
googling.

--
Google Blogoscoped
http://blog.outer-court.com
Jul 23 '05 #6
"Rhino" <rh****@NOSPAM.sympatico.ca> writes:
I want to post my resume on my friend's server so that I can give the URL
out to prospective employers. However, since I was planning to put my street
address, email address, and phone number in the resume, I am concerned that
this information will wind up getting harvested by telemarketers, perhaps
via "cataloging spiders" or "automated screen scrapers" or other automated
tools. I definitely DON'T want telemarketers calling me, sending me snail
mail spam, emailing me, or banging on my door to flog their wares.


Only email addresses are harvested in that way, and yours is likely to
be harvested from Usenet. You use two different ways of obscuring your
email address, both of which are very standard. If spammers haven't
already made programs to find such "obfuscated" email addresses, it's
only a matter of time until they do.

People have mentioned password protection; this is slightly better than
using a random URL in that URLs get stored in proxy server logs while
passwords do not, but this advantage is slight enough that I generally
recommend random URLs.

The robots.txt caution to prevent indexing by google, etc., is only
useful in two levels. If robots.txt advises search engines to avoid
/mytopsecretfolder, then it also advises the bad guys exactly where to
look. Unless your real files are under /mytopsecretfolder/beo328ddbq9

--

http://ourdoings.com/ Let your digital photos organize themselves.
Sign up today for a 7-day free trial.
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Olaf Baeyens | last post by:
Can someone out there point me to a URL or other reference how to use these security stuff in .NET? I know everything can be found online on the msdn but since I am new to this security stuff, I...
1
by: Gary D. Rezek | last post by:
Hi All, I've got a set of asp pages used to register students into the ResNet database. Testing things out under different browser security settings I ran into a problem. The following buttons.......
1
by: Sam Vanderstraeten | last post by:
Hi all, My situation: - VB.net & Visual Studio 2002 - IIS 6.0 - Windows XP Pro (development) and Windows 2000 server (release) I created a test-application (before I started to develop the...
5
by: Chris Zoper | last post by:
Hello, Norton Internet Security blocks some of my ASP.NET pages. The pages are very 'normal' pages though. There is no 'dangerous' code in it or something like that. Also, the page is not in a...
1
by: The Eeediot | last post by:
Hello, ASP.NET gurus! I have read many pages on setting up a login screen to access a number of web pages using Forms Authentication and I am still trying to wrap my brain around the whole thing. ...
4
by: tony | last post by:
I'm designing a survey form page that will be fairly complex and am becoming confident enough with PHP now to tackle most things. (Thanks to everyone here who has helped) Before I go too far...
1
by: dcnicholls | last post by:
This is my first post to this forum: I use ASP occasionally but don't know a lot of it, and the Windows IIS was invented by MS to torture me :) So I'm not sure if this should be herre or on the IIS...
0
by: Sergio E. | last post by:
Hello, I have a problem with masterpages and forms security. I made a new Web site, in which I have my page of login like of beginning, a master page with only a sitemappath object in it, the...
0
by: Sergio E. | last post by:
Hello, I have a problem with masterpages and forms security. I made a new Web site, in which I have my page login.aspx as the homepage , a master page with only a sitemappath object in it, the...
1
by: =?Utf-8?B?TWFuanJlZSBHYXJn?= | last post by:
Hi I am creating a web service PreprocessingService with IIS Hosting and transport layer security with user name and password. I created a self-signed certificate IISHost in IIS which is issued...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.