acheong08 / acheong08/shellcode_utils

Unable to use on Windows

オープン
#1 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
5
フォーク
0
PR マージ指標
30日以内にマージされた PR はありません

説明

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?

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。