LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Security
User Name
Password
Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.

Notices


Reply
  Search this Thread
Old 11-01-2021, 11:21 AM   #1
bcsm
LQ Newbie
 
Registered: Jul 2021
Distribution: Mint 21 (Thinkpad x270) / Debian 11 (PC) / Ubuntu 22.04 (Surface 3)
Posts: 12
Blog Entries: 1

Rep: Reputation: Disabled
To what extent can an older OS be used safely under certain conditions?


Hi, firstly apologies as you're probably sick of seeing posts like this, I know there is plenty of material about how unsafe older OS are to use in the modern day, but these mostly relate to someone wanting to use e.g Windows XP as a daily driver, for web browsing etc etc.

Recently I have had to use certain Windows-only software for university, and while I could probably just use Windows computers available on campus, I would rather be able to use it on my laptop. I could just use Windows 10, and perhaps possibly will, but not only do I not really like Win10, I find older OS & OS history very interesting, and find the fact that security issues prevent their usage nowadays very irritating. For instance, I had an old notebook which worked perfectly with Ubuntu 12, and still does, but on attempting to use modern OS on it, major functionality like network connection stopped working.

So I'd like to use Windows 7, *purely* for running software. I would not connect it to the internet, or use any internet functionality e.g IE.

I know there is functionality available to have a shared directory between a VM and the host OS, so I was intending to use this to transfer software to the VM, downloaded on the host linux OS. However, I feel like this could be a vulnerable spot? Probably not practically, but hypothetically.

tl;dr: Can I safely use a windows 7 VM to run windows-only software, downloaded on my own machine and transferred over, as long as I don't *ever* connect it to the internet?

Thank you for your time.
 
Old 11-01-2021, 11:37 AM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Should be fine doing it that way making certain the only software used is from trusted sources so no malware is in them. Though it would not do much good even if infected as it would not be able to communicate with any control server without the net connection.
 
Old 11-01-2021, 01:10 PM   #3
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,730

Rep: Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920
With a VirtualBox host only network adapter the guest can only talk to the host or other VMs but can not talk to the LAN or Internet. You should still be able to use a shared directory between the two which requires guest additions to be installed.
 
Old 11-01-2021, 01:29 PM   #4
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,174

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
MS is still sending daily virus definitions to Defender on Win7, so it is not totally abandoned. You can manually download definitions for your system so you can scan your programs before installing them.

https://www.microsoft.com/en-us/wdsi/defenderupdates

https://support.microsoft.com/en-us/...0-dbb16b08d990
 
1 members found this post helpful.
Old 11-04-2021, 12:36 AM   #5
max.b
Member
 
Registered: Feb 2013
Distribution: Debian 11, GNOME
Posts: 100

Rep: Reputation: 5
Quote:
To what extent can an older OS be used safely under certain conditions?
If you are not very important, or have a target on your back, I think you'll be fine.

In theory, your setup is unsafe: You run questionable software on your Windows. It can infect your USB flash drive (assuming you use that to transfer files). The infected flash drive could exploit some USB vulnerabilities in Linux or firmware to pwn your Internet-connected Linux machine too.

In practice, some malware author would have to bother with such an attack scenario, and he probably won't.

(Disclaimer: Just a C++ programmer. Not a security expert)
 
Old 11-04-2021, 12:48 AM   #6
max.b
Member
 
Registered: Feb 2013
Distribution: Debian 11, GNOME
Posts: 100

Rep: Reputation: 5
Quote:
Originally Posted by michaelk View Post
With a VirtualBox host only network adapter the guest can only talk to the host or other VMs but can not talk to the LAN or Internet. You should still be able to use a shared directory between the two which requires guest additions to be installed.
VBox is designed for convenience rather than security. The sysadmin for kernel.org mentioned this in his talk on Qubes OS: https://www.youtube.com/watch?v=8cU4hQg6GvU (I think he did, but I could be confusing it with other talks on Qubes OS that I watched)

That said, OP would have to run some serious malware that actually bothers to pwn him via VBox.

Last edited by max.b; 11-04-2021 at 12:52 AM.
 
Old 11-04-2021, 08:25 AM   #7
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,668
Blog Entries: 4

Rep: Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945Reputation: 3945
The most important principle on any computer of any type is the principle of least privilege. There should be only one login user that is a member of the wheel group ("an Administrator"), and you should use this user only for system maintenance. Your everyday account should not have that power. He cannot walk into a phone booth and then fly out wearing ugly blue tights, no matter how hard he tries. He's just an ordinary Joe.

Computers are bad at knowing when to say, "yes." But they're really good at saying, "no."

Last edited by sundialsvcs; 11-04-2021 at 08:28 AM.
 
Old 11-04-2021, 09:37 AM   #8
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,730

Rep: Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920Reputation: 5920
I did not watch the entire video but the kernel.org sysadmin speaker admitted they were not a security expert and was only at the conference to talk about their experiences using Qubes.
 
Old 11-04-2021, 01:46 PM   #9
max.b
Member
 
Registered: Feb 2013
Distribution: Debian 11, GNOME
Posts: 100

Rep: Reputation: 5
Quote:
Originally Posted by max.b View Post
VBox is designed for convenience rather than security. The sysadmin for kernel.org mentioned this in his talk on Qubes OS: https://www.youtube.com/watch?v=8cU4hQg6GvU (I think he did, but I could be confusing it with other talks on Qubes OS that I watched)
Indeed, I misremembered. It was actually this guy, at 2:45: https://www.youtube.com/watch?v=sbN5Bz3v-uA&t=2m45s
 
  


Reply



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 On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: FCC: Open source router software is still legal—under certain conditions LXer Syndicated Linux News 0 09-25-2015 03:52 PM
[SOLVED] write to file under certain conditions progchi Linux - Newbie 3 10-30-2012 10:48 AM
Can't log in to wireless network except under certain(inconvenient) conditions Benjamin Lindley Linux - Wireless Networking 3 12-29-2011 12:22 PM
NFS not mounting at boot under certain conditions. robeph Linux - Networking 3 04-29-2008 08:16 AM
can you apply 2.6.x kernel config to 2.4.x safely/somewhat safely? silex_88 Linux - Software 3 12-09-2005 11:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Security

All times are GMT -5. The time now is 04:39 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration