Thomas Kriechbaumer
Thomas Kriechbaumer
I think you are referring to pre-signed URLs / query parameters as described in https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html Unfortunately this is currently not implemented - [only headers](https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-auth-using-authorization-header.html) are considered at the moment. I'd...
`invalid signature in Authorization header` indicates that the incoming request was not signed by a valid set of credential that is known to aws-s3-reverse-proxy. Your requests shows `OMKK45MUP3A21NUFBAMO` as AWS_ACCESS_KEY_ID....
The other issue could be in the Ingress Controller (I assume nginx-ingress) which is rewriting some of the headers or query params. Please try and get a full request dump...
@nallath thanks for reaching out - I was aware that plugins can hook into this mechanism, and the readme statement was supposed to indicate that this plugin does not use...
This PR. I created it a couple of months ago - so I'm not fully aware of the changes I made any more... My main point for this PR was...
I'm running a python3 script with this code: ``` print(subprocess.check_output(['/usr/bin/id', '-u'])) ``` and it does not yield the expected result of `0`, but instead my regular uid of 501 is...
@sveinbjornt no offense, but I'm not going to run your application with root privileges on my system... 😄 I'm sure it's clean and you have no malicious intend in mind...
@sveinbjornt output: ``` ​/usr/bin/whoami: root Real User ID: 501 Effective User ID: 0 Current working directory: /Users/foobar/Downloads/Foo.app/Contents/Resources ``` looks correct... I'm trying to use the "None" interface - maybe there...
If I use this python3 script: ``` import sys import os import subprocess print(subprocess.check_output(['whoami'])) print(subprocess.check_output(['/usr/bin/id', '-r', '-u'])) print(subprocess.check_output(['/usr/bin/id', '-u'])) print(os.getuid()) print(os.geteuid()) sys.exit(0) ``` * with "Run with root privileges" *...
Thanks for testing this again @sveinbjornt - what shebang and "Script Type" did you use on your system?