Hacknet-Extension-Tutorial


Hacknet-Extension-Tutorial / Assets / Missions
ChronoVert  ·  2025-10-18

StartMission.xml

 1<?xml version="1.0" encoding="UTF-8"?>
 2<mission id="exampleMission" activeCheck="true" shouldIgnoreSenderVerification="false">
 3    <goals>
 4        <goal type="getadmin" target="targetComputer"/>
 5        <goal type="filedeletion" target="targetComputer" file="secret.txt" path="home"/>
 6        <goal type="fileupload" target="targetComputer" file="evidence.txt" path="home" 
 7               destTarget="playerComp" destPath="home"/>
 8    </goals>
 9    
10    <missionStart val="0">changeSong</missionStart>
11    <missionEnd val="1">addRank</missionEnd>
12    
13    <nextMission IsSilent="false">NONE</nextMission>
14    
15    <posting title="数据清除任务" reqs="" requiredRank="2">
16        需要入侵目标计算机并删除敏感文件
17    </posting>
18    
19    <email>
20        <sender>CSEC</sender>
21        <subject>紧急任务:数据清除</subject>
22        <body>我们需要你入侵目标系统并删除指定的敏感文件。完成后请上传证据文件。</body>
23        <attachments>
24            <link comp="targetComputer"/>
25            <account comp="targetComputer" user="guest" pass="password123"/>
26        </attachments>
27    </email>
28</mission>