본문 바로가기

분류 전체보기

(117)
thiscall 마이크로소프트 설명 https://docs.microsoft.com/ko-kr/cpp/cpp/thiscall?view=msvc-160 __thiscall Microsoft c + +에서 x86 클래스 멤버 함수에 대 한 Microsoft 관련 __thiscall 호출 규칙에 대해 알아봅니다. docs.microsoft.com
논리회로설계 재미있는 개념을 가장 많이 접한 과목인 것 같다. 해당 과목은 정리하여 블로그에 올려둬야겠다.
WMI 개념 잘 정리했다. https://dazemonkey.tistory.com/98 WMI 개념 (Windows Management Instrumentation) WMI 윈도우 운영체제에 기본적으로 지원하는 파워쉘(PowerShell)은 WMI, COM, .NET Framework 등 다양한 표준을 지원한다. 다양한 표준 중 WMI(Windows Management Instrumentation)는 윈도우의 리소스에 접근하여.. dazemonkey.tistory.com
수학용어정리 모를 때 하나씩 살펴보자. 수학 영어 용어 수학 영어 용어 우선 지식인에서 긁었습니다.mathematica 공부할 때 참고 할려구요.- A - [1] 1-parameter... blog.naver.com
msreverseengineering.com 한 번 살펴보자. Möbius Strip Reverse Engineering Möbius Strip Reverse Engineering, founded by Rolf Rolles, is a boutique computer security firm offering the highest-quality educational services on reverse engineering and its automation via program analysis. www.msreverseengineering.com
동계 방학 해제 끝, 2학년 1학기 시작 2학년 때 토익이랑 각종 교양과목들을 재학습하고 리버스 엔지니어링뿐만 아니라 다른 과목들도 공부해야겠다.
PIE Stripped Binary를 gdb로 디버깅할 때 bp를 어떻게 걸까? 주소 0x0에다가 bp를 걸고 메모리 맵보고 각 섹션이 어떤 주소에 배치됐는지 확인하고 디버깅하면 된다. reverseengineering.stackexchange.com/questions/8724/set-a-breakpoint-on-gdb-entry-point-for-stripped-pie-binaries-without-disabling Set a breakpoint on GDB entry point for stripped PIE binaries without disabling ASLR Given a position-independent, statically-linked, stripped binary, there does not appear to be a way in GDB to set a breakp..
백준/ 바킹독님의 문제집/ 재귀함수가 뭔가요?(17478) 문제 설명 문제 해결 띄어쓰기 한 글자라도 틀리면 아예 틀렸다고 판정할만큼 까다롭다. 함수의 정의는 void func(int count)으로 해줬다.재귀 함수의 base condition은 count == N으로 설정했다.재귀식은 func(count + 1)로 설정하여 count를 차근차근 증가시키면된다. mask라는 함수를 만들어줬는데 count가 증가함에 따라서 "____"를 더 출력해주는 함수다. #include #include #include #include #include #include #include #include #include using namespace std; int N; void mask(int count) { for (int i = 0; i
Notion2Tistory 협업 도구로써, 메모 도구로써 Notion은 정말 좋은 도구이다. 블로그를 비록 Tistory로 운영하고 있지만 그래도 어떤 글을 작성할 때는 Notion으로 먼저 작성한다. 지금까지 Tistory로 글을 올릴 때 Notion을 보고 다시 재작성하여 올렸는데 Notion2Tistory를 처음으로 사용해봤다. 노션 페이지에 속성에 대한 정보를 게시하여 글을 올릴 때 태그나, 비밀글, 비밀번호 같은 속성도 설정할 수 있다고 한다. github.com/boltlessengineer/Notion2Tistory boltlessengineer/Notion2Tistory Notion2Tistory는 Notion 페이지를 Tistory 블로그 게시물로 업로드해주는 앱입니다. - boltlessengineer/Notio..
백준 / 바킹독님의 문제집 / Z(1074) 문제 설명 문제 해결 일단 시간 제한이 0.5초로 매우 짧다.배열을 선언하여 재귀적으로 Z 모양으로 순회한다면 시간 제한에 걸릴 것 같다.N이 15라면 배열의 크기는 215×2152^{15} \times 2^{15}215×215 정도까지 커지기 때문이다. 저 정도 시간 제한이라면 순회가 아니라 단순 연산 정도로 끝나야 알맞을 것 같다.그렇다면 순회하지 않고도 r행 c열을 몇 번째로 방문했는지 알 수 있을까? N이 2인 배열을 탐색하려고 하고, r이 1, c가 2라면 6이라는 숫자를 어떻게 만들 수 있을까?2N−1×2N−1+f(N−1,r,c−2N−1)2^{N-1} \times 2^{N-1} + f(N-1,r,c - 2^{N-1})2N−1×2N−1+f(N−1,r,c−2N−1) 요런 형태로 재귀해주면 될 ..