Tagged Questions
0
votes
1answer
9 views
using AES_ENCRYPT with VARCHAR in mysql
I am using AES_ENCRYPT() and AES_DECRYPT() for encription and decription of mysql data. Things are working fine no matter if I use VARCHAR() or VARBINARY() but this is just for small amount of data I ...
0
votes
0answers
10 views
Manually create Tank_Auth password in CodeIgniter
I am working on a new project where the existing devs have removed a fair portion of the sign-up code. In the past I would just enter my info directly into the database if I needed a test or ...
-5
votes
0answers
15 views
Encryption: Is there software that encrypts data from local netowrk and transfers to cloud? [closed]
I need an application that I can install on desktops that can:
1. Listen for data coming from a local ip address (XAMPP file)
2. Encrypt data
3. Send to my server
Ideally, users would only need to ...
0
votes
1answer
55 views
How to hide php codes and mysql table schema
We've a Clint requirement in which, all the PHP source codes + MySQL DB will be in their network. So all their data will not be visible to outside world. That's we can do.
But, the thing is.. we ...
2
votes
1answer
29 views
Encrypting database credentials
Firstly to explain, we have some websites which all connect to a central database. As a rule we don't give clients access to the FTP for their website so they cant access any files with the DB ...
2
votes
1answer
43 views
How to use AES_ENCRYPT and AES_DECRYPT in mysql
I created user table
CREATE TABLE `user` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT ,
`first_name` VARBINARY(100) NULL ,
`address` VARBINARY(200) NOT NULL ,
PRIMARY KEY (`id`))
ENGINE = InnoDB
...
2
votes
2answers
66 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
votes
1answer
57 views
Encrypt safe password in the mysql database using encryption function
I want to encrypt password to prevent SQL injection and other attacks and I used an encryption function in PHP, but I don't know how to use it to encrypt passwords.
I want each password in the user ...
1
vote
1answer
33 views
mcrypt_encrypt on string containing “:” (colon)
My web application gets URL objects from clients, encrypts it using mcrypt_encrypt , and stores the result in a MySQL DB as type LONGTEXT. This entire thing is done as shown below:
/* $copied ...
0
votes
2answers
32 views
MySQL encrypt() with salt accepts random characters after password
I have a table with usernames and encrypted passwords.
The passwords are encrypted by means of MySQL encrypt() together with a salt (the first two characters of the password).
Recently I've ...
-1
votes
6answers
68 views
Displaying Encrypted Passwords in PHP
A client I am building a website for uses password / promo codes for their "Members Only" section, allowing members to gain access to special content. I am storing said passwords via MySQL, encrypted ...
-1
votes
0answers
56 views
Advice needed for simple one way encryption
I'm a first year computer science student located in Copenhagen, and for our 2nd sem project were currently developing a patient journal system with a mysql database to go along with it. The ...
0
votes
3answers
89 views
MySQL - how to encrypt password
I am looking to know how I can edit my code in order to encrypt users passwords. At the moment the user fills in an HTML form which submits to customerRegister.php which goes through a series of ...
0
votes
2answers
141 views
Encrypt with PHP Mcrypt and Decrypt with MySQL aes_decrypt?
Is it possible to Encrypt data with PHP mcrypt and decrypt it in the database with MySQL AES_DECRYPT? At the moment, I'm using RIJNDAEL_128 for mcrypt on PHP. I've also made sure that the encrypted ...
4
votes
1answer
112 views
Is a salted password and mySQL AES_ENCRYPT sufficient for storing sensitive information?
I am using Apache, MySQL and PHP via HTTPS.
I need to be able to store sensitive information so it can be shared among several people.
If I have a database (secret) and two php files: (/var/www is my ...
0
votes
2answers
35 views
secured way of sending a data stored in mysql from one person to other
I am writing a webapp using PHP and MySql. User A will post their password to the database, and PHP file of User B should access the password. User A specifies the duration of access of the password, ...
1
vote
2answers
54 views
MySQL invalid Query syntax sometimes [duplicate]
trying to encrypt a social security number and the query works occassionally but once every 5 to 10 times it will throw an in
You have an error in your SQL syntax; check the manual that corresponds ...
1
vote
1answer
60 views
PHP AES 256 encrypt weird characters
I have the following encrypt code:
function encryptData($value){
$key = "7685647tfyr65413285746352413sgfh";
$text = $value;
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, ...
1
vote
2answers
44 views
Match all keywords on a row using encrypted blob fields in MySQL
I have a MySQL table where text fields are stored as BLOB, using AES_ENCRYPT. I need to match several keywords against the rows, with the condition that ALL keywords must exist in a row for it to be ...
0
votes
4answers
79 views
how to store the values passed by html form as it is into mysql DB?
i wonder how to store the values passed by html form as it is interms of format into mysql table. can anyone help me.
let me clear my question.
when the user enter his address in the text area like,
...
0
votes
0answers
52 views
Encrypt decrypt html content from CKeditor in PHP
Using CodeIgniter & MySQL
My users are creating personal content in CKEditor.
I want to encrypt this content and store it encrypted in MySQL.
Decryption key or whatever is needed will be ...
0
votes
1answer
28 views
mysql results with some encrypted data
Is it possible to get the results of a query and decrypt one column?
For example:
name | username | date | password
ted | teddy01 | 01/01/13 | s4drcfgbh76
So I want the results of this ...
0
votes
1answer
64 views
Use php crypt or Mysql enryption functions for field encryption? [closed]
CodeIgniter application that needs to be able to encrypt/decrypt spefici fields and for specific records.
I am thinking of two posible ways to do this:
Use the crypt() php function and pass the ...
1
vote
1answer
248 views
Mysql/Codeigniter - encrypt/decrypt user data safety - best practice
I am buidling a private site where each user has private data. I would like to provide a good level of security for their content. Towards this i am planning to:
-Use SSL sitewide (the site is not ...
-1
votes
5answers
117 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 ...
1
vote
1answer
85 views
Encrypt Database
I have a website written in PHP with MySql database support.
I want to Encrypt entire database.
Basically what I want is if anyone get database login credential, must not be able to read the data.
I ...
0
votes
1answer
49 views
Can you classify data sent over jdbc using Java Prepared Statements as encrypted?
I have a java application that connects to an external sql database using jdbc 4. It uses prepared statements to select data from the database and also to send updates. Can the data that's transferred ...
0
votes
2answers
161 views
how to take encrypted database backup in mysql
i am using mysql-5.5 and rhel5 and my intention is to use mysqldump to take the encrypted backup and compressed backup
as i am using mysqldump as below
mysqldump -u root -p db_name | gzip ...
0
votes
0answers
60 views
Trouble with DES_ENCRYPT in AWS RDS
I am having trouble with DES_ENCRYPT on the Amazon Web Services RDS MySQL database - the AWS RDS is SSL so it should support the DES_ENCRYPTION - in particular, WHEN I Run the SQL query from ...
0
votes
2answers
93 views
Securely storing username and password in mysql where php script will need to post fields in clear text
I am creating a cron job, that runs a php script that will login onto an external website using curl and scrapes a page to extract data.
Now the question I have is that I need to store the ...
4
votes
1answer
172 views
I need advice developing a sensitive data transfer/storage/encryption system [closed]
Intro
I'm currently working on a project which involves the daily extraction of data (pharmacy records) from a VisualFox Pro database, and uploading some of it to a WordPress site, where clients of ...
0
votes
0answers
101 views
HIPAA compliant PHP/MySQL application
I'm working on a PHP/MySQL application that must be HIPAA compliant. From what I've read, any personal data that may identify someone or any medical information must be 256-bit encrypted both at rest ...
0
votes
2answers
71 views
Password encryption login problems
Im having problem looking up and verifying a user's encrypted password in my sql database. The registration process is fine, it creates their row with their md5 ecrypted password but then when trying ...
0
votes
1answer
73 views
Using AES_DECRYPT with SELECT *
Is it possible to select all records and decrypt them using the asterisk with the AES_DECRYPT function? This is what I want to be able to do:
SELECT AES_DECRYPT(*, SOMESTATICKEY) FROM some_table
...
0
votes
1answer
84 views
Indexes on BLOBs that contain encrypted data
I have a bunch of columns in a table that are of the type BLOB. The data that's contained in these columns are encrypted with MySQL's AES_ENCRYPT() function. Some of these fields are being used in a ...
1
vote
1answer
129 views
Cant Login in my Hashed password but there's one user that can login
Halo there,
I have a problem of logging in my registered user, I've hashed the passwords and when I log in my form refuse, So I don't really know whats the problem because the user I registered ...
2
votes
1answer
66 views
No errors but I cant see my data in database
Halo there,
I'm inserting into MySql using PHP, the Code goes through but when I query the database i find nothing in my Database. I cant figure out whats happening. I have five fields in my ...
0
votes
0answers
183 views
PHP Change Password salt not working
I can't figure this out.
I want the user to be able to change his password:
function changePw($userid, $password, $mysqli)
{
if ($stmt = $mysqli->prepare("SELECT salt FROM members WHERE id = ? ...
0
votes
2answers
49 views
Encryption key on same database?
I'm encrypting some sensitive data before passing it to the db. As of now, each user has it's own enc/decr key stored in the db (and the key itself is encr with a master pwd.
I was wondering if it ...
2
votes
2answers
91 views
How to hash and encrypt password over the web?
I am working with a pet project and I come to a point where I want to add user sign up support. After some research I decide to go with saving hashed password and salt in my database and never the ...
1
vote
3answers
340 views
AES_DECRYPT() and AES_ENCRYPT() in MySQL with Polish characters
I have a MySQL database which is configured to receive a data with polish characters (f. ex ą, ę, ó, ł, ń etc.).
Now I want to send data with these Polish characters to a db using AES_ENCRYPT(), and ...
0
votes
1answer
76 views
folder level authentication fails while using .htaccess encryption
I am trying to authenticate a user in folder level using .htaccess file.
And my .htaccess file has the following lines for password encryption. It basically uses SHA1Sum as the encryption type.
...
0
votes
0answers
95 views
checking the MySQL table username and the AES encrypted password in NetBeans..?
I have inserted a username and an encrypted password to a MySQL table. The password was decrypted using AES_ENCRYPT in MySQL. now I want decrypted the password and check it whether it is matching with ...
4
votes
1answer
155 views
Wildcard searching of encrypted data in a MySQL database?
I am in the process of building a small web application which will hold around 10 pieces of information for every person inserted. Due to data protection the majority of this information must be ...
2
votes
3answers
147 views
How do i encrypt email columns in mysql table?
I have a rails 3 application which uses mysql. The app stores phone numbers and emails of customers in a table. I would like to encrypt the fields instead of storing them as plain and straight values. ...
0
votes
0answers
88 views
PII and database storage: best encryption option [closed]
I need to store Personally Identifiable Information (PII) in a mysql database for website accounts, and I want to do it following best practices. The information I want to encrypt consists of email ...
1
vote
3answers
93 views
Secure data in database [closed]
Should I store emails in my database in encoded form or encrypted or hashed? Is it important to store them in non-plain text form?
2
votes
2answers
111 views
Storing MySQL Passwords [closed]
So, a friend and I are currently writing a panel (in python/django) for managing gameservers.
Each client also gets a MySQL server with their game server. What we are stuck on at the moment is how ...
0
votes
0answers
39 views
Searching an Encrypted Database
I have a MySQL database table that contains an amount of encrypted data (different subsets encrypted with different keys) that needs to be searchable. If the user is authenticated and has access ...
0
votes
2answers
92 views
Protect database with password like Microsoft Access
I want to ask for something in Database protection.
I have a Windows Application that will be deployed to different clients, while deploying i am creating a database on client machine.
The Question ...



