Study 썸네일형 리스트형 iptables 명령어 옵션 정리 [iptables 명령어 옵션 정리 ] iptables -Fiptables 초기화 (flash) 더보기 Ubuntu 고정 IP 설정 [ Ubuntu 고정 IP 설정 ] # 수정해야 할 부분 /etc/network/interfaces # 추가/수정해야 할 내용 example iface eth0 inet static address 210.129.123.138 netmask 255.255.255.0 gateway 210.129.123.1 # network 210.129.123.0 # broadcast 210.129.123.255 # 수정완료 후, networking 서비스 재시작sudo /etc/init.d/networking restart 더보기 코드이그나이터 (Codeigniter) .htaccess [코드이그나이터 (Codeigniter) .htaccess] Codeigniter 에서 index.php 죽이는 방법- 경로 관련 에러 해결 가능- Codeigniter 처음 업로드 후 해야 할 것 RewriteEngine On RewriteBase / RewriteCond $1 !^(index\.php|images|captcha|data|include|uploads|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] ※Referencehttp://www.codeigniter-kr.org/lecture/view/213/page/1 더보기 함수 정리 [ 함수 정리 ] # strcpychar *strcpy(char *dest, const char *src);- 설명src 가 가르키는 문자열을 dest 가 가르키는 배열에 복사한다. src 에서 복사될때 '\0' 까지 복사됨으로 문자열이 겹쳐지지는 않는다. 이때 dest 는 src 를 모두 복사 받을수 있을정도로 충분히 커야 한다. strcpy() 는 목적지의 배열의 크기가 충분히 크지 않을경우 어떤일이 발생될지 알수가 없다. 운이 좋으면 세그먼트폴트 에러와 함께 죽겠지만, 그렇지 않고 알수 없는 작동을 할수도 있다. 이는 흔히 말하는 버퍼 오버 플로우 크래커 기술에 매우 취약하다. strcpy() 를 쓰기전에는 반드시 복사할 문자열의 크기를 검사해주어야 한다. 또는 strncpy() 를 써야 한다.- .. 더보기 [ 라즈베리파이 , Raspberry Pi ] : OSX에서 PROTA img 파일 설치하기 [ 라즈베리파이 , Raspberry Pi ] : OSX에서 PROTA img 파일 설치하기 # PROTA OS 란 ?- 무엇일까? http://thenaran.blogspot.kr/2015/01/prota-prota-pi.html- 다운로드 http://prota.info/downloads/- Manual # OSX 에서 설치하기1. 현재 열결/마운트 되어 있는 디스크의 리스트를 확인하여, 해당 디스크의 경로/이름 확인$ diskutil list2. 해당 디스크를 마운트 해제하기$ diskutil unmountdisk [디스크경로]=> $ diskutil unmountdisk /dev/disk3 (본인의 디스크의 경로 : /dev/disk3)3. 해당 디스크에 이미지 파일을 설치하기$ sudo dd i.. 더보기 [ 라즈베리파이, Raspberry Pi ] : PROTA OS http://thenaran.blogspot.kr/2015/01/prota-prota-pi.html 2015. 1. 26.[PROTA] 라즈베리파이의 새로운 운영체제, 프로타 파이(PROTA Pi)[PROTA] 라즈베리파이의 새로운 운영체제, 프로타 파이(PROTA Pi) (라즈베리파이 Raspberry Pi) - PROTA Pi OS - For IoT smart hub platform - Supported device : Raspberry Pi B, B+ - File size : 3GB Raspberry Pi + PROTA OS = PROTA Pi 프로타파이(PROTA Pi) OS는 라즈베리파이(Raspberry Pi)의 새로운 운영체제입니다. 기존 라즈베리파이 사용자들은 raspbian과 같은 운영체.. 더보기 [Malware Analysis Tutorial] 2 - Ring3 Debugging [Malware Analysis Tutorial] 2 - Ring3 Debugging # Learning Goals Efficiently master a Ring3 debugger such as Immunity Debugger Can control program execution (step in, over, breakpoints) Can monitor/change program state (registers, memory) Comments annotation in Immunity Debugger # This Lesson Can be Used as a Lab Module in : Computer architecture Operating systems Discrete Maths (number system) .. 더보기 [Malware Analysis Tutorial] 1st - VM Based Analysis Platform [Malware Analysis Tutorial] 1st - VM Based Analysis Platform # Learning Goals1. 악성코드 분석을 위한 Virtual Machine을 설정하기2. 네트워크 스니핑/모니터링 기술의 기본 익히기 # This Lesson Can be Used as a Lab Module in :1. Computer Networks & Communication Protocols2. Operating Systems # Challenge of the day : " Max++이라는 악성코드를 실행시켜보고, 어떤 네트워크 활동을 하는지 확인해보기 ! "- 다운로드 링크 http://contagiodump.blogspot.com/2010/11/zeroaccess-max-smi.. 더보기 이전 1 2 3 4 5 다음