Giter VIP home page Giter VIP logo

Comments (3)

russellshackleford avatar russellshackleford commented on September 27, 2024

@vladimir-chernenko you pattern doesn't seem to match regardless. [a-z]*_(ro|rw|admin): is broken for your given example.

grep -nwHEI 'postgresql://[a-z]*:[a-z0-9]+' works, though. However, if a password might contain something that isn't letter, number, or underscore, you'll have to adjust accordingly. And test using grep -nwHEI since that is what git-secrets uses.

from git-secrets.

muziyoshiz avatar muziyoshiz commented on September 27, 2024

@russellshackleford
Hello. I have got a similar problem because git-secrets uses --word-regexp option implicitly.
So I propose to add some comments about --word-regexp option as follows:

<pattern>
The regex pattern to search. The pattern is passed to `git grep -nwHEI`.

I wanted to detect an api key in "apikey: ABCDEFGHIJKLMNOPQRST" format. But it failed.
You can reproduce the my situation as follows:

$ git init test-repo
Initialized empty Git repository in /Users/myoshiz/tmp/test-repo/.git/
$ cd test-repo
$ echo "apikey: ABCDEFGHIJKLMNOPQRST" > test.yml
$ git add .
$ git commit -m "test"
[master (root-commit) 19aa53b] test
 1 file changed, 1 insertion(+)
 create mode 100644 test.yml
$ git grep -nwHEI "\\s*(:|=>|=)\\s*(\"|')?[A-Za-z0-9]{20}(\"|')?"
(failed)
$ git grep -nwHEI "\\w+\\s*(:|=>|=)\\s*(\"|')?[A-Za-z0-9]{20}(\"|')?"
(succeeded)

from git-secrets.

sparr avatar sparr commented on September 27, 2024

grep is no longer invoked with -w

from git-secrets.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.