It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
Now, according to reports, some of the most sophisticated malicious code ever developed is a product of the United States government, leaving more than a few tech experts and analysts concerned that maybe now, Washington has become a bigger info-terrorist than some of the country's worst enemies.
"We are now 100 percent sure that the Flame and Stuxnet groups worked together," Roel Schouwenberg, a senior researcher at Russia-based Kaspersky Lab, said during a press conference. "The fact that the Flame group shared their source code with the Stuxnet group shows they cooperated at least once."
Originally posted by ChaoticOrder
reply to post by shaluach
"We are now 100 percent sure that the Flame and Stuxnet groups worked together," Roel Schouwenberg, a senior researcher at Russia-based Kaspersky Lab, said during a press conference. "The fact that the Flame group shared their source code with the Stuxnet group shows they cooperated at least once."
What's to say they didn't just copy code from Stuxnet and put it into Flame?edit on 12-6-2012 by ChaoticOrder because: (no reason given)
#include stdio.h
main()
[
printf("Hello World");
]
section .text
global _start ;must be declared for linker (ld)
_start: ;tell linker entry point
mov edx,len ;message length
mov ecx,msg ;message to write
mov ebx,1 ;file descriptor (stdout)
mov eax,4 ;system call number (sys_write)
int 0x80 ;call kernel
mov eax,1 ;system call number (sys_exit)
int 0x80 ;call kernel
section .data
msg db 'Hello, world!',0xa ;our dear string
len equ $ - msg ;length of our dear string
Nobody has the source but the authors..
Originally posted by ChaoticOrder
reply to post by miniatus
Nobody has the source but the authors..
I was fairly certain the entire decompiled source of Stuxnet was available on the internet, in fact I remember reading some of it.
Originally posted by shaluach
reply to post by NeverSleepingEyes
It may not be "new" but I just come across things that I find interesting and post them for those who may find them interesting also.