+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: My site!

  1. #1
    HyDr@ is offline x10 Sophmore HyDr@ is an unknown quantity at this point
    Join Date
    Jul 2006
    Location
    UK - Kent
    Posts
    134

    My site!

    http://www.hydra-art.net/

    its kind of my portfolio, it also offers anime wallpapers.

    Some comment and support would be appreciated.

    - Portfolio of High quality Anime and Gaming Wallpapers/Website Creation/Anime Scans/Photoshop Tutorials
    - Devright.org ~ The right way to develop

  2. #2
    Spartan Erik's Avatar
    Spartan Erik is offline Retired Spartan Erik is an unknown quantity at this point
    Join Date
    Aug 2005
    Posts
    3,382

    Re: My site!

    I'm not a fan of anime but I can tell you're quite talented; I love your website design, it has a nice color scheme to it

    9/10, only because I'm not a fan of anime; otherwise, a 10/10

  3. #3
    Articz is offline x10 Lieutenant Articz is an unknown quantity at this point
    Join Date
    Jan 2005
    Posts
    432

    Re: My site!

    i also like your layout i wish i could design layouts like that for my sites i like the colours used as it the images stand out much more.
    10/10 here

    and i not a anime fan either

  4. #4
    mikel2k3 is offline x10 Lieutenant mikel2k3 is an unknown quantity at this point
    Join Date
    Aug 2005
    Location
    West Yorkshire - UK
    Posts
    374

    Re: My site!

    I like it :D
    10/10... I need to start making better designs

    well done
    -----------------------------------
    -----------------------------------

    http://www.DistrasDesigns.com

    -----------------------------------
    -----------------------------------

  5. #5
    The_Magistrate's Avatar
    The_Magistrate is offline x10 Elder The_Magistrate is an unknown quantity at this point
    Join Date
    May 2005
    Location
    PA
    Posts
    559

    Re: My site!

    The design is pretty sweet. Interesting color scheme. Although, you have some black on dark grey headings in the menu on the right. Kinda hard to read. Your wallpapers are fantastic. Biggest drawback is that you used tables for layout, which is a big pet-peeve of mine. 7/10
    Getting Started | Terms of Service | Paid Hosting | Forum Rules | Free Server Status | Banned Countries

    If I have helped you through one of my posts, please click the
    blue checkbox on the right below my avatar to add to my reputation.

  6. #6
    Bryon is offline Administrator Bryon has disabled reputation
    Join Date
    Apr 2005
    Location
    Northfield, NH
    Posts
    7,608

    Re: My site!

    Ok ok, big big comment and suggestion. This doesn't apply to the overall site, design, theme, or content though. It applies to security which you *don't* have and *need* to have. ;)

    On your site you have a "system" set up to include files based on whatever is in the "p=" variable in the URL. ($_GET['p']) The way you have it set up, you do *not* filter anything at all, allowing anyone to include basically any file they want. This is a very bad thing.

    I took the liberty to try out a few things to show you how easily I can gain access to every file in your home directory. (/home/[Username])

    In your script you are including files in a way similar to:
    PHP Code:
    ..
    $filename $_GET['p'];
    include(
    $filename .'.php');
    .. 
    You do not filter what is included at all. Any person can include whatever they want. (Stressing this point.. )

    If you include a file into a PHP script, and that file contains PHP tags, ("<?[php] and ?>"), the script will parse that as if it is a normal script. Thus allowing me to create a text file:
    And include in into your script:
    Notice how I had to place a "?" at the end to make the script not count the ".php" you append to the end of the filename?

    The script in that text file is parsed, and it created a PHP file named 'PoC_NedreN.hidden.php' in your public_html directory, which contains a file uploader:
    As you can see, I could now upload whatever files\scripts that I want to, allowing me to have access to just about everything with your account.

    The reason I'm telling you this is to teach you and help you to learn about how to protect against this kind of thing for future reference. You need to validate user supplied data at all times. You never can trust that data supplied by a visitor is "clean" and not harmful in any way at all.

    So yeah, I showed you how I did this, so now I'll show you how to fix it.

    Please read this, which will help you secure your script fully:
    If you have any questions, please ask. Also, I would secure this as soon as possible. I'm surprised with the amount of hits your site gets that no one has done this and "hacked" your site.

    Also, I hope doing this didn't/doesn't make you upset or mad at me. I did it to attempt to teach you and help you out, not to be malicious.

    Adios,
    -Bryon
    Last edited by Bryon; 07-11-2006 at 07:20 PM.

  7. #7
    HyDr@ is offline x10 Sophmore HyDr@ is an unknown quantity at this point
    Join Date
    Jul 2006
    Location
    UK - Kent
    Posts
    134

    Re: My site!

    Quote Originally Posted by Bryon
    Ok ok, big big comment and suggestion. This doesn't apply to the overall site, design, theme, or content though. It applies to security which you *don't* have and *need* to have. ;)

    On your site you have a "system" set up to include files based on whatever is in the "p=" variable in the URL. ($_GET['p']) The way you have it set up, you do *not* filter anything at all, allowing anyone to include basically any file they want. This is a very bad thing.

    I took the liberty to try out a few things to show you how easily I can gain access to every file in your home directory. (/home/[Username])

    In your script you are including files in a way similar to:
    PHP Code:
    ..
    $filename $_GET['p'];
    include(
    $filename .'.php');
    .. 
    You do not filter what is included at all. Any person can include whatever they want. (Stressing this point.. )

    If you include a file into a PHP script, and that file contains PHP tags, ("<?[php] and ?>"), the script will parse that as if it is a normal script. Thus allowing me to create a text file:
    And include in into your script:
    Notice how I had to place a "?" at the end to make the script not count the ".php" you append to the end of the filename?

    The script in that text file is parsed, and it created a PHP file named 'PoC_NedreN.hidden.php' in your public_html directory, which contains a file uploader:
    As you can see, I could now upload whatever files\scripts that I want to, allowing me to have access to just about everything with your account.

    The reason I'm telling you this is to teach you and help you to learn about how to protect against this kind of thing for future reference. You need to validate user supplied data at all times. You never can trust that data supplied by a visitor is "clean" and not harmful in any way at all.

    So yeah, I showed you how I did this, so now I'll show you how to fix it.

    Please read this, which will help you secure your script fully:
    If you have any questions, please ask. Also, I would secure this as soon as possible. I'm surprised with the amount of hits your site gets that no one has done this and "hacked" your site.

    Also, I hope doing this didn't/doesn't make you upset or mad at me. I did it to attempt to teach you and help you out, not to be malicious.

    Adios,
    -Bryon
    no, its fine , i actually know theres some big security problem there, i just didnt really have the time earlier (exams) to try and fix it.

    - Portfolio of High quality Anime and Gaming Wallpapers/Website Creation/Anime Scans/Photoshop Tutorials
    - Devright.org ~ The right way to develop

  8. #8
    oab's Avatar
    oab
    oab is offline
    x10 Lieutenant oab is an unknown quantity at this point
    Join Date
    Apr 2005
    Location
    Olympia, WA
    Posts
    459

    Re: My site!

    site suspended, awwww, i really wanted to see it...
    http://www.teamoab.com

    aim:dknigh73
    msn:d_knight_3@hotmail.com

  9. #9
    noerrorsfound is offline x10 Elder noerrorsfound is an unknown quantity at this point
    Join Date
    Mar 2006
    Posts
    868

    Re: My site!

    Quote Originally Posted by oab
    site suspended, awwww, i really wanted to see it...
    It doesn't look suspended to me.
    EOF

  10. #10
    oab's Avatar
    oab
    oab is offline
    x10 Lieutenant oab is an unknown quantity at this point
    Join Date
    Apr 2005
    Location
    Olympia, WA
    Posts
    459

    Re: My site!

    wow your very talented, i suk at art and crap like that.
    http://www.teamoab.com

    aim:dknigh73
    msn:d_knight_3@hotmail.com

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Link Exchange
    By Conor in forum Scripts & 3rd Party Apps
    Replies: 117
    Last Post: 12-09-2007, 12:20 PM
  2. New Site!
    By Corey in forum News and Announcements
    Replies: 76
    Last Post: 03-24-2006, 04:13 PM
  3. new site design -(for tranceoperator)
    By NewFuture in forum Graphics & Webdesign
    Replies: 2
    Last Post: 08-11-2005, 11:49 AM
  4. My site.. Need staff... maybe...
    By dsfreak in forum Scripts & 3rd Party Apps
    Replies: 6
    Last Post: 08-05-2005, 10:07 PM
  5. New Site Design- Reward
    By NewFuture in forum Scripts & 3rd Party Apps
    Replies: 6
    Last Post: 07-26-2005, 08:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers