acheong08 / acheong08/shellcode_utils
Unable to use on Windows
Đang mở
- Ngôn ngữ chính
- Python
- Star
- 5
- Fork
- 0
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
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?
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.