Questions tagged [sensitive-data]

Please do not use this tag. Almost all data is in some way sensitive. Use the [security], [cryptography] or [credentials] tag instead.

91 questions
0
votes
1 answer

How to mask a value from postgresql.log while logging

I'm in need of masking some sensitive data from logging in postgresql.log For Example, Let's say I want mask "password@123" from postgresql.log while logging with "******" I tried below configuration, log_line_prefix = '%t [%p]: REGEXP_REPLACE(%m,…
Sakthis
  • 5
  • 3
0
votes
2 answers

How can I hide my previous commits from my repo as it had some sensitive data

TL;DR- How can I make my previous commits invisible on a repository which was once private and is now public? So, I was one day working on a project which was on my private repo, after when I was done I made it public but my commits are visible to…
0
votes
0 answers

Handle sensitive data in client-server communication

I have a general question about the right handling of sensitive data. Use case scenario A user sends sensitive data (documents or images) via an API to a Node.js server. The server then stores the data on the IPFS. Currently the server is used in…
philman
  • 129
  • 2
  • 10
0
votes
0 answers

How to hide sensitive information like a professional on my computer?

Is there any way of hiding sensitive information? I know there is some old way provided by the Microsoft in their windows series. But that is so old and unsecure. Any buddy can get that data either by copying the whole drive or the suspected folder…
0
votes
1 answer

Where to store sensitive information in kong api-gateway declarative mode

I am trying to use key-auth and acl plugins of kong in a db-less declarative manner. In kong.yml I have: _format_version: "2.1" _transform: true services: - name: gamma-live host: gamma port: 8000 protocol: http path: /live …
Amin Ba
  • 1,603
  • 1
  • 13
  • 38
0
votes
1 answer

Xamarin Security-Sensitive data storing

On xamarin app, where I can store my dbConnection or other security-sensitive data. For example in asp net application my DBConnection string i store in the appsettings.json file, and a user don't have access to that file. But on xamarin app I don't…
0
votes
0 answers

BitBucket: How to hide sensitive values in bitbuket repo

We have manifest file which contains some username and passwords which is being used by Jenkins during build and deployment. We need to hide these values in repo when someone opens this file in browser.
Prudhvi B
  • 144
  • 2
  • 13
0
votes
0 answers

Masking sensitive data at SOAP envelop with logback-spring.xml

I am currently struggling with masking the data available in the logs intercepted at the SOAP client. I have taken the approach to writing customized PatternLayout: public class PatternMaskingLayout extends ch.qos.logback.classic.PatternLayout…
0
votes
1 answer

When does SSL encrypt data from browser to server?

My understand, the website's data with https protocol will be encrypted when transfered between browser and server. When is it encrypted? In login form, I use the Telerik Fiddler Web Debuger to capture the request, I still see the plaintext…
Rango
  • 1,954
  • 4
  • 14
  • 14
0
votes
0 answers

Common approach of sending sensitive data between pages asp.net core

I went through many articles regarding sending data between pages in asp.net core. Most of the issues are old or listing the mechanisms for retaining data "Hidden form fields, query-string, Temp data, sessions" in a general way, I need to understand…
0
votes
1 answer

Sensitive data into query param GET Api

I have a REST GET API , like http://localhost:8080/users/{userId}/assignments/{assignmentId} Since , this is the GET call , so 'assignmentId' will get expose into URL while calling it. This is the sensitive data for me & i don't want this to be…
0
votes
3 answers

Delete images and pdf when the session is over

I want to develop a healthcare app in android. the doctor will be authenticate for a specific time to access patient's medical reports and download them to the application (reports will be in a block-chain or a db). when the session is over all of…
udi
  • 3,672
  • 2
  • 12
  • 33
0
votes
3 answers

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 problem as data sent or received from an SSL…
math
  • 2,811
  • 3
  • 24
  • 29
0
votes
0 answers

hi there, i want to deploy my app in gitHub and LIVE my app in Heroku but there is some sensitive information in my code. what should i do now?

I want to deploy my app in gitHub and LIVE my app in Heroku but there is some sensitive information in my code. what should I do now? I have a user name and user password to connect my app with cloud-based MongoDB database.
0
votes
0 answers

Print HTTPClient request parameters with sensitive data

I'm sending request using URIBuilder and I want to print the POST request by without or masking some of the parameters, code: uriBuilder.addParameter("p1", "v1"); .... uriBuilder.addParameter("p10", "v10"); HttpPost…
Ori Marko
  • 56,308
  • 23
  • 131
  • 233