다음의 소프트웨어보안약점은 무엇인가?
1 : public static void main(String args[]) throws IOException {
2 :
3 : String cmd = args[0];
4 : Process ps = null;
5 : try {
6 : ps = Runtime.getRuntime().exec(cmd);- 1SQL Injection
- 2CSRF
- 3운영체제 명령어 삽입
- 4코드삽입
다음의 소프트웨어보안약점은 무엇인가?
1 : public static void main(String args[]) throws IOException {
2 :
3 : String cmd = args[0];
4 : Process ps = null;
5 : try {
6 : ps = Runtime.getRuntime().exec(cmd);