[Kali Linux] Metasploit 초기설정 1. DB Connection # postgresql 시작 service postgresql start # msfdb init 초기화 msfdb init # console 접속 msfconsole 2. DB cache built # search 확인 search ms # db 상태 확인 db_status # cache rebuild db_rebuild_cache # console 나가기 exit 3. DB 자동실행 # cli에서 입력 update-rc.d postgresql enable reboot 정보보안/01. 모의해킹 5년 전
[RaspberryPi] HDD 포맷 & Mount 1. HDD 연결 확인 sudo fdisk -l # 대략적으로 아래와 같이 표시됨 Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors Disk model: Tech Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: D5E24C4E-190F-4A24-92FB-CBBFFBCB50A0 2. HDD 파티션 설정 # 위에서 경로 확인 후 입력 sudo fdisk /dev/sda #.. 취미생활/raspberryPi 6년 전
[RaspberryPi] vsftpd 설치 1. vsftpd 설치 sudo apt update -y sudo apt upgrade -y sudo apt install vsftpd -y 2. 설정 sudo vim /etc/vsftpd.conf - 기타 설정이 있으나, 아래와 같이 사용하고 있음. 추가옵션은 구글링 listen=NO # YES : Standalone(독립모드) anonymous_enable=NO #익명 접속 허용안함 local_enable=YES #로컬 사용자 접속 허용 write_enable=YES # 쓰기 허용 local_umask=022 # 업로드 시 권한 설정 xferlog_enable=YES # 로그 사용 xferlog_file=/var/log/vsftpd.log # 로그파일 사용 #xferlog_std_format=YES .. 취미생활/raspberryPi 6년 전
[RaspberryPi] 시작 취미생활을 위한 Raspberry Pi3 구입 1. 구성 현황 - SD카드 : 16GB - HDD : 1TB - NetWork : 공유기에 유선 연결 2. OS - Ubuntu Mate : 오류가 몇 개 있어, 삭제(Pi에 적용 안 되는 오류가 있음) - Ubuntu Core : 처음 세팅할 때는 없었음 - OSMC : 처음 이거로 세팅하고 잘 썼는데, 별도 Nginx 구성시 80 포트 점유 버그로 삭제 * 진짜 편하게 썼었음.. - Raspbian : 기본 OS니깐 구글링 및 포럼 참조하기가 편해서 사용 3. 활용 용도 - NAS - Torrent - Blog : 구성 당시는 Tistory 보다 자체 서버를 구축하고 싶었음 취미생활/raspberryPi 6년 전