Skip to main content

Posts

Showing posts from February, 2026

Securing Oracle APEX Applications

  Problem Oracle APEX applications allow page navigation using URL parameters. For example, the base application  URL:  http://168.2.1.114:8080/ords/r/255 can be extended with page references such  as:  http://168.2.1.114:8080/ords/r/255:10 If Page Access Protection is not configured with checksum validation, URL parameters may be modified.  This can enable direct access to pages or records that were not intended for user access, potentially exposing sensitive application content.   Risk When security settings are misconfigured, the application becomes vulnerable to URL and page access manipulation. The potential risks include: Unauthorized page access Exposure of sensitive information URL parameter tampering Weakening of application integrity Direct modification of URL parameters may allow users to This type of vulnerability is particularly critical in: Human Resource applications Visitor and access management solutions ...

Developing a Visitor Management Dashboard in Oracle APEX:

Dashboards help organizations visualize data and monitor operations in real time. With Oracle APEX, developers can quickly create interactive and professional dashboards using built-in components such as Cards, Charts, and Reports — without heavy coding. In this blog, I will explain how to create a Visitor Management Dashboard in Oracle APEX step-by-step  This Article Covers  ·  Design KPI    ·  SQL performance considerations  ·  Chart selection best practices  .  Dynamic filtering  ·  Security configuration  ·  Optimization tips The DashBoard Overview The dashboard consists of: KPI Cards (Total Visitors) Categorical Summary (Visitor Types) Operational Chart (Check-In / Check-Out) Top Departments Donut Chart Interactive Report  Date Range Filtering Each component serves a specific analytical purpose.   Create a New Application in APEX 1.    ...