Results 1 to 7 of 7

Thread: security stuffs in making a website?

  1. #1

    Default security stuffs in making a website?

    i have a project, and we need to make a website like ebay. its just for reporting and stuff and we don't necessarily need to make it operational. i just want to tell them that is secure and stuff. like using paypal and how to make chatting secure. any ideas?

  2. #2

    Default

    Are you asking us to sum up the entire university course in "Information-Systems Security" in one post? Making a website like ebay takes a lot of work of a large number of people, most of which being diploma specialists.

    Who are you doing the project for anyway?

  3. #3
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff

    Default

    Quote Originally Posted by Discord View Post
    Are you asking us to sum up the entire university course in "Information-Systems Security" in one post?
    I can sum that up in one post, lik the interwez is full of hackers lulz, use Linux.

    Quote Originally Posted by Discord View Post
    Making a website like ebay takes a lot of work of a large number of people, most of which being diploma specialists.
    Not really, theres alot of Open Source shopping systems out there now that are free to use, to make it the size of e-bay however is a different matter.


    In response to the initial post, research the components you need and figure out how to integrate them together, also try and make sure your server is secure and use SSL or SSI or whatever it's called along with https. For futher reading I would recommend Google or a good library.
    FOA

  4. #4
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    Quote Originally Posted by Baloki View Post
    I can sum that up in one post, lik the interwez is full of hackers lulz, use Linux.
    :}

    It really depends how in-depth you want to get.

    • Demonstrate that your site is protected from attacks like SQL injection by escaping quotes and slashes in your input.
    • Restrict permissions to stuff that shouldn't be public.
    • Javascript injection can be circumvented by encrypting sensitive data that needs to be passed via POST or GET.
    • Use SSL.
    • Make your PHP scripts is safe by not defining variable names from user input.
    • Turn register_globals, magic_quotes_gpc on and make use of escape slashesm etc.
    • Use session control in an encrypted URL or cookie.
    • Restrict forms calling your script to only those in your domain - prevents people making their own forms and using them on your script.
    • Avoid file uploads if you can.


    I'm sure you can think of more. PHP can do it all for you.

  5. #5
    Lives in a zoo Recognized Member Renmiri's Avatar
    Join Date
    Nov 2005
    Location
    Wai out there
    Posts
    6,034
    Contributions
    • Former Site Staff

    Default

    Bottom line: Get help from someone who has done it before. There is no way you will learn all you need to know here in this thread.
    Me and my kids have dragon eggs:



  6. #6
    i n v i s i b l e Tech Admin o_O's Avatar
    Join Date
    Jun 2001
    Location
    New Zealand
    Posts
    2,957
    Blog Entries
    1

    FFXIV Character

    Humphrey Squibbles (Sargatanas)

    Default

    There are quite a few web security papers and seminar transcripts available which explain everything in detail, but unless you know/learn PHP, the mechanics of HTTP requests, DOM and SSL protocols you probably won't understand them. As Renmiri said though, it would be almost impossible to glean a full understanding of these things from here.

    If you aren't that far along yet, chances are you don't need to elaborate that much, but if you are I definitely recommend reading a few papers.

  7. #7
    Last Exile Baloki's Avatar
    Join Date
    Sep 2003
    Location
    Dreaming a dream~
    Posts
    8,425
    Articles
    5
    Blog Entries
    2

    FFXIV Character

    Baloki Kyuu (Sargatanas)
    Contributions
    • Former Senior Site Staff

    Default

    Quote Originally Posted by o_O View Post
    If you aren't that far along yet, chances are you don't need to elaborate that much, but if you are I definitely recommend reading a few papers.
    Or even a few techie blogs, as they'll point out interesting things they've noticed/found out.
    FOA

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •