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;








0















I'm trying to call a C program (or .c file) from a shellcode.










share|improve this question



















  • 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

















0















I'm trying to call a C program (or .c file) from a shellcode.










share|improve this question



















  • 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













0












0








0








I'm trying to call a C program (or .c file) from a shellcode.










share|improve this question
















I'm trying to call a C program (or .c file) from a shellcode.







c shellcode






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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












1 Answer
1






active

oldest

votes


















5














You cannot execute an file ".c" from shell. You must compile it first.



For example:
We have an file called "file.c"



  1. Open a terminal

  2. Use gcc for compile the file and make an executable (gcc file.c -o executable)

  3. Now you can open the executable file since shell (just go to the folder and execute ./executable





share|improve this answer



























    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
    );



    );













    draft saved

    draft discarded


















    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









    5














    You cannot execute an file ".c" from shell. You must compile it first.



    For example:
    We have an file called "file.c"



    1. Open a terminal

    2. Use gcc for compile the file and make an executable (gcc file.c -o executable)

    3. Now you can open the executable file since shell (just go to the folder and execute ./executable





    share|improve this answer





























      5














      You cannot execute an file ".c" from shell. You must compile it first.



      For example:
      We have an file called "file.c"



      1. Open a terminal

      2. Use gcc for compile the file and make an executable (gcc file.c -o executable)

      3. Now you can open the executable file since shell (just go to the folder and execute ./executable





      share|improve this answer



























        5












        5








        5







        You cannot execute an file ".c" from shell. You must compile it first.



        For example:
        We have an file called "file.c"



        1. Open a terminal

        2. Use gcc for compile the file and make an executable (gcc file.c -o executable)

        3. Now you can open the executable file since shell (just go to the folder and execute ./executable





        share|improve this answer















        You cannot execute an file ".c" from shell. You must compile it first.



        For example:
        We have an file called "file.c"



        1. Open a terminal

        2. Use gcc for compile the file and make an executable (gcc file.c -o executable)

        3. Now you can open the executable file since shell (just go to the folder and execute ./executable






        share|improve this answer














        share|improve this answer



        share|improve this answer








        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





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript