Skip to main content

Document about Privacy Security

1. 해킹과 크래킹의 차이
 (1) 해킹 : 본래 의미 - 악의적인 욕구를 가지지 않고 다른 네트워크의 취약점을 찾거나 찾아서 문제를 해결하는 행위
             부정적으로 인식되는 의미 - 크래킹과 동일함
 (2) 크래킹 : 허가받지 않고 다른 사람이나 시스템의 정보를 자신이 원하는대로 바꾸는 행위

2. 해킹의유형
 (1) 웹해킹: 웹사이트를 주로 하는 해킹으로 웹페이지를 통하여 크래킹을 함
     사례 : 인터넷 피싱 사이트의 개인정보 유출
 (2) 시스템해킹 : 운영체제나 프로그램을 변경하거나 권한을 획득하는 것
     사례: 리버스 엔지니어링, 불법 복제판
 (3) 네트워크해킹: 네트워크의 약점을 이용해 공격하는 것
     사례: 개인정보의 도청, 유출

3.다양한 해커의 분류
 (1) 화이트햇 - 악의가 없는 해킹을 바탕으로한 해킹
 (2) 블랙햇 - 타인에게 피해를 주는 크래킹
 (3) 그레이햇 - 해킹을해 대가를 받으려는 해커
 (4) 불루햇 - 시스템을 베타 테스트를 하는 도중에 해킹을 해서 약점을 찾아주는 해커
 (5) 스크립트키드 - 해킹한다고 하는 대부분의 초딩
 (6) 핵티비스트 - 관심 받고싶은 집단의 해커

5. 개인정보의 유형
 (1) 신원정보 - 이름, 주민번호, 주소 등
 (2) 사회정보 - 학력, 성적, 생기부 등
 (3) 습관 및 취미정보 - 취미, 여가 활동 등
 (4) 신체정보 - 얼굴, 지문, 홍채 등
 (5) 재산정보 - 소득, 통장, 카드 등
 (6) 기타 - 통화 기록, 위치 등

6. 개인정보 침해 유형
 (1) 수집 - 사용자의 동의를 구하지 않고 수집하고 그 정보를 판매하는 것
 (2) 저장 및 관리 - 저장 및 관리를 철저하 하지 않거나 내부자가 가지고 나는것
 (3) 이용 및 제공 - 개인정보 이용 목적을 벗어나서 사용하는 것
 (4) 파기 - 명시한 기간 이후에도 파기하지 않고 유지하는 것
 (5) p37의 "개인정보침해사례" 읽어보기

Popular posts from this blog

About bitwise and bit shift operands

We are getting to know about Java's basics. Java has the bitwise operators. (which all other advanced programming language do either) There are several operands of them. Bitwise operators & opreator Performs an and calculation between data bits ^ opreator Performs an or calculation between data bits | opreator Performs a xor calculation between data bits ~ operator Inverts all data bits Bitshift operators << operator Shifts the bit pattern to the left >> operator Shifts the bit pattern to the right >>> operator Shifts the zero to the leftmost position These are the opreators. which is never used. Even the Java Documentation says these are "less commonly used". So just make sure you 'heard' of these exists. Check out more about these operators here: Official Java Documentation

About loop statements

Well this is a very basic thing. This is about loop statements on a few programming language. First one is the language Java . That can't be easier than that. Second, C++ . Absolutely not a copy of Java one Looks extremely same. On the next, python This is a lot different from other languages. Its mostly because of python's special  language syntax, not much different from the logic. And more about python's loop, at the first line, it says for i in range(0, 6): . It seems logically, it should be in range(0, 5) to make it repeat to 5. But in python, range(x, y)  counts from x to y + 1, so keep this in mind. And python, doesn't have do {} while ()  statement. So instead, from this stackoverflow answer , there is a somewhat similar code in python. See the line 10, the while loop is infinite loop and it will run the code print k for the first time of the loop. And then, it checks the statement if k>= 5: and determines whether break the ...

Presentation about Heap Sorting

This was a presentation for Sunrin High school Programming class. View the original zip file on Google Drive (Contains the sorting visualization tool and the C code) Thanks