뭐라
-
-
Mozilla released Firefox 3.0.11 that fixes several security issues.case Computer : 2009. 6. 14. 10:21
Mozilla released Firefox 3.0.11 that fixes several security issues. MFSA 2009-32 JavaScript chrome privilege escalation Mozilla security researcher moz_bug_r_a4 reported a vulnerability which allows scripts from page content to run with elevated privileges. Using this vulnerability, an attacker could cause a chrome privileged object, such as the browser sidebar or the FeedWriter, to interact wit..
-
windows batch file makecase Computer : 2009. 6. 11. 19:11
도움을 주는곳 : http://technet.microsoft.com/ko-kr/library/cc739502(WS.10).aspx 내가 사용중이 간단한 프로그램 재시작 배치파일 @echo off echo ------------------------------------ echo Process restart echo ------------------------------------ taskkill /F /IM ps1.exe taskkill /F /IM ps2.exe :loop1 start /d "C:\program\ps" ps1.exe IF NOT "%ERRORLEVEL%" == "0" goto ERROR1 echo 성공 : 프로세스 "ps2.exe"가 시작되었습니다. :loop2 start /d "C:..
-
windows prorocess list view commandcase Computer : 2009. 6. 11. 18:42
윈도우즈 프로세스를 커맨드창에서 보는 방법 명령어 : tasklist TASKLIST [/S 시스템 [/U 사용자 이름 [/P [암호]]]] [/M [모듈] | /SVC | /V] [/FI 필터] [/FO 형식][/NH] ex: TASKLIST TASKLIST /M TASKLIST /V TASKLIST /SVC TASKLIST /M wbem* TASKLIST /S 시스템 /FO LIST TASKLIST /S 시스템 /U domain\username /FO CSV /NH TASKLIST /S 시스템 /U 사용자 이름 /P 암호 /FO TABLE /NH TASKLIST /FI "USERNAME ne NT AUTHORITY\SYSTEM" /FI "STATUS eq running" 프로세스를 죽이는 명령어 명령..
-
[MS 보안업데이트]2009년 6월 MS 정기 보안업데이트 권고case Computer : 2009. 6. 10. 08:19
MS Office PowerPoint에서 해킹에 악용 가능한 취약점에 대한 6월 MS 정기보안업데이트가 발표되었으니, 조속히 패치하시기 바랍니다. [MS09-018] Active Directory 취약점으로 인한 원격코드실행 문제 □ 영향 o 공격자가 영향 받는 시스템에 대해 완전한 권한 획득 □ 설명 o 사용자 시스템에서 공격자가 전송한 조작된 LDAP 혹은 LDAPS 요청을 처리하는 과정에서 원격코드 실행취약점 존재 ※ LDAP : Lightweight Directory Access Protocol, 인터넷 디렉토리를 연결, 검색 및 수정하는데 사용되는 프로토콜 ※ LDAPS : LDAP over SSL, 패킷 암호화를 위해서 SSL 채널을 이용한 LDAP 통신 o 취약점 공격 시 공격자는 서버 서비..
-
[JSP] 형변환case Computer : 2009. 6. 7. 15:22
1. int --> String int i = 2; String s = Integer.toString(i); 2. String -> int String s = "1234"; int i = Integer.parseInt(s); 3. double --> String double d = 2.34; String s = Integer.toString(d); 4. String --> double String s = "2.34"; double d = Double.valueOf(s).doubleValue(); 5. float --> String float f = 0.234F; String s = Float.toString(f); 6. String --> float String s = "0.234F"; float f =..
-
[MY-SQL] 정보 대량 입력case Computer : 2009. 6. 3. 22:44
명령어 load LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name.txt' [REPLACE | IGNORE] INTO TABLE tbl_name [FIELDS [TERMINATED BY 'string'] [[OPTIONALLY] ENCLOSED BY 'char'] [ESCAPED BY 'char' ] ] [LINES [STARTING BY 'string'] [TERMINATED BY 'string'] ] [IGNORE number LINES] [(col_name_or_user_var,...)] [SET col_name = expr,...)] 대략 이러함. load data infile 'c:\\test.txt' into table 테이블명 ..