Very clever hiding techniques. Makes me wonder which state level actor(s) are behind this one?
New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
21–30 of 101 posts
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#22Very clever hiding techniques. Makes me wonder which state level actor(s) are behind this one?
It certainly feels like a nation state's work, or, at the very least, an "advanced persistent threat" group. The packet capture pre-filter aspect, at very least, is strongly reminiscent of code I've seen from a couple of particular SE Asian APT-designated groups.
A basic BPF filter isn't fancy or difficult to implement.
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#23Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#24But how does it spread?
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#25So this is hiding network traffic from certain ports, which means that it should be easy enough to spot on spanports or netflow data
Are there any good tools which detect malware from analysing network traffic, either things like machines doing wide range attempts to connect on 137/139/445, or burte forcing on 22 etc, but also for more advanced searches for traffic like this?
I see plenty of companies selling end point protection, but that's not much use with the amount of blackboxes I have on my network.
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#26Earlier quoted context omitted.
It certainly feels like a nation state's work, or, at the very least, an "advanced persistent threat" group. The packet capture pre-filter aspect, at very least, is strongly reminiscent of code I've seen from a couple of particular SE Asian APT-designated groups.
What reason do you have to believe that besides the targets? Feature-wise this isn't significantly more advanced than public LD_PRELOAD kits like Umbreon, developed by literal children. A basic BPF filter isn't fancy or difficult to implement.
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#27LD_PRELOAD and hooking the libc syscall wrappers doesn't seem very reliable. It won't work on static binaries, it depends on the user not clearing the environment and there are also many programs that use the syscall directly, bypassing the hooks. From playing with file system hooks I remember programs written in Go and sqlite used to do this.
I also highly doubt "many" programs make syscalls directly, but I could be wrong. I know I haven't done so since the days I dabbled in assembly, at least.
Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#28Re: New ultra-stealthy Linux backdoor isn’t your everyday malware discovery
#29But how does it spread?