Skip to content

Unable to use on Windows #1

@MexHigh

Description

@MexHigh

I'm trying to create shellcode using the Win32 API:

#include <Windows.h>

int main()
{
    STARTUPINFOA info = { sizeof(info) };
    PROCESS_INFORMATION processInfo;

    CreateProcessA(
        NULL,
        (char*)"calc",
        NULL,
        NULL,
        TRUE,
        0,
        NULL,
        NULL,
        &info,
        &processInfo
    );
}

However, your tool requires the use of Shell, meaning I have to use Linux. Compiling a C file using Windows.h does not work there, sadly.

Is there a way to accomplish this?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions