How do I execute a C program from a shellcode?How do you set, clear, and toggle a single bit?How can I get the list of files in a directory using C or C++?Improve INSERT-per-second performance of SQLite?What does the C ??!??! operator do?C program hangs / suspends while executing shellcodeShellcode C Program HarnessRedirect output of a program that executes shellcodeC shellcode execution issueExecuting shellcode in shared memory with mmapExecuted shellcode terminates main program
In the Marvel universe, can a human have a baby with any non-human?
Can White Castle?
try to discover the pattern
Do French speakers not use the subjunctive informally?
What are the benefits of using the X Card safety tool in comparison to plain communication?
Should I hide continue button until tasks are completed?
Why does the numerical solution of an ODE move away from an unstable equilibrium?
What reason would an alien civilization have for building a Dyson Sphere (or Swarm) if cheap Nuclear fusion is available?
Apply brace expansion in "reverse order"
Impossible darts scores
Are there any vegetarian astronauts?
Why do some professors with PhDs leave their professorships to teach high school?
As a DM, how do you control a dysfunctional group wanting different things out of a game?
What do you call a weak person's act of taking on bigger opponents?
Low-gravity Bronze Age fortifications
Using “sparkling” as a diminutive of “spark” in a poem
Change CPU MHz from Registry
No IMPLICIT_CONVERSION warning in this query plan
ては's role in this 「追いかけては来ないでしょう」
Catching generic Exception in a toString implementation - bad practice?
Employer wants to use my work email account after I quit, is this legal under German law? Is this a GDPR waiver?
Should I tell my insurance company I'm making payments on my new car?
Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?
Cascading Repair Costs following Blown Head Gasket on a 2004 Subaru Outback
How do I execute a C program from a shellcode?
How do you set, clear, and toggle a single bit?How can I get the list of files in a directory using C or C++?Improve INSERT-per-second performance of SQLite?What does the C ??!??! operator do?C program hangs / suspends while executing shellcodeShellcode C Program HarnessRedirect output of a program that executes shellcodeC shellcode execution issueExecuting shellcode in shared memory with mmapExecuted shellcode terminates main program
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to call a C program (or .c
file) from a shellcode.
c shellcode
add a comment |
I'm trying to call a C program (or .c
file) from a shellcode.
c shellcode
1
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
1
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36
add a comment |
I'm trying to call a C program (or .c
file) from a shellcode.
c shellcode
I'm trying to call a C program (or .c
file) from a shellcode.
c shellcode
c shellcode
edited Mar 25 at 12:22
WCKennedays
asked Mar 25 at 2:37
WCKennedaysWCKennedays
448 bronze badges
448 bronze badges
1
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
1
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36
add a comment |
1
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
1
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36
1
1
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
1
1
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36
add a comment |
1 Answer
1
active
oldest
votes
You cannot execute an file ".c" from shell. You must compile it first.
For example:
We have an file called "file.c"
- Open a terminal
- Use gcc for compile the file and make an executable (
gcc file.c -o executable
) - Now you can open the executable file since shell (just go to the folder and execute
./executable
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330597%2fhow-do-i-execute-a-c-program-from-a-shellcode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You cannot execute an file ".c" from shell. You must compile it first.
For example:
We have an file called "file.c"
- Open a terminal
- Use gcc for compile the file and make an executable (
gcc file.c -o executable
) - Now you can open the executable file since shell (just go to the folder and execute
./executable
add a comment |
You cannot execute an file ".c" from shell. You must compile it first.
For example:
We have an file called "file.c"
- Open a terminal
- Use gcc for compile the file and make an executable (
gcc file.c -o executable
) - Now you can open the executable file since shell (just go to the folder and execute
./executable
add a comment |
You cannot execute an file ".c" from shell. You must compile it first.
For example:
We have an file called "file.c"
- Open a terminal
- Use gcc for compile the file and make an executable (
gcc file.c -o executable
) - Now you can open the executable file since shell (just go to the folder and execute
./executable
You cannot execute an file ".c" from shell. You must compile it first.
For example:
We have an file called "file.c"
- Open a terminal
- Use gcc for compile the file and make an executable (
gcc file.c -o executable
) - Now you can open the executable file since shell (just go to the folder and execute
./executable
edited Mar 25 at 2:50
Ring Ø
22.4k4 gold badges57 silver badges85 bronze badges
22.4k4 gold badges57 silver badges85 bronze badges
answered Mar 25 at 2:44
Jorge EspinarJorge Espinar
661 bronze badge
661 bronze badge
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330597%2fhow-do-i-execute-a-c-program-from-a-shellcode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
That's usually easier. But the C code has to be compiled and linked to give an executable. Or you need a C interpreter...
– Ring Ø
Mar 25 at 2:41
1
Your post doesn't have a question. What did you try? Did you get an error message? What is the actual problem we are trying to solve here?
– user694733
Mar 25 at 10:36