shellcode
What is this programe doing?
#define bufsize 260 /* setuid(0) shellcode by by Matias Sedalo 3x ^_^ */ char shellcode[] =\"\\x31\\xdb\\x53\\x8d\\x43\\x17\\xcd\\x80\\x99\\x68\\x6e\\x2f\\x73\\x68\\x68\"[详细]
2023-02-25 12:13 分类:问答Is this how buffer overflows work?
I guess there are similar questions and some data on the web...but I want to be sure that I grasp the concept correctly, since all online tutorials are way too long and focus on exploits, ect. So, the[详细]
2023-02-16 20:42 分类:问答Method of evaluating shellcode in python?
Evaluating a sample piece of shellcode using a C program is not complicated. It would involve storing the shellcode in a character array, creating a function pointer, typecasting the pointer and makin[详细]
2023-02-11 22:39 分类:问答How to Remove NULL (00) from Machine Code?
I need to know how i remove the null (00) from machine code. i wrote the code in Assembly Language. It running Successfully. I need the output without NULL[详细]
2023-01-29 19:15 分类:问答is it possible to make a function execute code from a string on the stack?
#include <stdio.h> int main(int argc, char** argv) { void (*p) (void); /* t开发者_开发百科his obviously won\'t work, but what string could I put in[详细]
2023-01-07 09:33 分类:问答Books and shellcode examples [closed]
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a[详细]
2023-01-04 00:31 分类:问答I have this code .... Ethical Hacking
I am following this EBook about Ethical Hacking, and I reached the Linux Expl开发者_JAVA百科oit Chapter, this is the code with Aleph\'s 1 code.[详细]
2022-12-30 01:36 分类:问答Testing a shellcode
I have this piece of code to test a shellcode butI don\'t understand it so can anyone explain it to me?[详细]
2022-12-29 12:32 分类:问答can anyone explain this code to me?
WARNING: This is an exploit. Do not execute this code. //shellcode.c char shellcode[] = \"\\x31\\xc0\\x31\\xdb\\xb0\\x17\\xcd\\x80\"[详细]
2022-12-27 20:59 分类:问答shellcode is truncated by \x20
Why is my shellcode is truncated after \\x20 opcode, when it is copied by string to stack on a second vulnerable program?[详细]
2022-12-23 13:16 分类:问答