Go Back   Wireless and Wifi Forums > News > Newsgroups > comp.security.misc
Register FAQ Forum Rules Members List Calendar Search Today's Posts Advertise Mark Forums Read

 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-22-2011, 12:59 PM
Mok-Kong Shen
Guest
 
Posts: n/a
Default Q: Secure transfer of data between computers

Possibly very dumb question: If one computer is connected to the
internet, hence potentially subject to malware attack, and another
is isolated from the internet, what is the best and secure way
of transferring data between them, without any fear of infection
of the second computer? Thanks.

M. K. Shen

Reply With Quote
  #2 (permalink)  
Old 11-22-2011, 08:29 PM
unruh
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

On 2011-11-22, Mok-Kong Shen <mok-kong.shen@t-online.de> wrote:
> Possibly very dumb question: If one computer is connected to the
> internet, hence potentially subject to malware attack, and another
> is isolated from the internet, what is the best and secure way
> of transferring data between them, without any fear of infection
> of the second computer? Thanks.


Depends on what you transfer, and what the computers are.
Under linux, you can use rsync to securely transfer files. But only
transfer files that you know what they are.

If the first computer has malware on it, then it could transfer whatever
it wanted, so you should not trust the transfered files (Ie do not
transfer and executables, only data for programs that you know cannot be
subverted by bad data.)
>
> M. K. Shen


Reply With Quote
  #3 (permalink)  
Old 11-23-2011, 08:06 PM
Mok-Kong Shen
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

Am 22.11.2011 22:29, schrieb unruh:
> On 2011-11-22, Mok-Kong Shen<mok-kong.shen@t-online.de> wrote:
>> Possibly very dumb question: If one computer is connected to the
>> internet, hence potentially subject to malware attack, and another
>> is isolated from the internet, what is the best and secure way
>> of transferring data between them, without any fear of infection
>> of the second computer? Thanks.

>
> Depends on what you transfer, and what the computers are.
> Under linux, you can use rsync to securely transfer files. But only
> transfer files that you know what they are.
>
> If the first computer has malware on it, then it could transfer whatever
> it wanted, so you should not trust the transfered files (Ie do not
> transfer and executables, only data for programs that you know cannot be
> subverted by bad data.)


I am sorry to say that I yet see difficulties: How do I know that the
data is such that it cannot be subverted by bad data. (The argumentation
seems like that of the hen and egg problem.)

M. K. Shen


Reply With Quote
  #4 (permalink)  
Old 11-23-2011, 09:47 PM
unruh
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

On 2011-11-23, Mok-Kong Shen <mok-kong.shen@t-online.de> wrote:
> Am 22.11.2011 22:29, schrieb unruh:
>> On 2011-11-22, Mok-Kong Shen<mok-kong.shen@t-online.de> wrote:
>>> Possibly very dumb question: If one computer is connected to the
>>> internet, hence potentially subject to malware attack, and another
>>> is isolated from the internet, what is the best and secure way
>>> of transferring data between them, without any fear of infection
>>> of the second computer? Thanks.

>>
>> Depends on what you transfer, and what the computers are.
>> Under linux, you can use rsync to securely transfer files. But only
>> transfer files that you know what they are.
>>
>> If the first computer has malware on it, then it could transfer whatever
>> it wanted, so you should not trust the transfered files (Ie do not
>> transfer and executables, only data for programs that you know cannot be
>> subverted by bad data.)

>
> I am sorry to say that I yet see difficulties: How do I know that the
> data is such that it cannot be subverted by bad data. (The argumentation
> seems like that of the hen and egg problem.)


It depends on the programs. For example, if all the program does is
print out the text (data) it is really hard for bad data to subvert the
printing program. Ie, while the data you print out may be wrong, the
printing program will not open a hole in your system allowing someone to
take over your machine. If the data is a javascript program then using
that data may well subvert your machine.

>
> M. K. Shen
>


Reply With Quote
  #5 (permalink)  
Old 11-24-2011, 01:37 PM
Mok-Kong Shen
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

Am 23.11.2011 23:47, schrieb unruh:

> It depends on the programs. For example, if all the program does is
> print out the text (data) it is really hard for bad data to subvert the
> printing program. Ie, while the data you print out may be wrong, the
> printing program will not open a hole in your system allowing someone to
> take over your machine. If the data is a javascript program then using
> that data may well subvert your machine.


Thanks. I have an additional question: If I use an USB stick to transfer
that harmless text file, would that be problematical, because the
malware on the first computer could on that occasion have a chance to
infect the second computer, or is that not possible? (If yes, what
security measure could be taken?)

M. K. Shen

Reply With Quote
  #6 (permalink)  
Old 11-24-2011, 05:38 PM
pete@nospam.demon.co.uk
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

In article <jalkrl$sst$1@news.albasani.net>
mok-kong.shen@t-online.de "Mok-Kong Shen" writes:

> Am 23.11.2011 23:47, schrieb unruh:
>
> > It depends on the programs. For example, if all the program does is
> > print out the text (data) it is really hard for bad data to subvert the
> > printing program. Ie, while the data you print out may be wrong, the
> > printing program will not open a hole in your system allowing someone to
> > take over your machine. If the data is a javascript program then using
> > that data may well subvert your machine.

>
> Thanks. I have an additional question: If I use an USB stick to transfer
> that harmless text file, would that be problematical, because the
> malware on the first computer could on that occasion have a chance to
> infect the second computer, or is that not possible? (If yes, what
> security measure could be taken?)
>
> M. K. Shen


The simple answer is that if you connect (network, USB stick, floppy
disk etc.) any computer to another, possibly infected, computer there
is a risk of the (sterile) computer becoming infected. That risk
might be very small depending on the tools/medium used, but there is
no 100% guarantee other than keeping the sterile computer "sterile".

Pete
--
"We have not inherited the earth from our ancestors,
we have borrowed it from our descendants."

Reply With Quote
  #7 (permalink)  
Old 11-24-2011, 09:06 PM
unruh
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

On 2011-11-24, Mok-Kong Shen <mok-kong.shen@t-online.de> wrote:
> Am 23.11.2011 23:47, schrieb unruh:
>
>> It depends on the programs. For example, if all the program does is
>> print out the text (data) it is really hard for bad data to subvert the
>> printing program. Ie, while the data you print out may be wrong, the
>> printing program will not open a hole in your system allowing someone to
>> take over your machine. If the data is a javascript program then using
>> that data may well subvert your machine.

>
> Thanks. I have an additional question: If I use an USB stick to transfer
> that harmless text file, would that be problematical, because the
> malware on the first computer could on that occasion have a chance to
> infect the second computer, or is that not possible? (If yes, what
> security measure could be taken?)


You still have not told us which operating system. If your second system
has a habit of running code on a device that is plugged in, then it is
dangerous.
>
> M. K. Shen


Reply With Quote
  #8 (permalink)  
Old 11-25-2011, 11:21 AM
Mok-Kong Shen
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

Am 24.11.2011 23:06, schrieb unruh:

> You still have not told us which operating system. If your second system
> has a habit of running code on a device that is plugged in, then it is
> dangerous.


I use Windows 7. Would Linux be better in that respect?

M. K. Shen


Reply With Quote
  #9 (permalink)  
Old 01-17-2012, 02:02 PM
bradbury9
Guest
 
Posts: n/a
Default Re: Q: Secure transfer of data between computers

On 25 nov 2011, 13:21, Mok-Kong Shen <mok-kong.s...@t-online.de>
wrote:
> Am 24.11.2011 23:06, schrieb unruh:
>
> > You still have not told us which operating system. If your second system
> > has a habit of running code on a device that is plugged in, then it is
> > dangerous.

>
> I use Windows 7. Would Linux be better in that respect?
>
> M. K. Shen


Windows machines use to autoexecute files in removable devices. This
behaviour can be overriden using security policies and different
windows OS have different default behaviour.

I would mount it on linux and edit the /etc/fstab to add a noexec
parameter in the removable device so no accidents could happen.

Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google "Secure Access" FAQ + Download link frankdowling1@yahoo.com alt.internet.wireless 11 09-23-2005 08:22 PM
[SSL-Talk List FAQ] Secure Sockets Layer Discussion List FAQ v1.1.1 Shannon Appel comp.security.misc 0 08-30-2005 04:26 AM
[SSL-Talk List FAQ] Secure Sockets Layer Discussion List FAQ v1.1.1 Shannon Appel comp.security.misc 0 07-31-2005 04:25 AM


All times are GMT. The time now is 04:17 AM.



Powered by vBulletin® Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 PL2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45