Pepe Fagoaga
Pepe Fagoaga
If anyone is suffering this, check the following code. https://github.com/stedolan/jq/blob/77417c1335a12c4ceef469caf38c0cbfb6315b45/src/builtin.c#L1266-L1280 TL;DR `mktime()` has side-effects and anyways, returns time in the local timezone, not UTC. `jq` documentation at `Date` says `jq...
A possible fix is to set `TZ=UTC` environment variable after calling `jq`. ``` ➜ ~ export TZ=UTC; echo '"2022-06-14T09:16:11+00:00"' | jq '. | sub("\\+00:00";"Z") | strptime("%Y-%m-%dT%H:%M:%SZ")| mktime | todate' "2022-06-14T09:16:11Z"...
Also, I'm missing the tests. Please include them.
I don't know much about that Helm chart but this error occurs when you don't set any database name in the DSN. By default, `pq` takes the username as the...
Hi @pr3l14t0r, I'm going to answer you inline: - Regarding the `detect-secrets` Python package configuration, as far as we know there is no way to configure `BASE64_LIMIT` and `HEX_LIMIT` but...
Hi @HanumanthaRAON, the behaviour you are describing is not a bug. **The dashboard server is not authenticated, if you expose it to the internet, you are running it at your...
Hi @HanumanthaRAON as you can see in the Prowler documentation [here](https://docs.prowler.com/projects/prowler-open-source/en/latest/tutorials/dashboard/) for a docker container you can run `docker run --env HOST=0.0.0.0 --publish 127.0.0.1:11666:11666 toniblyx/prowler:latest dashboard` to expose the service...
Hi @HanumanthaRAON, I'm closing this issue. Please feel free to comment anything if you need more help. You can join our Slack channel with this [invite](https://join.slack.com/t/prowler-workspace/shared_invite/zt-2g0n47p1j-oFiW8QmY7a4rw9IV8H9HSg) where you can find...
@bblommers I've got to this PR by chance and I want to show our method (using the `/aws/service/global-infrastructure/services` SSM parameter) to do just this in Prowler: 1. First, with a...
Closed in favor of https://github.com/prowler-cloud/prowler/pull/3985