Is possible that linux can be infected with ransomware without me running the program as a root user?

|
marcotrosi 2022-07-11 23:44:45
https://bugs.telegram.org/c/18946

please upvote

n0madcoder 2022-07-12 00:13:08
marcotrosi 2022-07-11 23:44:45
https://bugs.telegram.org/c/18946

please upvote

Done

n0madcoder 2022-07-12 00:13:48
Didn’t know about that site, now I may fill a few suggestions
armanhrshaikh 2022-07-12 15:28:33
Any solution for one clip CSV, VCard converting of a list of numbers?
Ceda EI 2022-07-12 15:48:57
armanhrshaikh 2022-07-12 15:28:33
Any solution for one clip CSV, VCard converting of a list of numbers?

grep ^TEL file.vcf | cut -f 2 -d :

ultrasigma0 2022-07-12 18:11:12
Is possible that linux can be infected with ransomware without me running the program as a root user?
andykluger 2022-07-12 18:13:27
If you run untrusted code as your regular user it can do what it wants with your user files
ultrasigma0 2022-07-12 18:13:55
andykluger 2022-07-12 18:13:27
If you run untrusted code as your regular user it can do what it wants with your user files

But not the hole system

andykluger 2022-07-12 18:15:12
No (depending on your sudo config), but it’s probably your user files you value
ultrasigma0 2022-07-12 18:18:15
andykluger 2022-07-12 18:15:12
No (depending on your sudo config), but it’s probably your user files you value

But i have to run this malicious program to work, right?

andykluger 2022-07-12 18:22:16
ultrasigma0 2022-07-12 18:18:15
But i have to run this malicious program to work, right?

what did you do with the program/script, if not run it?

ultrasigma0 2022-07-12 18:27:08
andykluger 2022-07-12 18:22:16
what did you do with the program/script, if not run it?

I mean it has to be a reason to get infected with Ransome not randomly

ultrasigma0 2022-07-12 18:27:50
And the reason is the user
wviana 2022-07-13 03:10:40
wviana 2022-07-10 18:50:28
I have it cause have disk encryption for swap and home.

Hi there. Some updates that may help me to get some help. So I’ve formated sda1 from btrfs to ext4. Thought I was getting the error cause of it. But I’m getting same error. Any tips?

wviana 2022-07-13 03:11:14
Thread ๐Ÿงต head
wviana 2022-07-13 03:21:23
Just tried with –disk-module=bios-disk also with native. Same results. ๐Ÿ˜ข
smol_mazunki 2022-07-13 11:36:28
armanhrshaikh 2022-07-12 15:28:33
Any solution for one clip CSV, VCard converting of a list of numbers?

awk is great at stuff like that

smol_mazunki 2022-07-13 11:38:01
i suggest putting grub on fat32, not btrfs
smol_mazunki 2022-07-13 11:39:01
bioses usually only support fat32, which is where they’ll find the efi for the kernel/the initram
wviana 2022-07-14 01:11:20
smol_mazunki 2022-07-13 11:39:01
bioses usually only support fat32, which is where they’ll find the efi for the kernel/the initram

It’s a pretty old machine. A Thinkpad x200. In grub manual says it supports most file systems. If it was cause of filesystem, moving into ext4 should solve it.

smol_mazunki 2022-07-14 01:47:01
wviana 2022-07-14 01:11:20
It’s a pretty old machine. A Thinkpad x200. In grub manual says it supports most file systems. If it was cause of filesystem, moving into ext4 should solve it.

grub needs to be loaded by the bios, regardless

smol_mazunki 2022-07-14 01:47:07
grub supports many filesystems
smol_mazunki 2022-07-14 01:47:11
but your bios doesn’t
smol_mazunki 2022-07-14 01:47:35
grub is loaded through an efi file, located on a partition
smol_mazunki 2022-07-14 01:48:22
usually it finds this partition by looking for the ESP flag, by looking at the first partition of the first drive, and usually only supports fat32
smol_mazunki 2022-07-14 01:48:59
some bioses work with more filesystems, but that’s quite rare
smol_mazunki 2022-07-14 01:49:23
the specification says any fat system should do, but in my experience it’s mostly only fat32
smol_mazunki 2022-07-14 01:50:24
maybe I’ve misread: do you manage to load grub?
wviana 2022-07-14 01:59:09
smol_mazunki 2022-07-14 01:47:35
grub is loaded through an efi file, located on a partition

Don’t have EFI. This is a legacy bios machine. I think that Bios read the MBR that loads core.img from /boot partition.

smol_mazunki 2022-07-14 02:05:35
ah, I’m not too familiar with mbr booting
smol_mazunki 2022-07-14 02:05:59
how does mbr know what /boot is supposed to be?
wviana 2022-07-14 03:10:05
Looks like bios always search the first bytes “hard disk” and load into as instructions. Then this instructions load grub. That’s why most modern partition manager create first partition leaving 1k free at the beginning.
Ceda EI 2022-07-14 14:24:42
smol_mazunki 2022-07-14 02:05:59
how does mbr know what /boot is supposed to be?

MBR reads first 441 bytes of the disk

Ceda EI 2022-07-14 14:24:52
and runs that
smol_mazunki 2022-07-14 14:27:25
Ceda EI 2022-07-14 14:24:42
MBR reads first 441 bytes of the disk

so grub must be <441b to work on legacy?

|