Re: [flexcoders] Re: Flex Caching Data?

2007-03-22 Thread Tom Chiverton
On Tuesday 20 Mar 2007, Matt Maher wrote:
 I think, because of this, the two files being written I am concerned
 about (cache) are temporary internet files and normal swap-like disk
 caching.

There's nothing you can do about the O/S swapping out the region of RAM with 
your data in to disk, and having that stay there after the process exits.

It depends on the threat profile you are defending against, though, as to if 
this matters.
Worse case, your end users are all evil, and run your application in a virtual 
machine, pause it at the crucial moment and parse the memory dump.

-- 
Tom Chiverton
Helping to dramatically expedite proactive services
On: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[flexcoders] Re: Flex Caching Data?

2007-03-20 Thread Matt Maher
As a follow-up...

I am not writing this to disk myself. I am using an HTTPService to 
download the file, then processing it in memory into a data-store. 
Never (by me) is either the downloaded file, nor the data-store 
intentionally written to disk.

I think, because of this, the two files being written I am concerned 
about (cache) are temporary internet files and normal swap-like disk 
caching.

Thanks again


--- In flexcoders@yahoogroups.com, Matt Maher [EMAIL PROTECTED] wrote:

 I have a component which downloads a list of credit card numbers for 
 the customer to work through. This file is delivered to the container 
 as a CSV then turned into a collection of DTO objects.
 
 Is there a way to MAKE SURE that flash does not leave this on the 
disk 
 after the container closes (like closing a browser).
 
 I am worried about a laptop using our program once, then being stolen.
 
 Is this configurable? Encryptable? I've been digging but all the 
cache 
 info I find is about the swf file itself.
 
 Thanks!





RE: [flexcoders] Re: Flex Caching Data?

2007-03-20 Thread Giles Roadnight
Have you looked in the browser temporary files folder to see if it has
turned up there?

 

I think that's the only place it'll be stored. I don't think Flash does any
caching, it just relies on the browser cache.

 

Giles Roadnight

 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Matt Maher
Sent: 20 March 2007 16:33
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex Caching Data?

 

As a follow-up...

I am not writing this to disk myself. I am using an HTTPService to 
download the file, then processing it in memory into a data-store. 
Never (by me) is either the downloaded file, nor the data-store 
intentionally written to disk.

I think, because of this, the two files being written I am concerned 
about (cache) are temporary internet files and normal swap-like disk 
caching.

Thanks again

--- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ,
Matt Maher [EMAIL PROTECTED] wrote:

 I have a component which downloads a list of credit card numbers for 
 the customer to work through. This file is delivered to the container 
 as a CSV then turned into a collection of DTO objects.
 
 Is there a way to MAKE SURE that flash does not leave this on the 
disk 
 after the container closes (like closing a browser).
 
 I am worried about a laptop using our program once, then being stolen.
 
 Is this configurable? Encryptable? I've been digging but all the 
cache 
 info I find is about the swf file itself.
 
 Thanks!