Jump to content

Recommended Posts

http://www.2fr3sh.com/index.php?page=Pricing

Perhaps they hacked you after seeing this page and the rates


j/k...Anyways, was this through a form? What chmod do you have for the folder thy hack? Most likely, it's someone who's familar with the structure of your website.
you are going to have to post the code that has your form, as well as the script that processes it, if that's a seperate script, if you want anybody to give you any kind of real answer.

and also, your thread seems to have devolved into a website critique worthy thread. stay on topic or this will be moved there.
I see the problam your using the $_GET statement on all pages are you?

and bye the way in essance getting hacked is a terrorable thing but is also a very common thing in computer programming the best way to acheve good results is to valadate all infromation and beetend your the hacker and try and hack your own php codes then add harsh condition to slow the hacking down.

it is really hard to stop hacking on any websight the hacker will always get in but try adding lots of valadations.

good luck.

if so the correct conditein is to valadate the $_GET coditeion like so.

the proper coreect link format.
[code]
<?
echo"< a href='index.php?page=home'>Go to home page</a>";
?>
[/code]

a $_GET with a url condition if page=="home" got there else dont.
[code]
<?php
if($_GET['page']=="home"){
header("location: index.php");
exit;
}
?>
[/code]
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.