Fascination
article thumbnail
[Dreamhack] Reversing Engineering - 4. x64dbg
Hacking Tech/Reversing 2021. 10. 3. 09:35

Reversing Engineering - 4. x64dbg 1. x64dbg 사용법 # x64dbg - 윈도우 디버거 - UI나 기능 등 많은 면에서 ollydbg를 닮았으며, ollydbg는 소스 코드가 공개되어 있지 않고 32비트만 지원하는데 반해 x64dbg는 오픈소스이고 32비트와 64비트를 둘 다 지원 - 강력한 디스어셈블 엔진을 가지고 있으며 그래프 뷰, 플러그인 등 리버싱에 있어서 편리한 여러가지 기능들이 내장되어 있음 # x64dbg의 사용법 - 기본적인 UI - x64dbg의 상단바 1. 분석할 프로그램을 열음 2. 프로그램을 재시작함 3. 프로그램을 완전히 정지 4. 프로그램을 실행(재개)함 5. 프로그램을 일시정지 시킴. 실행중인 상태에서 임의로 중단시키고 싶을 때 사용 6. 어셈블..

article thumbnail
[DataScience] Ch6. Similarity, Neighbors, and Clusters
Study/Data Science 2021. 8. 24. 00:32

Ch6. Similarity, Neighbors, and Clusters - 숙명여자대학교 소프트웨어학부 데이터사이언스개론 - 박동철 교수님 # Similarity - data science 방법과 해결에 기반이 됨 > 유사한 것들은 공통된 특징(common characteristics)을 가짐 - 예시 > 유사한 항목을 검사(retrieving): 회사 입장에서 최근에 좋다고 생각하는 고객과 유사한 고객을 찾음 > 유사한 item끼리 묶음 = clustering : 그룹의 특징을 보기 위해 비슷한 고객끼리 묶음 > 상품 추천: 추천을 제공하기 위해 비슷한 상품이나 고객을 찾음 > 비슷한 case로부터 추론: 비슷한 case를 제공함으로써 의사나 법률인을 도움 # Similarity and Distanc..

article thumbnail
[DataScience] Ch.3 Introduction to Predictive Modeling: From Correlation to Supervised Segmentation
Study/Data Science 2021. 8. 23. 23:30

Ch3. Introduction to Predictive Modeling: From Correlation to Supervised Segmentation - 숙명여자대학교 소프트웨어학부 데이터사이언스개론 - 박동철 교수님 * Modeling: 새로운 데이터가 들어왔을 때 결과를 예측하기 위함 # Predictive Modeling - 일반적인 과정 > data를 잘 묘사하는 model을 구축 → Bulid a model > 새로운 data의 결과를 예측하기 위해 model을 적용시킴 → Apply the model - 첫 번째로 classification을 고려할 수 있음 > training data를 기반으로 새로운 data가 속할 class를 식별 # Model - 목적에 맞는 현실의 단순화 표현 →..