0x0A Develop(7)
-
Windows 2019 Server Core #2 Change from general account to domain account.
Last time, I went through a brief explanation of Windows Server and basic active directory setup. I couldn't register my domain because I had a Windows HOME environment last time. So, Windows 10 Pro was installed separately. Look at the picture below, the RedteamTester02 is general account in the client. To register a general account in the domain, it is necessary to change the network settings...
2020.10.09 -
Windows 2019 Server Core #1 Intro.
Windows Server The Windows Server has two types. one is Server Core. Another is Desktop Experience (GUI). I choose the server core. Windows 2019 Server Core does not have a Desktop GUI, so you need to navigate using command-line tools. Let me talk about why I decided on the server core. The Server Core's strength is less vulnerabilities, lower consumption CPU, RAM and disk space, less resource a..
2020.10.09 -
카톡 봇 영어 공부방 만들기
보호되어 있는 글입니다.
2020.01.08 -
개발 일지
====================================================================== 시작 일 : 2019/06/26 종료 일 : 2019/06/28 ------------------------------------------------------------------------------------------------------------------------ Socket 비동기 서버 Version 1 1. 소켓 서버 원리 이해 2. 리눅스에서 kbhit 커스텀해서 사용가능 3. 터미널 속성을 얻기 위해 'termios' 구조체를 사용할 수 있다. 4. 스레드 잘 못 쓰면 다 꼬인다. 5. 파일 경로명을 지정할 때 주석을 달면서 하지 않으면 너무 헷갈린다. 반..
2019.07.02 -
개발 일지
====================================================================== 시작 일 : 2019/07/08 종료 일 : ------------------------------------------------------------------------------------------------------------------------ Socket 비동기 프로그램 제작 Environment : WINDOWS SERVER 2016 ====================================================================== 시작 일 : 2019/07/01 종료 일 : --------------------------------..
2019.07.02 -
HTTP Protocol을 SOCKET에서 사용하는 법
HTTP 프로토콜은 연결한 다음, 직접 사용자가 요청을 해야 반응을 보여준다. 이 요청형식이 '규약' 즉, 프로토콜이다. User-Agent는 마음대로 적어도 되긴 하지만, 통신이 잘 안될 수 있기 때문에 난 ~이런 웹 브라우저이다 라고 알려주게 된다. 서버는 라인 구별을 \r\n으로 한다. 제일 마지막도 \r\n으로 줘야 서버가 끝임을 알 수 있다. example. In C code, "GET /a.zip HTTP/1.0\r\n" "Host: www.A.com\r\n" "User-Agent: FileDownloadProgram/1.00\r\n" "Accept: */*\r\n" // 모든 것을 다 받겠다 "\r\n";
2019.07.02