Linux
-
Backtrack IP 설정Linux 2014. 9. 20. 22:02
명령어로 IP 변경 root@bt:~# ifconfig eth0 192.168.1.112/24 root@bt:~# route add default gw 192.168.1.1 root@bt:~# echo nameserver 8.8.8.8 > /etc/resolv.conf 설정파일 변경으로 IP 변경 /etc/network/interfaces 수정 # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback #..
-
VMware Real로 인식시키는 법Linux 2013. 4. 24. 17:26
대상이 되는 vmx 확장자를 가진 파일을 열어서 상황에 따라 다음 내용을 추가해줍니다. isolation.tools.getPtrLocation.disable = "TRUE" isolation.tools.setPtrLocation.disable = "TRUE" isolation.tools.setVersion.disable = "TRUE" isolation.tools.getVersion.disable = "TRUE" monitor_control.disable_directexec = "TRUE" monitor_control.disable_chksimd = "TRUE" monitor_control.disable_ntreloc = "TRUE" monitor_control.disable_selfmod = "TRUE..
-
Backtrack5 metasploit 업데이트 후 오류Linux 2013. 2. 16. 15:35
backtrack5에 있는 metasploit을 쓰는데...msfupdate로 업데이트를 한번 하고 나니 아래와 같은 syntax error를 찍찍 뱉으면서 실행이 안된다....root@bt:~# msfconsole/opt/metasploit/ruby/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': /opt/metasploit/msf3/lib/msf/util/exe.rb:2: syntax error, unexpected tLSHFT (SyntaxError)
-
Ubuntu 재부팅시 resolv.conf 초기화 될때Linux 2012. 8. 2. 14:58
우분투에서 /etc/resolv.conf를 수정해 dns를 이용하는데... 재부팅 할때마다 자꾸 resolv.conf 파일이 초기화된다. 짜증나서 검색해보니 역시 고칠 방법이 있다. 1. 아래 파일을 수정하자 $ sudo vim /etc/resolvconf/resolv.conf.d/head # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 168.126.63.1 # 이 한줄을 추가해준다. 2. 서비스 재시작 $ sudo service resolvconf restart
-
Ubuntu vsftpd chroot 에러Linux 2012. 7. 30. 15:17
vsftpd 가동 후 보안을 위해 chroot 옵션을 활성화 시켰는데... 아래와 같은 에러를 찍찍 뱉으며 접속이 안된다. vsftpd: refusing to run with writable root inside chroot() 검색해보니 권한 문제인듯 하다. 가뿐하게 아래의 명령어로 홈 디렉토리 권한을 수정해주자.※ user는 계정명에 따라 바뀔수도 있다. 접속하고자 하는 계정의 홈 디렉토리를 입력해주자.$ sudo chmod a-w /home/user 이렇게 하면 해당 디렉토리에 w(write) 권한이 빠지고, 권한 충돌이 일어나지 않으면서 접속이 가능하다.대신 w가 안되기 때문에 파일 업로드가 안되는데....이럴때 하나의 꼼수로 홈 디렉토리 밑에 FTP라는 디렉토리를 하나 만들고chmod로 권한을 ..
-
Ubuntu FTP 설치 & 설정(vsftpd)Linux 2012. 7. 20. 18:07
우분투에 파일서버를 구축하기 위해서는 ftp를 설치해야 하는데, 여러 종류가 있지만 그중 vsftpd가 좋은 듯 하다. 그 이름부터 찬란한 Very Secure FTP Demon 되시겠다. 설치방법은 늘 그렇듯 상당히 간단하다. 1. 설치 $ sudo apt-get install vsftpd 2. 설정 보안을 위해 몇가지 설정을 변경하자. FTP는 기본적으로 21번 포트인데. brute-force 공격을 대비해 원하는 포트번호로 변경하고, 인가되지 않은 사용자인 anonymous접속을 차단하자. 또 사용자의 기본 홈 디렉토리 밖으로 나가지 못하는 설정또한 하자. 설정파일은 아래와 같이 편집하면 된다. $ sudo vim /etc/vsftpd.conf listen_port=9021 # 이 한줄을 추가하자...