mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-21 19:28:02 +00:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<systems>
|
|
<!-- an example remote storage system, with a remotely exploitable vulnerability that can then be escalated to root -->
|
|
<system id="storage-server" os="linux" basebox="puppettest" url="" >
|
|
<vulnerabilities>
|
|
<vulnerability privilege="user" access="remote" type="ftp" cve=""></vulnerability>
|
|
<vulnerability privilege="user" access="remote" type="" cve=""></vulnerability>
|
|
<vulnerability privilege="root" access="local" type="" cve=""></vulnerability>
|
|
</vulnerabilities>
|
|
<!-- secure services will be provided, if matching insecure ones have not been selected -->
|
|
<services>
|
|
<service type="ftp"></service>
|
|
<service type="smb"></service>
|
|
<service type="nfs"></service>
|
|
</services>
|
|
<networks>
|
|
<network name="homeonly"></network>
|
|
</networks>
|
|
</system>
|
|
|
|
<!-- an example remote web server, with a remotely exploitable root vulnerability -->
|
|
<system id="web-server" os="linux" basebox="puppettest" url="" >
|
|
<vulnerabilities>
|
|
<vulnerability privilege="root" access="remote" type="www" cve=""></vulnerability>
|
|
</vulnerabilities>
|
|
<networks>
|
|
<network name="homeonly"></network>
|
|
</networks>
|
|
</system>
|
|
|
|
</systems>
|