Forwarded from 五黄鼠的毛绒绒实验室 (LabRat)
This media is not supported in your browser
VIEW IN TELEGRAM
Retweeted: https://t.co/cVoka51CYS
Forwarded from 五黄鼠的毛绒绒实验室 (LabRat)
Forwarded from 科技圈的日常 (Jimmy Tian)
macOS 上知名下载工具 Folx 与播放器 Elmedia Player 被植入后门。
https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/
https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/
WeLiveSecurity
OSX/Proton spreading again through supply‑chain attack
ESET experts noticed that the makers of the Elmedia Player software have been distributing a version of their app trojanized with the OSX/Proton malware.
#Lowlvl_backend 🌚 Linux 1.0
/*
* linux/kernel/panic.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* This function is used through-out the kernel (includeinh mm and fs)
* to indicate a major problem.
*/
#include <stdarg.h>
#include <linux/kernel.h>
#include <linux/sched.h>
asmlinkage void sys_sync(void); /* it's really int */
extern int vsprintf(char * buf, const char * fmt, va_list args);
NORET_TYPE void panic(const char * fmt, ...)
{
static char buf[1024];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
printk(KERN_EMERG "Kernel panic: %s\n",buf);
if (current == task[0])
printk(KERN_EMERG "In swapper task - not syncing\n");
else
sys_sync();
for(;;);
}