목록전체 글 (155)
사자자리
2022 CodeEngn Conference 18 웹 브라우저 포렌식 (IE/MSEdge, Chrome, Firefox) https://www.youtube.com/watch?v=qyokaHpWSD0 엔드포인트 공격은 어디에서 주로 시작될까? 피싱 이메일, 문자, SNS 등을 통한 소셜 엔지니어링 공격 인증을 유도하여 계정과 암호를 탈취하거나 트로이 목마 설치 Drive-By Compromise 취약한 상태에서 악성 웹사이트 방문으로 감염 원격 서비스 VPN, Citrix, 팀뷰어, VNC 등 외부에 노출된 다양한 원격 제어 서비스를 통해 침투 다크웹에서 유출 정보를 구매하거나 일부 자산 공격 성공 후 계정과 암호를 얻어내어 활용 이동식 장치 윈도우 10 이전의 구형 시스템은 USB 연결 후 자동 실행 ..
2022 CodeEngn Conference 18 Android Static Taint Analysis 기법과 발전 방향 https://www.youtube.com/watch?v=tSmgW62lYb4 Android Static Taint Analysis Android app을 자동화 분석하는 하나의 기법 - 분석해야 할 app의 수가 점차 증가하고 있다. 정상적인 app은 변종이 없지만, 악성 app은 기존 코드의 일부만을 바꾸는 기법을 통해 자동 생성이 가능해서, 정상적인 app보다 악성 app이 더 많이 생겨나고 있다. - 그러나 분석가의 시간은 한정적이므로 자동화 탐지가 필요하다. Static Taint Analysis 기법의 한계 - Android app에 적용하기 어려움 → Flowdroid 이..
https://www.acmicpc.net/problem/1110 1110번: 더하기 사이클 0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, www.acmicpc.net #include int cycle(int num){ return (num%10)*10 + (num/10 + num%10)%10;//사이클을 한 번 돌렸을 때 나오는 새로운 수 } int main(){ int n, arg, count = 0, result = 100; scanf("%d", &n); arg = n; while (result != n){//result가 n(처음 입력받은 ..
https://www.acmicpc.net/problem/1037 1037번: 약수 첫째 줄에 N의 진짜 약수의 개수가 주어진다. 이 개수는 50보다 작거나 같은 자연수이다. 둘째 줄에는 N의 진짜 약수가 주어진다. 1,000,000보다 작거나 같고, 2보다 크거나 같은 자연수이고, 중복되 www.acmicpc.net #include int main(){ int count, n, min, max; int divisor[50]; scanf("%d", &count); for (int i = 0; i < count; i++){ scanf("%d", &divisor[i]);//약수들 입력받기 } min = divisor[0]; max = divisor[0]; for (int i = 0; i < count; i+..
가사 페이지 만들기 SongName 가사 LANA DEL REY ALBUMS body {padding: 0px; margin: 0px;} .cover {background-color: #배경색; width: 100%; height: 470px;} .cover img {position: relative; left: 50%; transform: translateX(-50%); margin-top: 20px;} .cover h1 {color: #글자색; font-size: 50px; text-align: center; font-family: "Impact"; padding-top: 15px;} .name p {color: #글자색; font-size: 50px; text-align: center; line-h..
- 객체명[key] : property - 객체에는 함수, 즉 메소드도 포함시킬 수 있다. - 메소드도 객체의 일부이기 때문에 출력된다. 출력을 원하지 않는다면 for문 안에서 조건문으로 제한을 걸어야 한다. 서로 연관된 코드들을 여러 개의 파일로 쪼개기 black.html 파일 Black color.js 파일 var Link = { setColor: function(color){ var alist = document.querySelectorAll('a'); var i = 0; while (i < alist.length){ alist[i].style.color = color; i += 1; } } } var Body = { setColor: function(color){ document.querySele..
[level5@ftz level5]$ ls -al total 80 drwxr-xr-x 4 root level5 4096 May 7 2002 . drwxr-xr-x 34 root root 4096 Sep 10 2011 .. -rw------- 1 root root 1 Jan 15 2010 .bash_history -rw-r--r-- 1 root root 24 Feb 24 2002 .bash_logout -rw-r--r-- 1 root root 224 Feb 24 2002 .bash_profile -rw-r--r-- 1 root root 151 Feb 24 2002 .bashrc -rw-r--r-- 1 root root 400 Sep 24 2000 .cshrc -rw-r--r-- 1 root root 474..
[level4@ftz level4]$ ls -al total 80 drwxr-xr-x 4 root level4 4096 May 7 2002 . drwxr-xr-x 34 root root 4096 Sep 10 2011 .. -rw------- 1 root root 1 Jan 15 2010 .bash_history -rw-r--r-- 1 root root 24 Feb 24 2002 .bash_logout -rw-r--r-- 1 root root 224 Feb 24 2002 .bash_profile -rw-r--r-- 1 root root 151 Feb 24 2002 .bashrc -rw-r--r-- 1 root root 400 Sep 24 2000 .cshrc -rw-r--r-- 1 root root 474..