621 questions
0 votes
0 answers
50 views
How to make "hg clone" with hggit use the .netrc for HTTP authentication?
I have a remote Git repository that is to be accessed via HTTPS with basic auth, whose credentials are properly configured in my ~/.netrc, e.g. $ cat ~/.netrc machine example.com login example-user ...
0 votes
0 answers
99 views
Can't access Spring Cloud Config from Python
I've created a Spring Cloud Config Server with (for now) only two yaml files application.yml application-dev.yml Also Spring Security with basic authentication (username & password) is defined, ...
0 votes
1 answer
87 views
Generating the same SHA-256 code_challenge as Postman using Java
When working on new HTTP request in Postman v11.2.14-canary01, and going to the Authorization tab and selecting SHA-256 for the Code Challenge Method and putting ...
3 votes
1 answer
702 views
How to change Nginx to deny by default instead of allow, when using X-Forwarded-For, with visitors inside the LAN allowed access without a login?
In an Nginx config we have the following code to allow viewing the site from inside the LAN without a login, otherwise require a login if outside the LAN: real_ip_header X-Forwarded-For; # IPs trusted ...
1 vote
0 answers
217 views
Zabbix 6.0.20 anable HTTP authentication
I'm trying to enable HTTP authentication for my zabbix server 6.0.20. I have an EC2 instance running on AWS, and I configured ALB using Cognito authentication. I updated the files /etc/nginx/conf.d/...
1 vote
1 answer
693 views
Is realm still a required parameter in Basic authentication scheme?
On one hand, RFC 7617 Section 2 clearly states that the parameter realm is REQUIRED in Basic authentication scheme: The Basic authentication scheme utilizes the Authentication Framework as follows. ...
6 votes
2 answers
1k views
Is it possible to create a Git helper or plugin that adds HTTP headers or forces Bearer Token authentication
Background: We use Bitbucket Server (soon to upgrade/switch to Bitbucket DataCenter). In our authentication setup, we have user passwords disabled (web auth is via a different means), so for Bitbucket/...
1 vote
2 answers
2k views
Basic HTTP auth in actix-web
I'm really new to web development and I'm stuck trying to implement a simple HTTP auth in a project using actix-web. My needs are following: I don't want/need any databases for the auth. It's enough ...
0 votes
1 answer
389 views
How to unset $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'] in PHP 7.3
I installed APC status page script on my server to see APC status. This lets you set a username and password via HTTP Authentication to view more detailed information. Once logged in via HTTP ...
0 votes
0 answers
3k views
K6 HTTP Authentication
I am having a login page with "Username, Password" and "login" button. I am able to login with the username and password manually from the browser. In K6, through script, I am ...
1 vote
1 answer
492 views
Sending Private access token (PAT) in Authentication header to download an archive for a private GitHub repository in Inno Setup script
I'm writing an install script that's supposed to download a private repository from GitHub: if Pat <> '' then begin Pat := Pat + '@' end; Url := Format('https://%sgithub.com/<MY_REPO>/%...
1 vote
2 answers
1k views
No 'Access-Control-Allow-Origin' header is present on the requested resource. on the Pantheon Site
I have created a Webservice in Drupal 9 of the Pantheon (Locked) Site that I need to call from another domain. I have tried almost all the solutions I found but nothing is working. services.yml # ...
0 votes
1 answer
253 views
How to login to liferay website using JMeter
I am facing one problem that i am unable to login to the liferay website using JMeter. The problem i know already but don't know how to hanmdle it. I get to know that "p_auth" token is ...
0 votes
0 answers
1k views
HTTP Authentication + PHP + Apache Server API CGI/FastCGI
I have a system implemented in php that has been working for years and uses head HTTP_AUTHORIZATION for logging. Now the hosting provider made changes to the server and the server does not receive the ...
0 votes
1 answer
692 views
I cant use multiple credentials on JMeter Authorization Manager on the same Test Case
I am trying to simulate a scenario where two different users(with different credentials) log in simultaneously. This simulation will continue in a controlled number of iterations loop. I am using the ...