본문 바로가기

전체 글

(40)
[html,css] html html5차이점, html5 기본 형식 HTML의 특징 (1)HTML은 마크업 언어입니다. 마크업 언어(markup 言語, markup language)란 태그 등을 이용하여 문서나 데이터의 구조를 명기하는 언어의 한 가지입니다. (2)또 다른 말로 표현하면, 우리가 보는 웹 페이지가 어떻게 구조화되어 있는지를 브라우저로 하여금 알 수 있도록 하는 언어입니다. (3)HTML은 프로그래밍 언어가 아닙니다. HTML의 요소 예시를 하나 보겠습니다. You are better : 여는 태그 (Opening Tag), 요소의 이름(p)과 열고 닫는 꺽쇠 괄호로 구성됩니다. : 닫는 태그 (Closing Tag), 요소의 이름 앞에 슬래시(/)가 있습니다. 사용한 요소가 닫는 태그를 필요로 할 때에는 닫아줍니다. You are better : 사이에 ..
[포렌식] defcon round7 DEFCON 2013 Network Forensics Puzzle Contest: Phone Home Mrs. Jensen decides to look further into this strange email. She decides to check her account balances to ensure she still has access to her accounts. Use the Round 7 packet capture in this folder to answer the following question: 1. What is the URL of the false(Malicious) web page Victoria is directed to? 1. Victoria가 가리키는 거짓 (악성) 웹 페이지의 ..
[포렌식] Defcon round6 DEFCON 2013 Network Forensics Puzzle Contest: Special Delivery Mrs. Jensen decides to look further into this strange email. She decides to check her account balances to ensure she still has access to her accounts. Use the Round 6 packet capture in this folder to answer the following question: 1. How many bytes of data is the malicious payload? 1. 악성 페이로드는 몇 바이트의 데이터입니까? 이번 defcon_round6도 Network..
[포렌식]Defcon round 5 DEFCON 2013 Network Forensics Puzzle Contest: Lost and Found Gregory is missing! He was supposed to meet up with Betty and deliver the goods. After that, the trail quickly goes cold. A strange shipment has arrived to the offices of Rock Solid Investigations. Jack Stone opens the package and discovers a note and a cell phone. Jack immediately sends the cell phone to you, the forensic investigator..
[포렌식] Defcon round4 DEFCON 2013 Network Forensics Puzzle Contest: Mystery Date Gregory, still unsure of Betty's true identity, meets with a group identifying themselves as Betty's Associates. They gave him a list of demands including numbers to bank accounts, and additional secret documents. Betty's Associates told Gregory he will be provided with information regarding the delivery of the goods. Use the Round 4 pac..
[포렌식] Defcon round 2 경로 D:\coding\1900_forensic\resource\3_네트워크포렌식\3_네트워크포렌식\DefCoN#21\DefCoN#21\ROUND2 DEFCON 2013 Network Forensics Puzzle Contest: Track Star Betty attempts to keep her tracks covered as she establishes a meeting location with Gregory. Use the Round 2 packet capture in this folder to answer the following question: 1. What city are they meeting? DEFCON round2를 분석하기 위해 NetworkMiner 툴을 갖고 분석하는데, Netw..
[포렌식]FAT32 기본파일 분석 이번 포스팅은 FAT32 기본 파일 분석을 목표로 합니다. hxd에서 분석할 파일명은 FAT32_file.001입니다. 파티션 시작주소, 타입, VBR 파티션 타입 0x00 EMPTY 0x0e FAT16 0x01 FAT12 0x0f MX_ Extended 0x04 FAT16 0x83 Linux 0x05 MS Extended 0x85 Linux_ Extended 0x06 FAT16 0xa5 FreeBSD 0x07 NTFS 0xa8 MACOSX 0x0b FAT 32 0xab MAC OSX BOOT 0x0c FAT 32 0xee EFI GTP DISK 위 파티션 타입 테이블을 참고하면, 0x0b는 FAT32 타입임을 알 수 있습니다. 또한, 파티션 시작 주소는 0x000080이므로 계산기로 계산해보았을 때 1..
[Mysql] 한글 깨짐 해결 heidiSQL을 통해 mysql 세션에 접속해서 실행하는 중이었다. 그러나 insert문이 계속 오류가 뜨길래 제대로 오류문을 봤더니 아래와 같이 한글 값이 깨져서 들어간 점을 발견. /* SQL 오류 (1366): Incorrect string value: '\xEC\xB6\x95\xEA\xB5\xAC...' for column 'bookname' at row 1 * 이를 해결하기 위해서는 일단 mysql이 어떤 타입의 인코딩으로 설정되어 있는지를 확인해야 합니다. 관리자 모드로 cmd를 켜주신 다음, mysql을 실행하기 위해 MySQL Server 5.7(혹은 8.0)이 있는 경로로 들어갑니다. mysql 설치 경로로 이동, mysql server 폴더 cd C:\Program Files(혹은 x..