Hi folks, I am building secure web application using Ruby on Rails which scans virus in uploaded file. Now Currently I can access the tempfile from the ActionDispatch::Http::UploadedFile instance which Rails creates for uploaded file and complete scan successfully. But I want to avoid Rails creating the tempfile as I fear once the virus affected file stored in tempfile this may infect the system.
What my question is: * Is there any way to tell Rails that 'Generate the IO stream instance(string) instead of Tempfile' ?* If Rails gives file as IO stream I can use this stream to scan for Virus. If something asked fundamentally wrong give me your suggestion. Thanks Soundar -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/G6r86r3qVa0J. For more options, visit https://groups.google.com/groups/opt_out.

