The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
46 views

System.Speech down microphone sensitivity

I would like to know how to down microphone sensitivity with System.Speech in C#.. To explain myself, i have a grammar file, and my application should begin to record me when i say SIVRAJ (my ...
0
votes
1answer
39 views

Is it possible to disable a GtkNotebook tab (like set_sensitive(*tab*, false)) in GTK+ 2.24?

I have searched on the internet but didn't reach any conclusion. This feature feels "natural" in the GUI, that's why I'm asking here despite having found nothing on the issue. I already know that if I ...
-1
votes
0answers
30 views

How to store private keys securely [closed]

A computer has 100 private keys stored in some form of non volatile memory. What are some secure methods of storing them? For example I could encrypt the 100 keys with a 101st key and store the 100 ...
-4
votes
2answers
58 views

best way to store sensitive data php encryption [closed]

Hello so obviously this is not a question with code, I am very familiar with salt and md5 encryption in php. But I need a safe way to store sensitive information in mysql. using md5 its very simple ...
0
votes
1answer
83 views

Is it really impossible for someone to read the connection string when it is protected?

I just saw this article Hiding Important Data I'm thinking to use app.config for protecting my FTP connection string as it's stated in the link above but I'm wondering whether It's really impossible ...
0
votes
2answers
156 views

Android Assets database security issues?

I'm looking at this page, which explains how to use a database in the local Android project (in Assets), to populate the application standard database (managed by Android, in data/...) like this. In ...
1
vote
1answer
203 views

Encrypting sensitive data with mcrypt

Hello guys I have a security question regarding encrypting/decrypting personal sensitive information: Identity(Name, Address, Phone number), Bank details(Sort code and account number) almost anything ...
2
votes
1answer
109 views

Temporarily store sensitive data

The scenario is as follows: an encryption key should be stored temporarily, so that multiple instances of an application can access it (sequentially). After use, the key should of course be removed ...
-2
votes
1answer
122 views

Encryption algorithm for encypting sensitive-data - AES-256?

In one of my applications, I am to store user credentials and tokens. As the credentials are used directly on third-party services, I cannot hash them and thus need to store them as-is. As I am not ...
0
votes
2answers
248 views

sensitive data leakage from — response.getWriter().write(xml.toString()); via web page

xml.append("<alertDesc>"); xml.append(desc); xml.append("</alertDesc>"); response.getWriter().write(xml.toString()); response.setContentType("text/xml"); ...
1
vote
3answers
542 views

How do DVCS (Github, BitBucket, etc…) ensure private project code integrity?

How do DVCS (Github, BitBucket, etc...) ensure private project code integrity? Sure, the companies claim no intellectual rights when you upload your code to their online repositories, but how is the ...
2
votes
2answers
104 views

in MVC, how to verify reliability of submitted form hidden fields?

In mvc, when submitted to a controller, how can I verify that a user hasn't maliciously changed readonly hidden form fields?
0
votes
3answers
156 views

how to pass sensitive data from view to controller

In order to construct an entity with quite a lot of information, I need to performe a sequence of forms submitting. Every time I return a view from a controller, I need to pass some id's about the not ...
1
vote
3answers
144 views

Java and Web development: good practices to store custom sensitive data such as private keys, API keys, etc

What do you advise to store custom sensitive data within a Spring MVC application (or within any other JAVA Web MVC application actually)? Let's say I've an API key and I need it to be available for ...
0
votes
3answers
428 views

Hide Data in asp.net GridView Except When Editing

I am using asp:GridView to display a data table in asp.net, .aspx page. I have a column that contains sensitive information. I would like to display the column with the data grayed out or any other ...
7
votes
4answers
547 views

How do you handle sensitive data in a public git repo?

How do you handle sensitive data like secret API keys, hash salts when you keep your code in a public git repo? Obviously keeping the sensitive data in the code will compromise it. Another solution ...
0
votes
2answers
80 views

Exposing mimimum password lengths

We've a login form and our minimum password length is 8 chars. So when a user types anything less than 8, we validate the length via javascript and let the user know that the minimum password length ...
3
votes
2answers
157 views

Too much information, PHP error?

I'm making a custom wrapper for the mysql_ functions when MySQLi, e.g. isn't available, and when it can't connect, it throws an exception. However, the fatal error output is this: Fatal error: ...
3
votes
3answers
195 views

Data mining of encrypted data in a database

I am interested in doing a data mining website. Data in DB is really sensitive. I would like to find a way to encrypt data in DB and to prove to my clients that even me, I can't read data. The ...
1
vote
1answer
802 views

Android perimision “user's private information”, “your personal information” , “read sensitive log data”

Well I found this texts on many applications, that is when I install some app the require the android.permission.READ_LOGS permission, they show some text like "permission for reading read sensitive ...
1
vote
1answer
68 views

How can I extract out sensitive information when pushing to a git repository?

I have a function that I call somewhere within my classes that looks like this: RLP.Unlock("User ID", new byte[] { ... }); The data is per-user information provided by the hardware manufacturers, ...
13
votes
3answers
2k views

Where to store sensitive data in public rails app?

My personal rails project uses a few API's for which I store the API keys/secrets in config/environments/production.yml and development.yml as global variables. I now want to push this project to ...
2
votes
2answers
210 views

Backup database and remove sensitive data

I'm looking at backup routine which allows our production database to be backed up with sensitive data stripped out of certain columns within the database to be exported to our testing server. The ...
4
votes
2answers
1k views

Storing sensitive data with Drupal

I need to use sensitive data with Drupal for a custom module to use. If I simply set them through the GUI, they will be stored unencrypted in the database. Anyone having access to it will have access ...
0
votes
3answers
182 views

Why OpenSSL may keep received/written data in memory?

I'm trying to ensure that sensitive data (passwords, ...) are not kept in clear-text in process memory and I have found that all data sent to or received from OpenSSL is kept in memory... This is a ...
12
votes
2answers
3k views

Android private content provider?

I am developing an application that involves some sensitive user information. I retrieve this information via a private web API. I am trying to determine the best way to get this data into my app. ...
5
votes
7answers
415 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 ...