Threat level definition
Search:
Home
Bugtraq
Vulnerabilities
Mailing Lists
Jobs
Tools
Vista
News
Infocus
Foundations
Microsoft
Unix
IDS
Incidents
Virus
Pen-Test
Firewalls
Columnists
Mailing Lists
Newsletters
Bugtraq
Focus on IDS
Focus on Linux
Focus on Microsoft
Forensics
Pen-test
Security Basics
Vuln Dev
Vulnerabilities
Jobs
Job Opportunities
Resumes
Job Seekers
Employers
Tools
RSS
News
Vulns
Security Research
Program Hides Secret Messages in Executables
Kevin Poulsen
,
SecurityFocus
2003-02-24
Submit Comment
Mode:
Threaded
Flat
Name:
Subject:
Message:
Enter the characters that appear above
Re: Program Hides Secret Messages in Executables
2003-03-02
Paul Hsieh
The following two instructions:
Add REG, CONST
Sub REG, -CONST
are *NOT* equivalent! They set the carry flag in opposite directions. I think this guy is just getting lucky in that most programs don't check the carry flag. However, source that looks like this:
A -= 3;
if (A > 0)...
[ more ]
Privacy Statement
Copyright 2008, SecurityFocus
Paul Hsieh
Add REG, CONST
Sub REG, -CONST
are *NOT* equivalent! They set the carry flag in opposite directions. I think this guy is just getting lucky in that most programs don't check the carry flag. However, source that looks like this:
A -= 3;
if (A > 0)...
[ more ]