반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- apphelp.dll
- 윈도우 커널 드라이버
- 바이트 오더
- vcruntime140.dll
- ucrtbase.dll
- IAT Hooking
- HackCTF
- 윈도우 커널 디버깅
- pcap packet capture
- 포너블
- Windows Kernel Debug
- Windows Kernel
- Windows Kernel Driver
- pcap packet
- vcruntime.dll
- Windows
- pwnable
- 네트워크 바이트 오더
- 윈도우 커널
- C언어 패킷캡쳐
- windows kernel debugging
- 시스템해킹
- hacking
- Msvcrt.dll
- packet capture
- Network Byte Order
- 개발하기
- 개발 환경 준비
- 해킹
- arudino
Archives
- Today
- Total
목록2022/01/01 (1)
미친해커

이제 대부분의 기본적인 함수는 완성되었다. 이제 이 함수들을 사용하여 시리얼 포트로부터 데이터를 받아 출력해보는 코드를 작성해보자 #include "SerialMonitor.h" int main(int argc, char *argv[]) { if (argc < 2) { printf("Usage : Program.exe [Com Number]\n"); return -1; } DWORD ComNumber = atoi(argv[1]); HANDLE hComm = GetCommHandleByComNumber(ComNumber); if (hComm == INVALID_HANDLE_VALUE) { return -1; } if (SetBaudRate(hComm, 115200) == FALSE) { return -1;..
C/Serial Monitor
2022. 1. 1. 02:48