Author Topic: shellcode  (Read 1792 times)

Offline reaper

  • Opulent Member
  • *
  • Posts: 2872
  • Nice night for a walk, eh? - Nice night for a walk
    • View Profile
  • Rated:
shellcode
« on: January 09, 2012, 07:59:03 PM »
Well I've been following along the shellcoders handbook for some time, and I found it really fun.  Anyways the Operating Systems and compilers have changed quite a bit since the book was written.

I've finally gotten some shellcode to work.  I:

1) turned off address randomization (your stack start address is randomized - each process has its own memory it thinks, which the MMU handles)
2) I disabled DEP (the stack is marked as non executable..)
3) I disabled stack canaries by not compiling into the vulnerable service

so the matter was fairly simple.  I had C source code that had a system call for a shell, this was already put into opcodes (which you could do by disassembling in gdb), it ran the shell.  then there was a program that output ESP of main, and took as parameters an offset and a buffer size.  I debugged the vulnerable program until the RET instructions, and looked at ESP at that time (points to RET then), and found the correct offset and memory address that is where the shellcode resides. 

Anyways it called the shell.  Now I am stuck with what to do next: go to return-to-libc, format strings, disassemble a C program and construct the shellcode.

Or try and turn on each OS & compiler security mechanism and see how to defeat it.  Now to me it seems the real gotcha is the stack canaries.  I guess you can overwrite a pointer variable with EIPs address, and if the function copies data to that region, the instructions execute, but that seems like a long shot and I didn't quite follow it.  And one method combines the random value with the original stored EIP..

Are these fundamental problems gone?  Does it matter so much input is checked at a low level anymore?  I can see a high level like making sure your web application doesn't upload an executable program.

edit: I can post the code if anyone wants, it's in the 2nd chapter and required a couple modifications, as well the OS required modification to weaken it : )

Now with all these security measures, how can something like the conflicker worm happen???

« Last Edit: January 09, 2012, 08:16:22 PM by reaper »
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus
VaeVictus "reaper is a lying sack of shit and ragequit then had, probably slugs, come alias and beat me, wasnt even the same person playing OBVIOUSLY, accuracies basicly doubled, and strategy

kren.Z

  • Guest
Re: shellcode
« Reply #1 on: January 10, 2012, 07:53:34 AM »
  Anyways it called the shell.  Now I am stuck with what to do next: go to return-to-libc, format strings, disassemble a C program and construct the shellcode.

Well if you've been able to spawn a shell then you've successfully achieved your goal as an attacker. Namely that of comprising the intended system and having complete access/control of that system with administrator (root) privileges (i.e. as if you were sitting at the keyboard). So you really wouldn't need to do anything next...

Now if you were to approach the problem as the software author then you would need to fix the problem by either patching the binary or distributing a completely different binary altogether.

  Now with all these security measures, how can something like the conflicker worm happen???


When an attacker looks to exploit a system, they will usually run the system in a simulated environment via a virtual machine and usually do all their debugging/reverse engineering in that environment. conflicker only targeted the windows operating system.

For example stuxnet,  which only targeted Iranian enrichment facilities. SCADA systems usually run a specific product on a specific operating system. In stuxnet's case, it attacked a siemens product on  a version of microsoft windows.

From there you try to look at application processes that are run with administrative privileges. One of stuxnet's 0 days exploited a registry check that generated a hash based on a timestamp that was run as an administrative processes. they wrote shellcode to take advantage of this.


------------------------------------------------

Web application hacking is limited since it's only open to one avenue of attack, namely the HTTP protocol. So you will try to look for interfaces to the back-end database and craft special queries or file uploads which will put a binary on the remote server. Or you scan the entire server for applications or services listening on different ports, analyze/reverse engineer the protocol, and then start talkin' dirty.

You're looking at nitty gritty details like operating systems, cpu instruction sets etc when you really need to see the 10,000 ft. overview.

In hacking, the goal is simple. To gain complete control over a remote machine. How you go about accomplishing this goal is up to you and is what makes hacking...well...hacking.


1.Find your target.
2. Analyze your targets system, find what applications are running on this system. Reverse engineer these applications in a simulated environment and look for vulnerability's.
3. Write shellcode.
4. Find a way to deliver the payload to the target.
5.get your shell

« Last Edit: January 28, 2014, 01:24:29 PM by krenZ »
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus

Offline reaper

  • Opulent Member
  • *
  • Posts: 2872
  • Nice night for a walk, eh? - Nice night for a walk
    • View Profile
  • Rated:
Re: shellcode
« Reply #2 on: January 10, 2012, 02:43:31 PM »
I don't think conflicker would work if the function addresses were randomized or if there were stack canaries, because it looks to me like it attacks a buffer overflow problem, by negotiating an SMB session with a Windows service, then calls a function in that service.  If the system had stack canaries, that used the real value of RET the service should just crash because the canary shouldn't match.  maybe Windows 2003 didn't have these security features?  However I'm not sure.

I copied a vulnerable program so I knew what the stack looks like, and I could debug the program to find where the shellcode was in memory.  I suspect it'd be much harder if the program overwrite the stack later in execution, or if there were a number of security features..


http://mtc.sri.com/Conficker/

Quote from: spoof.z
Well if you've been able to spawn a shell then you've successfully achieved your goal as an attacker. Namely that of comprising the intended system and having complete access/control of that system with administrator (root) privileges (i.e. as if you were sitting at the keyboard). So you really wouldn't need to do anything next...

I spawned bash and bash drops privileges by default, so even if you had a service with setUID, so it runs as root, then your shell would still be dropped, since /bin/sh is linked to bash which drops down from root, but you control execution so you could also do other operations to get root.

I think I'll work on a couple things:

return-to-lib-c
creating the shellcode via disassembling
moreee C pointer stuff : )
crafting the datagrams to a TCP/IP aware service


« Last Edit: January 10, 2012, 02:47:43 PM by reaper »
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus
VaeVictus "reaper is a lying sack of shit and ragequit then had, probably slugs, come alias and beat me, wasnt even the same person playing OBVIOUSLY, accuracies basicly doubled, and strategy

 

El Box de Shoutamente

Last 10 Shouts:

 

Costigan_Q2

November 11, 2024, 06:41:06 AM
"Stay cozy folks.

Everything is gonna be fine."

There'll be no excuses for having TDS after January 20th, there'll be no excuses AT ALL!!!
 

|iR|Focalor

November 06, 2024, 03:28:50 AM
 

RailWolf

November 05, 2024, 03:13:44 PM
Nice :)

Tom Servo

November 04, 2024, 05:05:24 PM
The Joe Rogan Experience episode 223 that dropped a couple hours ago with Musk, they're talking about Quake lol.
 

Costigan_Q2

November 04, 2024, 03:37:55 PM
Stay cozy folks.

Everything is gonna be fine.
 

|iR|Focalor

October 31, 2024, 08:56:37 PM
 

Costigan_Q2

October 17, 2024, 06:31:53 PM
Not activated your account yet?

Activate it now! join in the fun!

Tom Servo

October 11, 2024, 03:35:36 PM
HAHAHAHAHAHA
 

|iR|Focalor

October 10, 2024, 12:19:41 PM
I don't worship the devil. Jesus is Lord, friend. He died for your sins. He will forgive you if you just ask.
 

rikwad

October 09, 2024, 07:57:21 PM
Sorry, I couldn't resist my inner asshole.

Show 50 latest
Welcome, Guest. Please login or register.
November 16, 2024, 07:54:31 AM

Login with username, password and session length