Communities(Korean) 본 게시판 글의 외부 링크는 허용하나, 무단 복제는 법으로 금지되어 있습니다.

Total Articles 494
No.
Subject
Author
Notice 컴퓨터 공부를 시작하는 분들을 위하여 19
[Level:16]gilgil
1809535 1 Oct 25, 2009
Notice 프리웨어 라이브러리 사용할 때의 예의에 대해서 5
[Level:16]gilgil
1361788   Feb 06, 2012
434 BoB Project 2 file
[Level:16]gilgil
87577   Dec 21, 2015
Audio Modulation Reverter 변조된 음성을 다시 복원시킬 수 있는 장비 개발( project-amr.odp ) Audio Modulation Reverter from gilgil1973 Crack Online for Bob 각종 brute-force 행위에 대한 요청을 클라이언트로...  
433 Qt Programming imagefile
[Level:16]gilgil
63241   Dec 21, 2015
Qt Diagram 기본 control 익히기 [PushButton] void clicked() 에서 QMessageBox를 이용하여 "hello world"를 출력해 본다. [Check Box] isChecked(), setChecked() function을 이해한다. [List Widget] orange, apple을...  
432 [qt] GTimeDiff file
[Level:16]gilgil
62568   Dec 20, 2015
This video shows how to use C++ template based GTimeDiff module when you'd like to figure out which function takes much time. 어느 부분에서 시간을 많이 잡아 먹는지 알아 내는데 유용한 C++ template 기반의 ...  
431 [qt] How to use gmem file
[Level:16]gilgil
61852   Dec 16, 2015
This video shows how to use gmem library for debugging memory allocation and deallocation. gmem을 이용하여 memory leak을 탐지하고, vector 및 list container를 이용하는 과정에서 발생하는 memory 할당과 해제를 디버깅...  
430 [qt] Using QtCreator application with a existing C++ project file
[Level:16]gilgil
62560   Dec 16, 2015
This video shows how to use QtCreator application with a existing C++ based project. QtCreator를 이용해서 기존의 C++ project의 빌드 및 디버깅을 하는 예제입니다. using_qt_creator_wit-h_existing_project.m-p4  
429 [net] netfilter tutorial file
[Level:16]gilgil
61666   Dec 07, 2015
netfilter [download] http://netfilter.org- 사이트에 가서 아래 항목을 다운받는다. libmnl libnfnetlink libnetfilter_queue [build] 각각의 모듈을 다음과 같은 명령어를 통하여 빌드 및 설치를 한다. cd <directory> ...  
428 [동영상] WPA2 패킷 분석하기
[Level:16]gilgil
60575   Nov 01, 2015
https://www.youtube.-com/watch?v=9TSJLaIe3GA 기존에 없었던 취약점을 알아 낸 것은 아니고 원래 WPA, WPA2 규약이 이렇제 저렇게 생겨 먹었다는 것만 알면 누구나 구현할 수 있는 예제입니다. 물론 그러한 특징을 알아 내고...  
427 Android에서 C/C++ 코드로 "hello world" 찍기 1 imagefile
[Level:16]gilgil
79892   Oct 24, 2015
예전에 했던 것인데 까 먹고, 다시 했는데 또 까 먹고... 정리 차원에서 글을 적어 봅니다. 제목은 Android에서 "hello world" 찍기 입니다. 일단 개발 환경은 OS : ubuntu 14.04 TLS로 가정하겠습니다. PC와 Android폰을...  
426 [net] netfilter_queue
[Level:16]gilgil
60468   Oct 15, 2015
packet의 read 과정과 verdict 과정을 thread를 이용하여 분리한 예제. https://home.regit.o-rg/netfilter-en/using-nfqueue-and-libnetfilter_queue/  
425 컨퍼런스에서 좋은 발표를 하는 방법
[Level:16]gilgil
62468   Oct 03, 2015
그간 생각해 온 "컨퍼런스에서 좋은 발표를 하는 방법"을 정리해 보고자 합니다. 많은 것보다는 하나를 알리는데 중점을 둬라. 컨퍼런스의 발표 내용을 예습/복습하는 사람은 거의 없습니다. 제한된 시간내에 많은 내용을 전달하려...  
424 네트워크 강의 자료 file
[Level:16]gilgil
72705   Jul 06, 2015
winpcap_sample.zip 네트워크 취약점 분석과 보안(2013.11.04).zip Snoop50(2010.03.21).-cab send_arp(2014.03.15)-.zip [Network Forensic] snort_and_suricata.z-ip suricata.tar.gz (sample) [Appendix]  
423 [c++] core dump test(divide_by_zero_test) file
[Level:16]gilgil
69820   May 06, 2015
divide_by_zero_test.-tar.gz  
422 [c++] string type을 switch문 case의 expression으로 사용하기
[Level:16]gilgil
95185   Apr 20, 2015
Person이라는 구조체가 있으며, 이 구조체는 여러개의 member를 포함하고 있습니다. struct Person { int age; string name; string country; string address; string tel; // ... 외부의 설정 파일(ini, xml, json 등)에 의해...  
421 [c++] rvalue test file
[Level:16]gilgil
69387   Jan 15, 2015
[code] #include <stdio.h> class Buf { char buf[256]; }; Buf foo() { Buf buf; printf("%p Buf foo()\n", &buf); return buf; } void param(Buf buf) // (A) { printf("%p param(Buf buf)\n", &buf); } void param_r(Buf& buf) // (B...  
420 [linux] ip 추가 삭제
[Level:16]gilgil
77206   Dec 24, 2014
[추가] ifconfig eth1:1 1.1.1.1 ifconfig eth1:2 2.2.2.2 ifconfig eth1:3 3.3.3.3 [삭제] ifconfig eth1:1 down ifconfig eth1:2 down ifconfig eth1:3 down  
419 [c++] IP 클래스 만들기
[Level:16]gilgil
72180   Dec 23, 2014
IP(IPv4)는 내부적으로 4바이트의 정수(uint32_t)를 가지고 있습니다. 따라서 일반적으로 IP 형을 나타낼 때 uint32_t 타입을 많이 사용하게 됩니다. 하지만 IP를 나타내는 데 있어 클래스를 사용하지 않고 uint32_t 타입을 사...  
418 [network] ipv6 프로그래밍
[Level:16]gilgil
70495   Dec 11, 2014
http://www.joinc.co.-kr/modules/moniwiki/-wiki.php/Site/TCP_IP-/IPv6/IPv6Prog  
417 [linux] 명령어 반복 실행
[Level:16]gilgil
71067   Nov 12, 2014
[syntax] while true; do <command>; sleep 1; done; [example] while true; do ls; sleep 1; done;  
416 vdream_c_link_test.tar.gz file
[Level:16]gilgil
73175   Oct 24, 2014
링크를 걸 때 main.o, jlog.o 등을 먼저 써 주고 lib 파일 링크는 나중에 써 줘야 link error가 나지 않는다. download : vdream_c_link_test.t-ar.gz  
415 Ubuntu에서 QtCreator 실행시 OpenGL 에러 나는 경우.
[Level:16]gilgil
75677   Oct 07, 2014
apt-get install libgl-dev http://qt-project.org/forums/v-iewthread/43315  


XE Login