Free Sky

FrontPage|FindPage|TitleIndex|RecentChanges| UserPreferences P RSS



본명 : 하민용

링크

암호화 부분 (철희형 참조)
http://members.tripod.com/cyber_RSA/
http://cnscenter.future.co.kr
한국 정보 통신 기술협회 (http://www.tta.or.kr) <--Seed 알고리즘 있음(한국에서 개발)
http://csrc.nist.gov
AES -->
http://csrc.nist.gov/CryptoToolkit/aes/
http://net.kyungpook.ac.kr/aes/AES.PPT


http://mcrypt.hellug.gr/ ==> cryptAPI 참조 사이트
OS 마다 암호화가 다르게 된다는 문제.. CryptAcquireContext 에서 provider가 MS_ENHANCED_PROV 여야지 OS마다 같게 나오더군요.

http://www.toandto.com/Korea/default.aspx ==> 한/영 번역 사이트

http://kltp.kldp.org/stories.php?story=02/08/24/8349366 ==>Psionic PortSentry - 포트 스캔 탐지와 능동적 방어
http://kltp.kldp.org/stories.php?story=01/08/21/3141987 ===>방화벽 구성하기(Sub-net screen 구조)와 쉘
http://www.hajesoft.com/ ==>윈도우 디바이스 드라이버

리눅스 관련

http://filewatcher.org ==> 리눅스를 위한 화일들을 검색 해준다.
http://lwn.net/ ==> 리눅스에 관한 기사등등이 있다 개인적으로는 펭귄 갤러리를 많이 이용한다.

어셈관련
http://asmlove.co.kr/

질문(누구에게? 아무나.)

혹시 CVS에 대해 자세히 알만한곳은?
아마도 http://xper.org/



메모리 누수 (segmention fault)
valgrind-2.0.0 ==> valgrind --leak-resolution=high --trace-malloc=yes --leak-check=yes --show-reachable=yes -v <실행 화일><argv>
njamd-0.8.0 ./njamd <실행화일><argv> ==> 실행 : start

커널 2.6.X 대에 컴파일


리눅스 안전모드 들어가는법
부팅 시디로 부팅후..
linux rescur 엔터.

리눅스에서 디스켓 포맷후 마운트방법
fdformat /dev/fd01440
mkfs.ext2 /dev/fd0
mount -t ext2 /dev/fd0 /mnt

C에서 정규식 쓰는 예제

/* Filename: readnum.c
 * - Read stdin and check input string is all number. */
                                                                                     
#include <stdio.h>
#include <sys/types.h>
#include <regex.h>
                                                                                     
#define MAXINPUT 255
#define REGEX_NUMBER "^[1-9][[:digit:]]*$"
                                                                                     
int main(void)
{
   int      reg_result;
   regex_t  regex;
   char     buffer[MAXINPUT];
                                                                                     
   if (reg_result = regcomp(&regex, REGEX_NUMBER, REG_EXTENDED)) {
      regerror(reg_result, &regex, buffer, MAXINPUT);
      fprintf(stderr, "failed to compile regex(%s): %s\n",
                      REGEX_NUMBER, buffer);
      exit(1);
   }
                                                                                     
   while (1) {
      fputs("input number(Ctrl+D to quit)> ", stdout);
      fflush(stdout);
      if (fgets(buffer, MAXINPUT - 1, stdin) == NULL)
         break;
      buffer[strlen(buffer) - 1] = 0;
      reg_result = regexec(&regex, buffer, 0, NULL, 0);
      if (!reg_result)
         puts("OK!");
      else if (reg_result == REG_NOMATCH)
         puts("Not matching!");
      else {
         regerror(reg_result, &regex, buffer, MAXINPUT);
         fprintf(stderr, "Regex match failed: %s\n", buffer);
         exit(1);
      }
   }
 
   regfree(&regex);
   return (0);
}

즐겨찾는 사이트
[http]http://people.kldp.org/~kabin/doc/hacker-howto.htm ==> 해커란?

어글관련

http://www.inlineworld.net/ - 처니의 즐거운인랸
http://anmasa.nazoo.net/main_frame.htm - 출장안마사 상당한 동영상 자료들있음
http://www.b3zone.co.kr/index.htm - 많은 동영상과 대회자료들이 집합
http://www.comablade.com/main.htm - 새로운 뉴스등의 번역자료가 많이 있음

Dear FreeSky

회사인가여? 아님 포괄적을 조직이나 단체 이런식으로 할까여? --아무개
아니요 리눅스 보안관련 프로젝트를 하는 학생 팀입니다 ^^

ThisIsNotYourNotepad. 개인위키를 만들면 좋을 것 같습니다. --최종욱




"; if (isset($options[timer])) print $menu.$banner."
".$options[timer]->Write()."
"; else print $menu.$banner."
".$timer; ?> # # ?>