Tagged Questions
1
vote
2answers
94 views
is it safe to have a big table in database?
My client's site has a 'online evaluation' section, which consists of a 40 field form. Each field requires user input which I have program to allow from 50 to 200 characters depending on the question.
...
2
votes
2answers
57 views
MySQL - Database Security [closed]
I am creating a web application that collects a lot of personal information from each user, the type of thing that would potentially be hacked. What conventions and practices should I be aware of ...
-2
votes
1answer
32 views
Acunetix Vulnerability Scanner seems to have changed root mysql login details [closed]
I ran a local copy of a website through Acunetix vulnerability scanner over my LAN.
The scanner picked up on quite a few vulnerbilities which needed addressing, over the course of about 20,000 ...
0
votes
1answer
17 views
Doing a pattern match MySQL-side before data is inserted into a table?
I'm new to MySQL, and am wondering: Is it possible to make a table check attempted inserts against some sort of pattern match, and reject any inserts that fail to match the pattern, or must this ...
0
votes
1answer
14 views
Spring security login point to mysql database and other fucntionality should use sql server database
In my project i want to make spring security login functionality to point to mysql database and other functionality of my project is running in sql server how can i make spring security login ...
3
votes
1answer
71 views
Security of localhost connection
I realise that this may seem an odd question (and I apologise for asking what almost answers itself) however I was concerned after reading responses to other questions:
I have a php script which ...
0
votes
0answers
16 views
In creating view use SQL Security definer or invoker? [migrated]
CREATE VIEW syntax is
CREATE
[OR REPLACE]
[ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]
[DEFINER = { user | CURRENT_USER }]
[SQL SECURITY { DEFINER | INVOKER }]
VIEW view_name ...
5
votes
1answer
35 views
Securing Passwords in a Multi-Dev nginx setup
We have a Ubuntu12.04+PHP+nginx setup on our servers. Our developers have access to both /usr/lib/php5/ and /var/www/ folders. We work on a lot of projects and at given time have 50-100 different ...
3
votes
1answer
39 views
Hibernate - Store a column as encrypted, and decrypt only on runtime
I have a database column that needs to be encrypted, when passed from a hibernate backed webapp. The webapp is on tomcat 6, Hibernate 4, and Mysql as the backing store.
The problem however is that ...
0
votes
1answer
13 views
Does the Drupal 7 DB contain sensitive info? Can I share a dump with 3rd party?
A guy I know asked me to give him the files and dump of my site to see how it works. Are there any stuff inside the Drupal 7 DB that are especially sensitive, like passwords?
4
votes
1answer
35 views
Mysql, dealing with String Regex
I'm developing a Java desktop application that connects with a database, and I would like to know the next. It results that as far as I know, Prepared Statements avoid SQL injections while you don't ...
0
votes
0answers
10 views
Manage Permission matrix on individual fields
In the current application I have object based permission. So when a user has permission to edit this object he can edit everything of this object. There are 4 type of permissions
Create
Read
Update
...
0
votes
0answers
28 views
MySQL: Best secure method for off-site backups of MySQL database?
I have a Linux server running a MySQL database on our server for a client. The client asked about having their own backup of the MySQL database. I was wondering what was the best most secure way to do ...
0
votes
2answers
60 views
How much entropy is there in SHA2(RAND(), 256)?
How many bits of entropy will
SELECT SHA2(RAND(), 256);
generate?
(Actual question: Is this a reasonable way of generating a random salt for a password?)
0
votes
1answer
48 views
How to check a mysql encrypt value with a salt in PHP?
For my website I've stored my user passwords in the database using this MySQL function:
ENCRYPT('password', CONCAT('$6$', SUBSTRING(SHA(RAND()), -16)))
Now for my users to login I need to check the ...
1
vote
1answer
51 views
Add Password to a File on Upload or other solution
I don't think this is possible, but want to see if larger brains than mine can come up with an idea.
I'm managing a site that allows companies with member users to upload docs that have their ...
0
votes
0answers
48 views
Secure Java to MySQL database methods for sandbox applets
I'm making a java applet that will be embedded in a browser unsigned. I've successfully allowed my applet to read from a mysql database thanks to DOM xml parsing. How I did this was using php to get ...
0
votes
1answer
83 views
Which method is more secure between MySQLi and PDO [closed]
So far, I'm seeing that both MySQLi and PDO are good methods when connecting to the database. What I need is which method is more secure between the two. Especially for a person developing a site for ...
0
votes
1answer
15 views
require pdo connection to database 2 questions
I have 2 questions, one is about security.
So i have problem to calling database connection.
I have to use database connection for menu to check session and change menu if user logged in.
The problem ...
0
votes
0answers
14 views
We need you to run a security audit on all linux servers that run MySQL within our subnet. Is this doable and if so, how would it be done? [duplicate]
I am trying to find a way to run a security audit on all servers that use mysql within our subdomain for possible intrusions.
0
votes
0answers
43 views
What kind of software runs direct MySQL statements as an API? [closed]
I am working with some web software who's API is nothing but passing MySQL queries through GET requests. I've never heard of that either, but I'm curious if anyone has some insight if this is a known ...
2
votes
2answers
78 views
how to store mysql connection data safely? [duplicate]
I'd like to begin a new project and one of the first problems I've figured out is the security of my mysql connection data.
I want to know if it's possible to configure the software to choose a ...
1
vote
2answers
62 views
Security between Android app and external database
After having read a lot of topics, and questions on stackoverflow about how to access external databases (MySQL) through an Android app, my question is : How to make sure that only MY app will be able ...
-1
votes
1answer
45 views
How to block an IP, if getting many http/apache/mysql requests in a second [closed]
if some one tried force burst attack on my website. how can i block their IP address.
i mean, i want to block an IP if, getting many http/Apache/SQL requests per second. how can i prevent those force ...
-3
votes
2answers
64 views
can this function prevent sql injection and xss?
function clean( $value ) {
if(function_exists( "mysql_real_escape_string" ) ) {
if( get_magic_quotes_gpc() ) { $value = stripslashes( $value ); }
$value = ...
-1
votes
2answers
39 views
Protecting data on rented servers [closed]
How can I protect my data stored in a database on a rented server(dedicated, shared, cloud). Anyone who works for the host company can clone a disk from my computer and steal my data.
If I encrypt ...
0
votes
1answer
40 views
Block all users except localhost from phpmyadmin and mysql
I recently installed the XAMPP stack on a desktop and connected via a laptop on the local network. To my surprise, I was able to access phpmyadmin and delete update all mysql tables. Though I ...
0
votes
0answers
30 views
show forum on user lvl not working
I'm using the forum script from PHPmenno.
Now i'm editing it so that it has a adminforum.
The thing is working and the forum is not showing in the main forum page.
Now i recently found that the ...
1
vote
2answers
46 views
Passing data securely in PHP
I have a site that allows user A to search for and view other users.
When user A clicks on say user B. I pass user B's id as a GET variable. I then use that id inside my view to display the ...
-2
votes
5answers
82 views
What do I need to keep a secure MySQL database? [closed]
I've looked up quite a few tutorials on keeping a secure database, but I still don't know what actions I need to take to protect my database from SQL injections, and hackers.
This is the function ...
1
vote
0answers
56 views
SQL Injection for PHPBB2 on Profile.php
This SQL code is vulnerable, but I haven't been able to get the correct code.
Here's the SQL Query:
UPDATE phpbb_users SET user_email = 'bob@seed.com', user_icq = '', user_website = '',
user_occ = ...
2
votes
3answers
153 views
Login keeps getting hacked [closed]
I have the below login script which I believe is secure. However, someone keeps getting access to the administration section of the site and changing content.
if(isset($_POST['submit'])) {
$error = ...
-2
votes
2answers
138 views
PHP MySQLI Prevent SQL Injection [duplicate]
I've build a website that will be going live soon and just have a couple questions about preventing SQL injection, I understand how to use mysqli_real_escape_string but I'm just wondering if I have to ...
1
vote
3answers
68 views
PHP - Check for escaped characters [closed]
For a MySQL DB Query I want to check and record for non escaped characters.
As I want to a secure database and want to record attemps (for now) at SQL-injections.
Since it will be in testing this ...
0
votes
1answer
73 views
What security risks are there in using MySQL triggers to execute PHP?
I've searched around and found a way to do exactly this. But I'm hesitant because I occasionally read that its a "security risk". Unfortunately, nobody ever elaborates on why. I, personally, can't ...
0
votes
1answer
36 views
How can I secure this user cookie?
So I've a user login network and it creates a cookie upon login. I need to know how to secure it because at the moment I can edit the cookie and it will give me access to any username I update the ...
-2
votes
1answer
64 views
Secure MySQL Root Password? [duplicate]
My username and password to access mysql database is currently located in a config file at the root level. I include the config file whenever I need access. Doesn't seem safe to me.
What can I do to ...
0
votes
1answer
39 views
Securing database information inside Java application
I've recently gone into a serious security problem in my Java app. The client application simply works on a FTP and MySQL server, and access information to both of them are stored directly in code. ...
0
votes
2answers
37 views
Best methods and ways of protecting website
I'm almost ready to transfer my website to my web host, but before that, I'd like to make it as well-protected as possible. I've heard about MySQL injection and other problems that you can face, how ...
0
votes
1answer
35 views
What programming language that I shall use If I want to develop a new “registration and login” method? [closed]
If I want to develop a new "registration and login" method with a different logic, using mathematics equations and simple algorithms to enhance the current level of security in registration and ...
1
vote
1answer
75 views
A secure three-tier connection from java to mySQL through PHP [closed]
First of all, I know this has been asked a few times now, and I have done lots of research on the subject, but I can't seem to find a definitive answer. I am either missing something vital here or ...
4
votes
1answer
93 views
Database design troubles. Table(s) for each user
First of all, I know the question has been discussed here and here on stackoverflow. However this case might be different.
Let me explain the situation:
The boss wants me and my colleague to develop ...
1
vote
6answers
65 views
PHP: Having all the important code in 1 php page or having it only on pages that require it
I'm going to start making an open source forum and I have the following question:
Should I include all the important code in one php page that i require once on each page or having it on each page.
...
0
votes
0answers
47 views
MySql Processlist shows Queries to Null db with root user
I've recently changed root password on MySql server, as it was spreaded across different application which I was not aware. So as a security step I simply changed the root password. I thought this ...
0
votes
1answer
33 views
hide web-app source on a second server
I made a web based program for a customer, and I want to install the app on a local server of him.
I don't want to give him all the source until he has paid for it, so my idea was to store most of ...
-2
votes
1answer
53 views
Facebook Mysql Security [closed]
I have a small to medium amount of experience with MYSQL and I'm familiar with the normal way of accessing database where you have a database name, location and password and can log on and access the ...
-3
votes
3answers
92 views
What is the most secure way to deal with data in mysql database [closed]
is using PDO more secure that the normal classic "mysql_query" ?
or is there other more secure ways to import and export data from mysql db
I heard the using PDO could cause you problems, is it ...
0
votes
0answers
77 views
XSS MySQL Database Accessible? [closed]
I'd like to know if there is any danger of someone being able to access the database via XSS vulnerabilities on this page (or SQLI or any other vulnerability I may have here without realizing it).
I ...
-1
votes
5answers
140 views
How to securely store passwords used to log in on third party websites
First of all, I am not lookig for a way to store the passwords of my own site to allow users to log in (which I could easily do using salted hashes of the password).
I am building a personal web page ...
0
votes
2answers
132 views
Php-MySql Security approach while INSERT’ing INTO MySql & fetching from MySql to screen
My Approach while INSERT’ing INTO MySql
I think I read in stackoverflow.com that “if you need escaping or similar action, do it just in time you need” so in the verification pages that I verify the ...


