lawrence@lemmy.worldcakeM to Comic Strips@lemmy.world · 10 months agoLinux processeslemmy.worldimagemessage-square49fedilinkarrow-up1555arrow-down115
arrow-up1540arrow-down1imageLinux processeslemmy.worldlawrence@lemmy.worldcakeM to Comic Strips@lemmy.world · 10 months agomessage-square49fedilink
minus-squareRexelpitlum@discuss.tchncs.delinkfedilinkarrow-up14·10 months ago Hint ls -ld /var/log drwxrwxr-x 18 root syslog 4096 Aug 11 08:13 /var/log
minus-squarehemko@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up7·10 months agoThat seems so obvious I think we’re missing something
minus-squareRexelpitlum@discuss.tchncs.delinkfedilinkarrow-up8·10 months agoWhatever, we have a suspect. Bring in GDB to do the interrogation! And perhaps also call Nice, he can play the good cop…
minus-squarehemko@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up5·10 months agoForgive me my ignorance, but since Apache is running as root, couldn’t PHP inherit it’s permissions?
minus-squarelawrence@lemmy.worldcakeOPMlinkfedilinkarrow-up5·10 months agoThe Apache main process runs as root. When it receives a request, it spawns a child process that doesn’t run as root. PHP runs as the same user as the Apache child process.
minus-squarejollyrogue@lemmy.mllinkfedilinkarrow-up4·10 months agoOr PHP runs in its own fastcgi like process under a different account.
Hint
ls -ld /var/log drwxrwxr-x 18 root syslog 4096 Aug 11 08:13 /var/log
That seems so obvious I think we’re missing something
Whatever, we have a suspect.
Bring in GDB to do the interrogation! And perhaps also call Nice, he can play the good cop…
Forgive me my ignorance, but since Apache is running as root, couldn’t PHP inherit it’s permissions?
The Apache main process runs as root. When it receives a request, it spawns a child process that doesn’t run as root. PHP runs as the same user as the Apache child process.
Or PHP runs in its own fastcgi like process under a different account.