A shellcode is a small piece of code used as the payload in the exploitation of a software vulnerability.
0
votes
1answer
26 views
a shellcode to get the shell,but segment default happened
Let me just show you my code first.
char shellcode[] =
"\xeb\x1a\x5e\x31\xc0\x88\x46\x07\x8d\x1e\x89\x5e\x08\x89\x46"
"\x0c\xb0\x0b\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\xe8\xe1"
...
3
votes
1answer
91 views
Re-writing a small execve shellcode
Going through http://hackoftheday.securitytube.net/2013/04/demystifying-execve-shellcode-stack.html
I understood the nasm program which invokes execve and was trying to re-write it.
Some background ...
2
votes
2answers
77 views
Shellcode in C program
The link http://hackoftheday.securitytube.net/2013/04/demystifying-execve-shellcode-stack.html
highlights a way to write an execve shellcode.
#include<stdio.h>
#include<string.h>
...
0
votes
1answer
60 views
Stack memory addresses in Shellcode
I was reading a basic article on writing a shellcode (execve using stack method) here: http://hackoftheday.securitytube.net/2013/04/demystifying-execve-shellcode-stack.html
In step 6: It pushes a ...
0
votes
2answers
44 views
Null bytes in shellcode
Going through the shellcode article on wikipedia, it gives an example as follows:
B8 01000000 MOV EAX,1 // Set the register EAX to 0x000000001
To make the above instruction null free, ...
1
vote
1answer
40 views
Segmentation fault on mcrypt (probably something to do with the buffer) [closed]
I'm trying to build my own crypter in c using AES to encrypt the shellcode. Now I've already made a PoC of the crypter in one program which can be found below:
#include <stdio.h>
#include ...
1
vote
3answers
222 views
Using buffer overflow to execute shell code
I've been learning computer security lately and come across a couple problems, and i'm having some trouble with this one in particular.
I'm given a function with a fixed buffer I need to overflow in ...
0
votes
1answer
85 views
pass arguments to execve program in shellcode
I'm having a go at learning assembly and writing shellcode. I have a question about execve and passing arguments to the program it will execute.
I have working code to execute a bash shell but am ...
0
votes
2answers
94 views
Program behaves different in GDB?
I have this code from smashthestack:
//bla, based on work by nnp
#include <stdio.h>
#include <string.h>
void prompt_name(char *name, char *msg){
char buf[4096];
int i = ...
1
vote
3answers
95 views
Shellcode: perform 2 execve() calls
I am trying to write shellcode in assembly. I need to perform a /usr/bin/killall command AND a /usr/bin/wget command. I have both commands running perfectly in shellcode with the execve() syscall. But ...
3
votes
1answer
137 views
Linux Shellcode “Hello, World!”
I have the following working NASM code:
global _start
section .text
_start:
mov eax, 0x4
mov ebx, 0x1
mov ecx, message
mov edx, 0xF
int 0x80
mov eax, 0x1
mov ebx, 0x0
...
0
votes
1answer
111 views
Can't understand the buffer overflow example in “The Art of Exploitation”
My problem is very similar but not the same with the this one.
I run the same example of exploit_notesearch.c in the book: Hacking, the Art of Exploitation on my 64-bit OS, Archlinux and it doesn't ...
0
votes
1answer
117 views
infinite loop in shellcode
I want to display an hello world from shellcode, c code is simple:
#include <stdio.h>
char shellcode[] = ...
-1
votes
2answers
162 views
Kernel exploit shellcode
I want to write shellcode for kernel mode on 32-bit Linux that will do this:
commit_creds (prepare_kernel_cred(0));
So I create a file with:
xor eax, eax
call 0x1234567
call 0x1234568
ret
Where ...
1
vote
2answers
126 views
Overflowing a stack in theory.. and assembly
Assuming an x86 system with no aslr I'd like to ask the following;
1) Theory says that when we execute a stack overflow attack, the value pointed to by the ebp register is overwritten with the new ...
1
vote
3answers
189 views
Opcode for negative jump
I'm trying to create some shellcode where I need to jump back (a negative jump).
I want to jump 2400 bytes back. And this is the opcode I use:
\x90\xE9\x98\xef
This is first a nop and then a near ...
3
votes
2answers
292 views
Homework - Buffer Overflow
Still learning this Buffer Overflow stuff for a security class, I'm trying to exploit the vulnerability in this application:
//vuln.c
#include <stdio.h>
int bof(char *str)
{
char ...
1
vote
1answer
97 views
Launch shell with inline assembly
I am working on a school assignment and I am completely stumped. The professor and TA have been of no help as every answer they provide to any student is some variation of "keep looking, the answer is ...
0
votes
0answers
77 views
injecting shellcode
i have a .cmd file on a webserver with a variable user="...", vulnerable against buffer overflows. I can execute the .cmd file via ssh or via web.
Now i have this shellcode:
#include <stdio.h>
...
0
votes
1answer
164 views
Grabbing 128bit key from shellcode
I'm trying to take out a 128bit key from shellcode. I have compiled shellcode as a C code within an array which is like
#include <stdio.h>
#include <stdlib.h>
/*shellcode.c*/
char code[] ...
1
vote
1answer
128 views
Reliable shellcode testing
Code such as the following is supposed to be able to "test" shellcode, namely execute it.
char shellcode[] = "...";
int main(int argc, char **argv)
{
int (*func)();
func = (int (*)()) ...
1
vote
2answers
167 views
Shellcode keeps breaking in Ability FTP Server buffer overflow exploit
I am taking the Penetration Testing with Backtrack class from offensive-security.com and am working on a buffer overflow exploit for Ability Server. I can successfully over write EIP and jump to my ...
0
votes
1answer
93 views
Do I need a specific order for Shellcode?What am I doing wrong when turning this into shellcode?
I started Assembly today in order to create shell-code.The ASM was fine and after a while I created this:
[SECTION .text]
global _start
_start:
call ender
starter:
mov ...
0
votes
2answers
121 views
access violation in Visual C 2010 on inline assembly
I have a simple program in C, with compiler switches: /GS-
It is just a proof of concept of changing the EIP to the location of the machine code string.
Let's say we set EIP = 0x012f5000, which ...
0
votes
1answer
245 views
execve shellcode writing segmentation fault
I am trying to study execve shellcode,
OS : Linux bt 2.6.39.4
root@bt:~/exploit# cat gshell.s
.globl _start
_start:
nop
jmp MyString
shell:
popl %esi
xorl ...
0
votes
1answer
151 views
Shell code print character(64bits)
I have a problem with this shell code.
When I run the assembler code it prints the caracter, but when I call it as a function from c it does not.
I used gdb to test all the instruction executed and it ...
4
votes
3answers
378 views
How do I get the machine code of an assembly instruction known at compile time?
I want to be able to convert a single line of ASM into shellcode. I.E:
CALL EBX
How do I go about doing this, and also being able to properly convert this shellcode so that I can store it in a ...
0
votes
1answer
100 views
Modifying a byte in memory using shellcode
I have been trying to create a simple chunk of shell code that allows me to modify a string by doing something simple like changing a letter, then print it out.
_start:
jmp short ender
...
2
votes
1answer
190 views
Instructions in C buffer being executed only as sudo [closed]
I'm working on a buffer overflow attack as described in Aleph One's article Smashing the Stack for Fun and Profit.
As proposed in the article, I've written a program (shellcode.c) that plants the ...
1
vote
3answers
283 views
Shellcode c language [closed]
char sh[] = "\x31\xc0\x31\xdb\x31\xc9\x31\xd2\x52\x68\x6e\x2f\x73\x68"
"\x68\x2f\x2f\x62\x69\x89\xe3\x52\x53\x89\xe1\xb0\x0b\xcd\x80";
Why did the programmer use hex encoding for this string? For ...
6
votes
2answers
225 views
The Art of Compiler on Buffer Overflow
The modern compiler GCC is so powerful that it can even prevent buffer overflow in compilation phase so that OS can not run code on stack space.
For example:
void function(char *str)
{
char ...
0
votes
1answer
67 views
Shellcode gives SyntaxError in gdb
I'm trying to pass shellcode as the command-line argument in a C program. But gdb keeps giving me SyntaxError. What am I doing wrong?
Below are the contents of the C program and the shellcode:
...
0
votes
0answers
69 views
Shellcode Segfault [closed]
I'm trying to inject shellcode into a buffer on a Linux i486 machine but every time it reaches the int 0x80 instruction, I get segfault. Does anyone know any possible reasons this may be?
1
vote
2answers
190 views
Shell-spawning shellcode that is smaller than 295 bytes
I want shell-spawning shellcodes that is smaller than 295 bytes. Metasploit usually produces shell-spawning shellcodes that are (far) more than 300 bytes.
Or is there anyway I can compress the ...
0
votes
1answer
130 views
Basic Shellcode for connect() Function
I am writing shellcode on Ubuntu 11.10 x86 and the registers prior to the int 0x80 syscall look like this:
eax 0x66
ecx 0x8e60558
edx 0x0
ebx 0x3
which is set up for the connect() ...
0
votes
0answers
194 views
shellcode execution doesn't seem to happen :: Meterpreter :: Metasploit [closed]
I was writing an executable crypter as an exercise with goal of Antivirus evasion, now the problem is the final executable isn't working on windows 7.. It's working flawlessly on Windows XP...
For ...
1
vote
2answers
295 views
C program hangs / suspends while executing shellcode
#include <stdio.h>
char shellcode[] = "some shellcode here";
int main (int argc, char **argv) {
void (*sptr)();
sptr = (void(*)()) (&shellcode);
sptr();
printf("must display ...
1
vote
3answers
270 views
How do I make this simple shellcode c program compile from terminal?
I am trying to compile this using the terminal on ubuntu 12:
#include <stdio.h>
#include <stdlib.h>
main()
{
/*declare argument array*/
char *args[2];
args[0] = ...
3
votes
1answer
356 views
Buffer Overflow - Program terminates after spawning a shell
I have been experimenting with buffer overflows on a FreeBSD system.
As the first experiment I have tried to get the exploited program to start another process (/bin/hostname in this case). That all ...
1
vote
1answer
252 views
Insert shell code
I got a small question.
Say I have the following code inside a console application :
printf("Enter name: ");
scanf("%s", &name);
I would like to exploit this vulnerability and enter the ...
0
votes
2answers
142 views
Shellcode searching for Bytes String: 0C330408Bh
I am learning the working of a malware(Blackhole Exploit) where I extracted the shellcode from a malicious code. I figured out everything except a search for the Byte String. Can anyone help me on ...
7
votes
1answer
204 views
Alphanumeric Shellcode Ensuring Jumps
I'm trying to write some shellcode that will eventually be in the form of an English paragraph. This means that I'm mostly limited to instructions that have opcodes that evaluate to alphanumeric ...
2
votes
2answers
267 views
Why my shellcode does not work (in Linux)?
I wrote a small shellcode below:
#include <stdlib.h>
int main()
{
__asm__("jmp calloffset\n"
"poploffset: popl %%esi\n"
"movl $1,%%eax\n"
"movl $6,%%ebx\n"
...
0
votes
1answer
97 views
Are the old days of code injection over? [closed]
I was wondering since all updated operating systems guard against stack and heap type overflows via ASLR, Canary Checks, and other such methods, are memory corruption exploits still prevalent? Given ...
2
votes
1answer
486 views
Can't figure out a smashing stack segment fault
I am doing some smashing stack practice recently with the book "shellcoder's handbook".
But when I try to test some code on my Ubuntu11.04 I always get a segment fault.
Here's the situation:
At first ...
0
votes
0answers
328 views
“bin/sh: can't access tty; job control turned off” error when running shellcode
I'm writing shellcode to exploit a buffer overflow vulnerability on a server. To do so I have port binding shellcode that I send to the server and then I run (from a linux terminal) the command ...
0
votes
2answers
141 views
Shellcode Development , ESP pointer
Sometime back, working on an exploit for Easy RM to MP3 Converter 2.7.3.700 on Windows XP SP3 ( http://www.exploit-db.com/exploits/9177/ ) , I came across a concept which am not understanding , It ...
6
votes
1answer
388 views
Shellcode in C - What does this mean?
I'm not really getting how this code does what it does:
char shellcode[] = "\xbb\x00\x00\x00\x00"
"\xb8\x01\x00\x00\x00"
"\xcd\x80"; ...
1
vote
1answer
99 views
Why is the address where the stack begins predictable enough to allow repeatable exploitation but appears to be unpredictable?
I've been teaching myself to write exploits and shellcode recently and many of the guides/books make the claim that we can guess where the stack begins and thereby with a little work guess what ...
0
votes
2answers
318 views
Null bytes in shellcode?
I thought null bytes were not allowed in shellcode. While understanding some shellcode, I seem to have come across some code that contains null's and works perfect, why is this?
...

