The symlink-traversal tag has no wiki summary.
0
votes
0answers
146 views
How to use symlinks with PHP and Nginx (or Lighttpd)?
I've installed Nginx + FPM-PHP under Debian and ArchLinux. Both are working fine. However, I can't figure out how to get the PHP part to follow symlinks. I've also tried with Lighttpd, but to no ...
0
votes
2answers
68 views
Resolving all symbolic links in NSURL
I'm writing a little piece of code in which I should detect if an NSURL contains a symbolic link (i.e., symbolic file components other than the last one should also be detected). To do this, I ...
1
vote
1answer
532 views
Why can't Safari connect to localhost?
I have a proper /etc/hosts file with the following contents:
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
When I try to access a server I ...
0
votes
0answers
118 views
How can I prevent symlinking on shared webhosting? [closed]
I am worried about my website being hacked by someone creating a symbolic link from a maliciously controlled or hacked account on the server I am hosting on, what methods are there to protect against ...
0
votes
1answer
111 views
How do I allow symlnked directory traversal in WASCE web app
I am currently running WebSphere Application Server Community Edition v3.0.0.1 on RHEL 4 Update 9.
I have a web application was previously running on WAS 6.1 but we wanted to move to WASCE. The ...
0
votes
1answer
52 views
How do i get the following code to recognize a symlink?
#!/usr/bin/env python3.2
import os
import sys
fileList = []
rootdir = sys.argv[1]
for subdir, dirs, files in os.walk(rootdir, followlinks=True):
for file in files:
f = ...
0
votes
1answer
204 views
How do you list all symlinks in a directory that has non-hanging links? [closed]
I would like to get a list of all symlinks within a directory that has valid links. In other words, I would like all the broken links to be discarded in my list.
5
votes
2answers
779 views
How do you determine the path of the file that a symlink points to?
In Linux, if you have a path to a file which you know is a symlink, how do you programmatically determine (in C or C++) the path to the file that it points to?
2
votes
3answers
109 views
“tracing” version of readlink(1)
I would like a version of "readlink -f" that provides a trace of every individual symlink resolution it performs. Something like:
$ linktrace /usr/lib64/sendmail
/usr/lib64 -> lib
...
0
votes
1answer
2k views
Python os.walk + follow symlinks
How do I get this piece to follow symlinks in python 2.6?
def load_recursive(self, path):
for subdir, dirs, files in os.walk(path):
for file in files:
if ...
0
votes
2answers
510 views
Is there a way in PHP to check if a directory is a symlink?
I have symlinks to certain directories because the directories' names have non English characters that I got fed up trying to get apache's rewrite rules to match. There's a bounty on that question ...
3
votes
1answer
838 views
How to have Git 1.6 follow “beyond symlinks”
Apparently, the bug where git follows and track files beyond symlinks (git add symlink/) has been fixed around v1.6. Now this was a bug that works in my favor. Now that we've upgraded to v1.6.3.3, is ...
2
votes
1answer
284 views
Are there any problems with this symlink traversal code for Windows?
In my efforts to resolve Python issue 1578269, I've been working on trying to resolve the target of a symlink in a robust way. I started by using GetFinalPathNameByHandle as recommended here on ...
