Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A redacting Ruby logger to prevent the leaking of secrets via logs

License

NotificationsYou must be signed in to change notification settings

github/redacting-logger

testlintbuildCodeQLrelease

A redacting Ruby logger to prevent the leaking of secrets via logs

This Gem wraps the official Rubylogger utility

Gem

Installation 💎

You can download this Gem fromGitHub Packages orRubyGems

Via a Gemfile:

source"https://rubygems.org"gem"redacting-logger","~> X.X.X"# Replace X.X.X with the latest version

Usage 💻

Basic

require"redacting_logger"# Create a new loggerlogger=RedactingLogger.new(redact_patterns:[/topsecret/])# Log a message that contains some redacted patternlogger.info("This is a topsecret message.")

This will output:

I, [timestamp]  INFO -- : This is a [REDACTED] message.

Advanced

require"redacting_logger"# Create a new loggerlogger=RedactingLogger.new(  $stdout,# The device to log to (defaults to $stdout if not provided)redact_patterns:[/REDACTED_PATTERN1/,/REDACTED_PATTERN2/],# An array of Regexp patterns to redact from the logslevel:Logger::INFO,# The log level to useredacted_msg:"[REDACTED]",# The message to replace the redacted patterns withuse_default_patterns:true# Whether to use the default built-in patterns or not)# Log a message that contains some redacted patternslogger.info("This is a message with a REDACTED_PATTERN1 and REDACTED_PATTERN2 in it.")

This will output:

I, [timestamp]  INFO -- : This is a message with a [REDACTED] and [REDACTED] in it.

Default Redaction Patterns

This Gem comes pre-built with a few redaction patterns to help you get started. These patterns can be located inlib/patterns/default.rb

A few examples of these patterns are:

  • GitHub Personal Access Tokens
  • GitHub Temporary Actions Tokens
  • RSA Private Keys
  • JWT Tokens

You can disable these default patterns with:

logger=RedactingLogger.new(use_default_patterns:false# Whether to use the default built-in patterns or not)

About

A redacting Ruby logger to prevent the leaking of secrets via logs

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors5


[8]ページ先頭

©2009-2025 Movatter.jp