Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • renovate/commitlint
  • renovate/docker-7.x
  • renovate/lock-file-maintenance
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
48 results

Target

Select target project
  • perun/perun-proxyidp/perun-proxy-utils
1 result
Select Git revision
  • dev
  • github/fork/vyskocilpavel/auth_active_probe_config
  • main
  • probes_script
  • renovate/commitlint
  • renovate/docker-7.x
  • renovate/lock-file-maintenance
  • xpavlic/run_probes_jpmu_test
  • v1.0.0
  • v1.1.0
  • v1.10.0
  • v1.11.0
  • v1.2.0
  • v1.3.0
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.7.1
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.8.4
  • v1.8.5
  • v1.9.0
  • v1.9.1
  • v1.9.2
  • v2.0.0
  • v2.1.0
  • v2.2.0
  • v2.2.1
  • v2.2.2
  • v2.3.0
  • v2.4.0
  • v2.5.0
  • v2.5.1
  • v2.5.2
  • v2.5.3
  • v2.5.4
  • v2.6.0
  • v2.7.0
  • v2.7.1
  • v2.7.2
  • v2.7.3
  • v2.7.4
  • v3.0.0
  • v3.1.0
48 results
Show changes
Commits on Source (4)
## [2.7.4](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/compare/v2.7.3...v2.7.4) (2024-05-30)
### Bug Fixes
* **check_saml:** perform initial redirect if needed, not based on hostname ([9c75388](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/commit/9c75388cc4447accdf0a7fbd903b5f8d91d2b112))
## [2.7.3](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/compare/v2.7.2...v2.7.3) (2024-04-24) ## [2.7.3](https://gitlab.ics.muni.cz/perun/perun-proxyidp/perun-proxy-utils/compare/v2.7.2...v2.7.3) (2024-04-24)
......
This diff is collapsed.
...@@ -290,19 +290,18 @@ class SAMLChecker: ...@@ -290,19 +290,18 @@ class SAMLChecker:
response = self.curl(url) response = self.curl(url)
response_html = response.read().decode("utf-8") response_html = response.read().decode("utf-8")
response_url = response.url response_url = response.url
if get_host_from_url(response_url) != (
self.hosts[self.args.idp_host] try_response_html, try_response_url = self.js_form_redirect(
if self.args.idp_host in self.hosts response_html, response_url
else self.args.idp_host )
): if try_response_html is None:
response_html, response_url = self.js_form_redirect( if self.args.verbose >= 1:
response_html, response_url print("JS redirect not found on initial page")
) else:
if response_html is None: if self.args.verbose >= 1:
self.finish( print("JS redirect found on initial page")
"Initial URL does not redirect to IdP and JS redirect not detected", response_html = try_response_html
"CRITICAL", response_url = try_response_url
)
return response_html, response_url return response_html, response_url
def send_form(self, url, action, data): def send_form(self, url, action, data):
......
[metadata] [metadata]
version = 2.7.3 version = 2.7.4
license_files = LICENSE license_files = LICENSE
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
......