|
-
Mar 1st, 2009, 06:27 AM
#1
Thread Starter
Lively Member
[RESOLVED] Websites and bad things.
I guess this is the place to post this type of question. If it's not can a mod please move it? The question is: If a person owns a website what are some of the bad things that can happen to that website?
-
Mar 1st, 2009, 06:50 AM
#2
Re: Websites and bad things.
It can be hacked and/or vandalized.
-
Mar 1st, 2009, 07:06 AM
#3
Thread Starter
Lively Member
Re: Websites and bad things.
Thanks dee-u. Wouldn't that be a problem that the web host has to deal with?
I apologize. I should have mentioned that the person who has the website (I'm close to having a website but I'm not that big on the idea because I'm not that much of a techie) would not own the server. I would just upload the website and that's it. Kind of. I guess.
-
Mar 1st, 2009, 10:59 AM
#4
Re: Websites and bad things.
Would it bother you if somebody went to your website and it was covered with pron? If your relationship with this website is such that you don't care what the content is, then I'd say that you are right that the problem is not yours. If it would bother you that the content changed to something else without you knowing about it, then that would be something to be concerned about.
My usual boring signature: Nothing
 
-
Mar 2nd, 2009, 01:54 AM
#5
Re: Websites and bad things.
With basic security measures in place (sterilizing user input, etc...) then there is really nothing to worry about.
If your site gets lots of users, people may start making phishing sites that look like yours, in order to get peoples login information, or other personal information.
My usual boring signature: Something
-
Mar 2nd, 2009, 02:31 AM
#6
Re: Websites and bad things.
I would also use external files rather an putting all the code in the actual pages. It would make it easier to protect the inner working of the website. Also using php can help hide the code because php is not visible on the client-side. That being said php is a server-side language not a client-side language.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 2nd, 2009, 09:52 AM
#7
Thread Starter
Lively Member
Re: Websites and bad things.
Thanks everyone for the replies.
What about people who link to the files on the website without permission and therefore increase my costs? And what about things like spam if I use the "mailto:" link? Should I use a picture instead? Is spam really as bad as some people make it out to be?
-
Mar 2nd, 2009, 10:20 AM
#8
Re: Websites and bad things.
 Originally Posted by Nightwalker83
I would also use external files rather an putting all the code in the actual pages. It would make it easier to protect the inner working of the website. Also using php can help hide the code because php is not visible on the client-side. That being said php is a server-side language not a client-side language.
php and/or aspx
-
Mar 3rd, 2009, 04:40 AM
#9
Re: Websites and bad things.
 Originally Posted by JuggaloBrotha
php and/or aspx
Ah ok! I have never used aspx before.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 3rd, 2009, 06:52 PM
#10
Re: Websites and bad things.
i think you're confused. PHP does not hide the source code. All PHP code that you write is parsed, and only HTML is shown. You can still view the HTML source code.
"ASPX" is just the file extension for ASP.NET files.
My usual boring signature: Something
-
Mar 3rd, 2009, 07:05 PM
#11
Re: Websites and bad things.
 Originally Posted by dclamp
i think you're confused. PHP does not hide the source code. All PHP code that you write is parsed, and only HTML is shown. You can still view the HTML source code.
Ye, I know! I should of made it clear that php and html are two separate codes in my other post.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 7th, 2009, 03:52 AM
#12
Thread Starter
Lively Member
-
Mar 7th, 2009, 06:23 AM
#13
Re: Websites and bad things.
 Originally Posted by Yumby
In answer to the email and spam question the best thing to do would be to use a form to submit the information.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 9th, 2009, 01:18 AM
#14
Thread Starter
Lively Member
Re: Websites and bad things.
Thanks Nightwalker83 for the rep worthy reply. I'll check it out. And if anyone else can think of anything by all means please contribute.....
Edit... * I tried giving you a rep but I got "You must spread some Reputation around before giving it to Nightwalker83 again." Sorry mate. Maybe next time!?!
Last edited by Yumby; Mar 9th, 2009 at 01:23 AM.
-
Mar 9th, 2009, 01:28 AM
#15
Re: Websites and bad things.
 Originally Posted by Yumby
Edit... * I tried giving you a rep but I got "You must spread some Reputation around before giving it to Nightwalker83 again." Sorry mate. Maybe next time!?!
That's ok! Maybe someone else can think of a better method of protecting the data.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 13th, 2009, 05:58 AM
#16
Re: Websites and bad things.
If your website is vandalized, it is your own responsibility because you may have inadvertently introduced a security flaw somewhere. The specifics of the flaw you introduce depend on what you're doing on the page.
It's not a good idea to have a mailto link on the page. There are crawlers out there which go around looking for mailto links. Remember that any personal information on a page is exposed, can be found and will be found. That's why the form method is better.
If you don't want to create a form and still want to bring up the client's mail client window, then you could force a postback or use a bit of javascript to expose the mailto so that crawlers don't get to it.
-
Mar 13th, 2009, 05:15 PM
#17
Re: Websites and bad things.
The majority of web sites are hacked through poor security of the owner of the web site (i.e. you) and not through an esoteric 'technical' reason (although that has happened, and is generally what is newsworthy so has an apparent prevalence).
"Ok, my response to that is pending a Google search" - Bucky Katt.
"There are two types of people in the world: Those who can extrapolate from incomplete data sets." - Unk.
"Before you can 'think outside the box' you need to understand where the box is."
-
Mar 20th, 2009, 10:04 AM
#18
Thread Starter
Lively Member
Re: Websites and bad things.
Thanks for the replies everyone. There's some good information there. Cheers.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|