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: | [REVS] Writing Small Shellcode In Windows |
|---|---|
| Date: | 26 Sep 2005 13:14:04 +0200 |
The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com - - promotion The SecuriTeam alerts list - Free, Accurate, Independent. Get your security news from a reliable source. http://www.securiteam.com/mailinglist.html - - - - - - - - - Writing Small Shellcode In Windows ------------------------------------------------------------------------ SUMMARY This paper describes an attempt to write Win32 shellcode that is as small as possible, to perform a common task subject to reasonable constraints. The solution presented implements a bindshell in 191 bytes of null-free code, and outlines some general ideas for writing small shellcode. DETAILS Introduction: Size is important for shellcode because when exploiting vulnerabilities in compiled software we are often constrained in the amount of data we can work with. Smaller solutions than ours are certainly possible, but at this size the amount of work involved increases exponentially as each additional byte is trimmed from the code. It is assumed that the reader has some familiarity with x86 assembly language. The task to be performed by our code is as follows: 1. Bind a shell to port 6666. 2. Allow one connection to the shell. 3. Exit cleanly. It must work on Windows NT4, 2000, XP and 2003, and will be launched using: void main() { unsigned char sc[256] = ""; strncpy(sc, "shellcode goes here", 256); __asm { lea eax, sc push eax ret } } Hence, we can observe the following: * The shellcode cannot contain any null bytes. * The shellcode must be run from the stack. * Winsock has not been initialised. * We may assume that eax points to the start of our code. Our full solution is in the Appendix to this paper. First, we present some notes on the approach taken and some of the details of the solution. The full whitepaper can be downloaded from: <http://www.ngssoftware.com/papers/WritingSmallShellcode.pdf> http://www.ngssoftware.com/papers/WritingSmallShellcode.pdf. ADDITIONAL INFORMATION The information has been provided by <mailto:daf@ngssoftware.com> Dafydd Stuttard. The original article can be found at: <http://www.ngssoftware.com/papers/WritingSmallShellcode.pdf> http://www.ngssoftware.com/papers/WritingSmallShellcode.pdf ======================================== This bulletin is sent to members of the SecuriTeam mailing list. To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@securiteam.com In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com ==================== ==================== DISCLAIMER: The information in this bulletin is provided "AS IS" without warranty of any kind. In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [NT] Antigen for Exchange and SMTP Rule Bypassing Vulnerability, SecuriTeam |
|---|---|
| Next by Date: | [EXPL] Wzdftpd Code Execution (Unfiltered Pipe in Popen), SecuriTeam |
| Previous by Thread: | [NT] Antigen for Exchange and SMTP Rule Bypassing Vulnerability, SecuriTeam |
| Next by Thread: | [EXPL] Wzdftpd Code Execution (Unfiltered Pipe in Popen), SecuriTeam |
| Indexes: | [Date] [Thread] [Top] [All Lists] |