acheong08 / acheong08/shellcode_utils

Unable to use on Windows

Abierto
#1 0 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
Python
Estrellas
5
Forks
0
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

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?

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.