You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current approach ( ln -s /flag /challenge/flag.txt) seems to only work when the user is in the directory containing the symlink (/challenge). If the user is in a different directory, the symlink doesn't resolve correctly.
I've also tried using a relative path for the target like ln -s /flag /flag.txt but this approach also doesn't seem to function as intended. The symlink should resolve to the /flag file regardless of the user's current working directory.
The text was updated successfully, but these errors were encountered:
The current approach (
ln -s /flag /challenge/flag.txt
) seems to only work when the user is in the directory containing the symlink (/challenge
). If the user is in a different directory, the symlink doesn't resolve correctly.I've also tried using a relative path for the target like
ln -s /flag /flag.txt
but this approach also doesn't seem to function as intended. The symlink should resolve to the/flag
file regardless of the user's current working directory.The text was updated successfully, but these errors were encountered: