The string you've provided, -page-....-2F-2F....-2F-2F....-2F-2Fetc-2Fpasswd, is a classic example of a Path Traversal or Local File Inclusion (LFI) attack payload.
?page=index?page=....//....//....//etc/passwdroot:x:0:0:..., the vulnerability existsOn Linux and Unix-based systems, the /etc/passwd file is a goldmine for initial reconnaissance. It contains a list of every user on the system, their user IDs, and their home directory paths. While modern systems store actual passwords in a separate "shadow" file, knowing the usernames is the first step for an attacker to launch a brute-force or credential-stuffing attack. 3. How the Vulnerability Happens -page-....-2F-2F....-2F-2F....-2F-2Fetc-2Fpasswd
username:x:UID:GID:GECOS:home_directory:login_shell
If the web application does something like:
/var/www/html/page- + user input + .html
Then the attacker might inject ../../../etc/passwd to read system files. The string you've provided, -page-