Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
316 views

Are there any SQL injection tools out there so I can test my site's vulnerabality?

Are there any SQL injection tools out there so I can test my site for vulnerabilities? Any good ones? Free ones would be good.
5
votes
7answers
362 views

How to separate a person's identity from his personal data?

I'm writing an app which main purpose is to keep list of users purchases. I would like to ensure that even I as a developer (or anyone with full access to the database) could not figure out how much ...
3
votes
3answers
99 views

How do I securely create queries in ADO.NET where the tables being selected from change?

In ADO.NET you can add parameters to a command object to securely add user input to a SQL query. What is the equivalent for the other predicates common to a SQL query? I am writing a program that is ...
3
votes
3answers
188 views

SQL Server Permissions on Stored Procs with dynamic SQL

I have a database which has an application role. The role members all belong to a group in Active Directory. Instead of giving the role permissions to select from the tables I have given the role ...
3
votes
2answers
375 views

How to effectively save database password in desktop application?

I'm making desktop application (lets call it app) which uses database (mysql). More app's users share one database user. Example : John and Mike app users connect to DB as "dbuser", etc. The problem ...
2
votes
1answer
31 views

Creating a master key in SQL Server

I'm trying to implement an encrypted column as in this following MSDN example. I understand most of the code except for the very first line: --If there is no master key, create one now. IF NOT ...
2
votes
1answer
128 views

Can't connect to mysql because there are no users

I mistakenly removed all users for mysql ... So I can't connect to mysql. Does anyone has an idea ? I tried reinstalling it but it didn't work ... PS : I am on Archlinux. Thanks in advance !
2
votes
2answers
312 views

How to implement Tenant View Filter security pattern in a shared database using ASP.NET MVC2 and MS SQL Server

I am starting to build a SaaS line of business application in ASP.NET MVC2 but before I start I want to establish good architecture foundation. I am going towards a shared database and shared schema ...
2
votes
3answers
1k views

Questions and considerations to ask client for designing a database

so as title says, I would like to hear your advices what are the most important questions to consider and ask end-users before designing database for their application. We are to make ...
2
votes
5answers
730 views

How secure is a PostgreSQL database if my server is stolen?

If I have a server with a database if top secret data in PostgreSQL and my password is practically impossible to crack (128 character string of all sorts of weird chars, generated by hand). The server ...
2
votes
5answers
332 views

Prevent SQL Server Table operations (INSERT and DELETE) on some tables

While working with some random sql queries on our databases, we may not want to insert or delete items to some of the database tables by just typing their names by mistake. So how to make them locked ...
2
votes
4answers
3k views

Limit Database List to Ones With Permission SQL Server

By default if you connect to a remote SQL Server via an account that has access to say 1 of the 10 databases. You will still see in the Object Explorer all other databases, obviously due to ...
1
vote
2answers
22 views

Escaping/sanitizing data retrieved from the database

Let's say I have a web application that gets input from the user and saves it in a database. Let's further assume that there are no security vulnerabilities -- it correctly escapes user input, uses ...
1
vote
3answers
47 views

Splitting a mysql database for security

I have used sql (mostly mysql) for years but not to a professional standard, so I'm looking for a shove in the right direction. I am currently designing a web app that will collect user's ...
1
vote
1answer
52 views

Row level permissions or facebook-style privacy in ASP.NET MVC 3?

I am working on a project that requires custom granular security/privacy settings. Basically I need to be able to restrict access to data based on the user executing the query. Easy enough, right? ...
1
vote
2answers
86 views

How do I secure the data in my winform's SQL 2005 Express database?

I have a c# winform application that uses SQL 2005 Express. The application creates math and reading quizzes and is marketed to parents of school-aged children. The parents purchase and download SQL ...
1
vote
2answers
237 views

Preventing fraudulent submission to a scoreboard

I'm working on the backend for a Flash game and I need to secure the data going into the scoreboard. The game is going to be hosted on many sites in a banner ad, the user will play the game in the ...
0
votes
2answers
22 views

MySQL escaped_strings VS. Parameterised Queries

Just reading up on Parameterised queries, which seem to be the last word in database defence, and was wondering the following: I have an existing PHP/MySQL self-built CMS where ALL inputs (bar ...
0
votes
1answer
24 views

Is there a database tool which shows a list of sql commands I have permission for?

I talked to the developer of HeidiSQL about it and he told me I can query it by "show grants" command of sql, but i don't understand the result set coming from it. show grants // I execute query ...
0
votes
0answers
31 views

Database security complexity comparison/analysis

Is there any analysis or comparison of the complexity of the security model for various database systems? I use SQL Server 2005 and I find the security model to be ridiculously complex and I'm ...
0
votes
0answers
9 views

Software Firewall with 'log in' function

I need to secure a server with a firewall, that's simple :) But for certain users I would like to open certain other ports (for example direct access to the Database for SSRS report builders). These ...
0
votes
1answer
56 views

Postgresql client authentication issue

I am struggling with the postgresql's access control file pg_hba.conf... it's never happy, and all I want to do is straight forward: A) Allow access to ALL from localhost B) Allow access to ALL from ...
0
votes
2answers
202 views

Why is there no built-in “stored procedure executor” database role?

I've always wondered why the list of database roles (db_datareader, db_datawriter, db_ddladmin, etc) never included a db_storedprocedureexecutor. The others make sense, but it seems like being able to ...
0
votes
2answers
75 views

Database security / scaling question

Typically I use a database such as MySQL or PostGreSQL on the same machine as the application using it, which makes access easy and secure. I'm just now building the first site that will have a ...
0
votes
1answer
245 views

Dissertation about website and database security - in need of some pointers

I am on my dissertation in my final year at university at the moment. One of the areas I need to research is security - for both websites and for databases. I currently have sections on the following: ...
0
votes
2answers
48 views

Is it possible for double-escaping to cause harm to the DB?

If I accidentally double escape a string, can the DB be harmed? For the purposes of this question, let's say I'm not using stored procedures or parametrized queries For example, let's say I get the ...
0
votes
2answers
48 views

SQL Server 2005 Security

Here is the scenario. I have a SQL Server 2005 production database/server. It currently has developers and supporters who can connect to it. I need to create a security module that gives developers ...
0
votes
1answer
62 views

Web Application Scanner

I want to develop a Web applications to collect or exchange sensitive or personal data, this system would give user a detailed automated report on : • How secure user's website is? • How easily it ...
0
votes
3answers
842 views

SQL Server Mgt Studio not showing table?

I have a table in SQL Server 2000 Standard Edition called "dbo.T668" (don't blame me for the naming convention). I'm working on the server using SQL Server Management Studio 2005, and for some ...