Questions tagged [redaction]

Redaction is a type of editing, typically the removal of information from a document before it is published or shared with a larger audience.

59 questions
1
vote
1 answer

Extracting text marked for redaction in a PDF document using .NET

I am working on a PDF acrobat add-on product and one of the requirements is to extract the text marked for redaction in a given PDF document. Assuming you know what is "redaction" ( Please read this if you don't…
Bathla
  • 125
  • 9
0
votes
1 answer

Has anyone used AWS Textract to add OCR text to PDFs in Python?

I'm exploring options for semi-automated redaction of PDFs using various NLP techniques, and have been using PyMuPDF with Tesseract via ocrmypdf for OCR. This works pretty well overall, but management want to try Textract as an alternative. It's…
REJ
  • 1
  • 2
0
votes
0 answers

How to redact a stringified object using Pino LoggerOptions

I know the pino could redact the property value from an object, but how if the object is already been stringified? Is there anyway to redact the information from that stringified object?
0
votes
2 answers

Saving a redacted PDF file in Python to mask underneath text

I read in a PDF file in Python, added a text box on top of the text that I'd like to redact, and saved the change in a new PDF file. When I searched for the text in the redacted PDF file using a PDF reader, the text can still be found. Is there a…
TTZ
  • 823
  • 2
  • 9
  • 19
0
votes
1 answer

how to de-identify/ redact word files using GCPs DLP API in python

I am using the GCP's DLP API in python to redact images in the following way and it works fine: def redact_image_all_text( project, filename, output_filename, ): """Uses the Data Loss Prevention API to redact all text in an image. …
0
votes
0 answers

How to create a Redact Policy in oracle

I am trying to create a redact policy to hide NIC from Customer table for all users. BEGIN DBMS_REDACT.ADD_POLICY ( object_schema => 'RETAILX', object_name => 'CUSTOMER', column_name => 'NIC', policy_name …
Havishka
  • 1
  • 1
0
votes
0 answers

Is there a log redact feature in .net core?

I need a redacting feature like nodeJS pino in .net core. I need to log objects but since they hold sensitive data, i cant log property values. But i need to log as much information as possible. For example i have public class Car { public…
yılmaz
  • 365
  • 1
  • 14
0
votes
1 answer

Programatically redact text and images on a page in PDF file

Adobe Acrobat provides the ability to redact PDF files. I would like to use this feature programmatically where I provide the page number and all text and/or images are redacted. Is there any way to do this programmatically?
mlhyyl
  • 31
  • 9
0
votes
0 answers

Unrecognised as reference in MongoDB field level redaction in java

I'm trying to implement field level redaction as described in the MongoDB tutorial pages in a Java application. I'm recieving an error that "both operands of $setIsSubset must be arrays. First argument is of type: string" when the first operand is a…
Jontia
  • 137
  • 14
0
votes
3 answers

Applying redactions in the form of string substitutions to HTML documents using XSLT

I have a large number of HTML (and possibly other xml) documents that I need to redact. The redactions are typically of the form "John Doe" -> "[Person A]". The text to be redacted may be in headers or paragraphs, but will almost always be in…
Rmz
  • 125
  • 1
  • 8
0
votes
3 answers

How to identify and redact all instances of a matching pattern in T-SQL

I have a requirement to run a function over certain fields to identify and redact any numbers which are 5 digits or longer, ensuring all but the last 4 digits are replaced with * For example: "Some text with 12345 and 1234 and 12345678" would become…
Nyk
  • 33
  • 5
0
votes
1 answer

how to use redacted column in packages(it is showing the redacted value)

I would like to use the redacted columns in packages and procedures with raw data but it is showing the redacted only then how to use the actual data in procedures? In below example ename is redacted column and fully redacted as empty. BEGIN …
0
votes
0 answers

Partial loading of PDF, stop loading before overlay

I have a pdf that briefly flashes information that is under an overlay. Unflatten doesn't work. Is there a way to edit the pdf's data to manually remove the overlay layer, or some way to stop it from loading before the overlay layer is applied? The…
0
votes
1 answer

INSERT AS SELECT in package where table has redaction

I've redacted columns on a table. When developer try to use a 'INSERT AS SELECT' command in a pkg they get : ORA-28081: Insufficient privileges - the command references a redacted object. Apart from granting exemption to the schema (defeating the…
Alan
  • 1
  • 1
0
votes
1 answer

iText PDFSweep RegexBasedCleanupStrategy not work in some case

I'm trying to use iText PDFSweep RegexBasedCleanupStrategy to redact some words from pdf, however I only want to redact the word but not appear in other word, eg. I want to redact "al" as single word, but I don't want to redact the "al" in…
J Zou
  • 108
  • 6