βοΈOracle APEX
Basics
APEX URL Synthax
APEX URL that refers to Page 1 of Application 100 : http://localhost/apex/f?p=100:1:12432087235079
Interesting endpoints
Info Leak
Source code :
JS files :
META :
Testing Authorization and Authentification
Check the login process for weaknesses, such as :
Insecure transmission of login data,
Weak password requirements,
Susceptibility to brute force attacks (is there any account lockout ?),
Try to access resources without proper authorization to see if the application correctly restricts access.
Testing IDOR
Burp Intruder
https://my.app.com/apex/f?p=x:y:SESSION:::::ITEM:ITEM_VALUE
x = application ID y = page ID
Capture a request in the proxy and send it to the Intruder tool. Set your payload position on the pageID parameter
Under Payloads, choose the βNumbersβ payload and set an appropriate range youβd like to test.
Run
Testing SQLi
sqlmap
See slide nΒ°24 for more infos
Rewrite with wwv_flow.show :
Last updated
Was this helpful?