Changes between Initial Version and Version 1 of Ticket #30004, comment 18


Ignore:
Timestamp:
Feb 7, 2019, 3:10:19 AM (5 years ago)
Author:
Himanshu Lakhara

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30004, comment 18

    initial v1  
    66Consider the following scenario. We have a Django application which allows a user to upload pictures. Let's say this app runs in a process-A running as some system user-1. Now we have another process-B which modifies this image in place(maybe removing colors that the human eye cannot recognize or shrinking the image etc.). This image manipulation process is run as some other system user-2.
    77
    8 Now in order for process B to modify these images, we would require to set FILE_UPLOAD_PERMISSIONS to '0o646'(assuming process-B is other than group).
     8Now in order for process B to modify these images, we would require to set FILE_UPLOAD_PERMISSIONS to '0o646'(assuming process-B is running as some other user than file's own group).
    99
    1010I understand this is not a great way to do such manipulation. We probably want to do this in a different way by making a copy original image before process-B modifies it. This is just an example.
Back to Top