acheong08 / acheong08/shellcode_utils

Unable to use on Windows

Ouverte
#1 0 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
Python
Étoiles
5
Forks
0
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

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?

Guide de contribution

Aucun guide de contribution indexé pour ce dépôt

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.