0
votes
3answers
120 views

How am I being hacked? [closed]

I have the following code in a file which, when variable $action equals a certain value, a message is added to the database and then an email is sent to the user advising them of the message. Simple. ...
0
votes
0answers
46 views

what are the different types of hackings from which a networking site needs to be protected [closed]

I am just a starter I am working on a networking site but i have no knowledge about the possible hackings which can effect any website I am really confuesed what particular types are to ...
-1
votes
2answers
112 views

Is my php website safe? [closed]

I am busy building a custom CMS with a lot of features which include API's (so accessing other websites). For safety measures I protected all Mysql inputs with mysql_real_escape_string, strip_tags ...
4
votes
3answers
897 views

Found 'OR 1=1/* sql injection in my newsletter database

I found the following in the "e-mail" field of my newsletter subscriber database: ' OR 1=1/* I know it's a SQL injection, but that's it. I've googled it a little bit, but I'm still on clear on what ...
-4
votes
2answers
148 views

Protecting my php script/mysql query from SQL injection? [duplicate]

Possible Duplicate: Best way to prevent SQL injection? I just realized that the php script I use to pull mySQL data and display it on website is extremely vulnerable to SQL injection ...
0
votes
1answer
56 views

Minimise chances/impact of hack on shared host with cPanel

I've uploaded my website to a shared host, all of which is managed by cPanel. I'm using PHP & MySQL behind the site itself. I'm fairly comfortable with the measures I've taken with PHP & MySQL ...
4
votes
2answers
150 views

“Use PDO” in MySQL Table. Is this a hack?

OK, it may sound ridiculous but this is what happened : I've set up a site, fully working, on CodeIgniter The site is obviously db-driven, with users tables (and many more) in it Today, I've logged ...
0
votes
1answer
97 views

How to detect unusual queries (injection suspicious) before runing it?

Some hackers have access to my database and i am going to find the bug; i have not access to server logs. I made this code for saving suspicious queries on a text file : function query($query) { ...
0
votes
0answers
145 views

How can the hackers access my database? [closed]

I have a gaming website that i have programmed with php/mysql , recently some hackers had access to my db and edit every thing they want , how can i know which bug they use? i want to fix but i ...
2
votes
7answers
840 views

MySql Database Hacked, NOT injections

Three weeks ago, I found a list of my website's users and info on Paste Bin giving away all privacy. I ran updates and protected against SQL Injections. I also added a pre-request to save the SQL in ...
0
votes
3answers
138 views

MySQL Injection prevention

Hackers attack my website through sql injection and running fake queries how to prevent them need help. Is there any firewall which prevent Hackers attacks etc or i should use ...
0
votes
0answers
103 views

C# Mysl Database connection and server download Protection

I have created an app that uses Mysql Connector to connect to a Database in which I perform queries of all kinds e.g. Insert, update select etc. This app also downloads files through FTP connection ...
-9
votes
1answer
103 views

I have a forum script that has unknown security vulnerability [closed]

I have a forum script that has unknown security vulnerability. How can I know the vulnerability and close it? Is there an site can scan my all my script files ?? Please answer me because my forums ...
0
votes
0answers
148 views

MySQL escape string for field name

There is a problem in "mysql_escape_string"&"mysql_real_escape_string", that they don't escape the ` character. I'll present the way I solved this problem. besides, it's solution to my another ...
0
votes
1answer
302 views

Making personal data in MySQL Database hacker safe? [closed]

a heads up on my knowledge: I'm used to building relatively basic PHP apps with MySQL, besides that I don't have huge programming experience. I'm just starting to build a fairly simple web ...
-1
votes
4answers
482 views

Using XMLHTTPRequest to extract data from Database

I want to extract some data from the database without refreshing a page. What is the best possible way to do this? I am using the following XMLHTTPRequest function to get some data (shopping cart ...
3
votes
4answers
406 views

How to secure project against hacks and attacks? (PHP / MySQL)

I have started in web development not long time ago. I know some stuff now, but I'm really concerned about security issues that may arise. I know simple security solutions like preg_replace , but I'm ...
0
votes
1answer
89 views

Modifying variables of a Java Applet

I am interested in working on a multiplayer game in Java. I am concerned about hackers modifying game data and right now I'm interested in running my game in an Applet and connecting to my MySQL ...
2
votes
2answers
204 views

Can anyone tell me what these hackers are attempting to do on my website?

I have had the following attack recently, where POST requests have been sent to the webserver with the following code (url encoding has been removed to show the actual query, and 'mydomain.com' has ...
22
votes
6answers
12k views

Site has been hacked via SQL Injection

Recently my site was hacked via SQL injection. The Hacker used the following query to get my DB name. I cannot understand this query they wrote. Query: ...
1
vote
1answer
56 views

Is there a security issue if I create folders inside a wordpress installation?

I have the newest wordpress installed in "example.com". If I create the folder "example.com/my-app/" and there run index.php which fetches data from mysql, but not from the wordpress database ...
29
votes
6answers
4k views

Someone has hacked my database - how did this guy do it?

Someone has hacked my database and has dropped the table. In my PHP page there is one single query where I am using mysql_real_escape_string: $db_host="sql2.netsons.com"; $db_name="xxx"; ...
3
votes
3answers
345 views

How to get Mario Kart Wii scoreboard points after race into database

I don't think this is even possible, but maybe I'm missing something. A group of us play Mario Kart Wii in the office. We don't play online, just a couple races. We often have tournaments where we ...
8
votes
8answers
1k views

Is this query safe from sql injection?

The script is in PHP and as DB I use MySQL. Here is the script itself. $unsafe_variable = $_GET["user-input"]; $sql=sprintf("INSERT INTO table (column) VALUES('%s')",$unsafe_variable); ...
7
votes
6answers
1k views

piece of php code for prevent hacking

I have a php file at my site, and I connect to db, get some records and list them in same file. mysql_connect("localhost", "blabla", "blabla") or die(mysql_error()); mysql_select_db("blabla") or ...
0
votes
2answers
3k views

Is it possible through SQL injection to launch an UPDATE/DELETE statement from an INSERT/SELECT statement in MySQL?

Let's take the following vulnerable query ($id not being escaped): SELECT * FROM table WHERE id = $id Would it be possible in MySQL 5.x to modify some data through an UPDATE statement which would ...
14
votes
4answers
5k views

Testing for security vulnerabilities in web applications: Best practices?

I'm developing a web application. Like, a proper one, I've used things like Joomla in the past to make awesome stuff but have now finally got my hands dirty with PHP, MySQL and CodeIgniter. When ...
8
votes
4answers
5k views

Where to use mysql_real_escape_string to prevent SQL Injection?

I'm in trouble with a group of hackers. they hacked my client's site few times, and my client gets more angry :( my client lost his database (which has hundreds records), and had to enter all :( now ...
3
votes
5answers
390 views

How vulnerable is my code to SQL injection?

Ok I don't want this to be a hacking advice question, so please don't down-vote for that. I work in a web shop and I've found some of our old PHP pages are vulnerable to SQL injection in the username ...
3
votes
9answers
471 views

MySQL/PHP connection error, possible user fabrication

I'm in charge of maintaining a learning management system and this is an issue that I've been dealing with on and off over the past few months. A single student (among thousands) is claiming that ...