Ad Widget

Collapse

URL direct login and navigate to page failed ( deeplink deep link )

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • KBBarbers
    Junior Member
    • Oct 2024
    • 12

    #1

    URL direct login and navigate to page failed ( deeplink deep link )

    Hi I have a use case where I want to display a network map on a factory SCADA system where I can embed a web page into a page on the SCADA

    The eventual plan is to create a user with the most limited permissions just to view maps and nothing else and have that username and password embedded in the URL together with the action to view the map

    However after struggling to get it working straight away I'm now just trying to demonstrate the most basic functionality to debug and still having problems. I think the first step is to achieve just a login from the default Admin/zabbix u/n+pwd in my normal browser

    I am entering the URL <zabbixServerIP>/zabbix/zabbix.php?name=Admin&password=zabbix&enter=Sign%2 0in&?action=dashboard.view&dashboardid=1 (note there is no space in the %20 in my URL its just being auto formatted here)

    And all that displays is a zabbix error page with the message "Page not found" and a button to retry. I guess I am definitely pointing to the correct address for zabbix as I am not getting a default web server error saying "page not found"

    If I remove the login details entirely and try the URL <zabbixServerIP>/zabbix/zabbix.php?action=dashboard.view&dashboardid=1 I get an error page instead saying "You are not logged in: - You must login to view this page. - Possible the session expired..." and so on. So it seems the server is recognizing that as the correct URL for the dashboard, which makes me think that I might be making a mistake with the syntax for the login?

    If anyone can see my problem or can point me in the right direction that would be great

    EDIT more details: Zabbix 7.0.4., Rocky Linux 9.4, remote machine attempting to login Windows 11 24H2
    Last edited by KBBarbers; 11-12-2024, 12:12.
  • KBBarbers
    Junior Member
    • Oct 2024
    • 12

    #2
    For anyone stumbling across this I found my syntax error. What I originally used:

    <zabbixServerIP>/zabbix/zabbix.php?name=Admin&password=zabbix&enter=Sign%2 0in
    Corrected

    <zabbixServerIP>/zabbix/index.php?name=Admin&password=zabbix&enter=Sign%20in

    Comment

    Working...