Jörn Lenoch

Results 3 comments of Jörn Lenoch

We encountered this issue as well. I've created a simple fix which would resolve this issue: https://github.com/russellhaering/gosaml2/pull/80

Same issue is true for functions ``` // RandomizeRuntime ... // #nosec G404 func (p *passwordResetter) RandomizeRuntime() { sleepTime := rand.Intn(1000) + 1000 // #nosec G404 time.Sleep(time.Duration(sleepTime) * time.Millisecond) }...

Can confirm. Also exists in typo3 v10.4.23. Issue is your mentioned `Classes/Module/RecipientList.php:840` which should use chr(8) instead of '' to enforce no enclosures. (see: https://stackoverflow.com/questions/16896923/how-can-you-use-fgetcsv-when-there-is-no-enclosure-character/16897250) Fix is personally confirmed by...