lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
 
## This file is part of Scapy
## This program is published under a GPLv2 license
 
"""
Basic TLS server. A preferred ciphersuite may be provided as first argument.
 
For instance, "sudo ./server_simple.py c014" will start a server accepting
any TLS client connection. If provided, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
will be preferred to any other suite the client might propose.
"""
 
import os
import sys
 
basedir = os.path.abspath(os.path.join(os.path.dirname(__file__),"../../"))
sys.path=[basedir]+sys.path
 
from scapy.layers.tls.automaton_srv import TLSServerAutomaton
 
 
if len(sys.argv) == 2:
    pcs = int(sys.argv[1], 16)
else:
    pcs = None
 
t = TLSServerAutomaton(mycert=basedir+'/test/tls/pki/srv_cert.pem',
                       mykey=basedir+'/test/tls/pki/srv_key.pem',
                       preferred_ciphersuite=pcs)
t.run()