Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | Re: LSADump2 Crashing Systems |
|---|---|
| Date: | Fri, 16 Sep 2005 17:07:48 +0200 |
Hello, After investigating deeper, I found several problems in LSADUMP2 : - Buffers too small (300 bytes for the smallest) - Allocated memory not flagged as executable (that is why LSADUMP2 is not compatible with the NX flag) - Reuse of freed memory Here is a small patch that has been tested sucessfully on Windows XP SP2 with DEP "AlwaysOn" enabled (where LSADUMP2 failed). Regards, - Nicolas RUFF Security researcher @ EADS-CCR --------------------------------------------------------------- diff lsadump2/dumplsa.c lsadump3/dumplsa.c 34a35
#define BUF_SIZE 1024
110c111 < char szBuffer[1000]; ---
char szBuffer[BUF_SIZE];
137c138 < TCHAR szBuffer[300]; ---
TCHAR szBuffer[BUF_SIZE];
189c190 < WCHAR wszSecret[500]; ---
WCHAR wszSecret[BUF_SIZE];
230c231 < char szSecret[500]; ---
char szSecret[BUF_SIZE];
242a244
lsaData = NULL;
diff lsadump2/lsadump2.c lsadump3/lsadump2.c 261c261 < MEM_COMMIT, PAGE_READWRITE); ---
MEM_COMMIT, PAGE_EXECUTE_READWRITE);
------------------------------------------------------------------------------ Audit your website security with Acunetix Web Vulnerability Scanner: Hackers are concentrating their efforts on attacking applications on your website. Up to 75% of cyber attacks are launched on shopping carts, forms, login pages, dynamic content etc. Firewalls, SSL and locked-down servers are futile against web application hacking. Check your website for vulnerabilities to SQL injection, Cross site scripting and other web attacks before hackers do! Download Trial at: http://www.securityfocus.com/sponsor/pen-test_050831 -------------------------------------------------------------------------------
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | CDMA1X Security, Carlos A Cubillos M |
|---|---|
| Next by Date: | Re: Pen test, tcp/1404 found - advice needed, Nicolas RUFF |
| Previous by Thread: | Re: LSADump2 Crashing Systems, RCS |
| Next by Thread: | Re: LSADump2 Crashing Systems, oh face |
| Indexes: | [Date] [Thread] [Top] [All Lists] |