1) 웹 어플리케이션 모의해킹이름설명URLwapiti웹 취약점 스캐너http://wapiti.sourceforge.net/w3af웹 취약점 스캐너http://w3af.org/category/pythonV3n0M-Scanner웹 취약점 스캐너https://github.com/v3n0m-Scanner/V3n0M-ScannerxsserXSS 취약점 스캐너http://xsser.sourceforge.net/sqlmapSQL 인젝션 점검 도구http://sqlmap.org/spiderfoot웹서버 풋프린팅 분석http://sourceforge.net/projects/spiderfoot/Parsero웹사이트 디렉터리 탐색https://github.com/behindthefirewalls/Parserodnsreco..
int scanf(const char *restrict format, ...); scanf(): keyboard buffer 입력된 값을 저장 #include int main() { char *buf; scanf("%s", buf); printf("%s\n", buf); return 0;}cs stdin(0), stdout(1), stderr(2)입력되는 값 중 첫부분에 공백 또는 개행문자를 제외하고 입력된 값을 출력(문자 다음에 오는 공백, 개행문자는 상관 없음) #include int main() { char *buf; scanf(" %s", buf); printf("%s\n", buf); return 0;}cs 0> test1> test 입력 받는 크기 지정 #include int main() { ..