acheong08 / acheong08/shellcode_utils

Unable to use on Windows

Offen
#1 0 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
Vorherrschende Sprache
Python
Sterne
5
Forks
0
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

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

```c
#include

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?

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.