Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
Added a new template - eosDevice!
Also added a new example file for eOS devices
  • Loading branch information
AutumnRivers committed Apr 27, 2020
1 parent a99170b commit 922d090
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
18 changes: 18 additions & 0 deletions examples/EosDevice.xml
@@ -0,0 +1,18 @@
<?xml version = "1.0" encoding = "UTF-8" ?>
<Computer id="mobileNode" name="Autumn's Strudelbook" type="4" icon="DLCLaptop" security="0" allowsDefaultBootModule="true">

<ports>21,1433,6881</ports>
<portsForCrack val="2"/>

<eosDevice name="Autumn's LunarMobile" id="lunareos1" icon="ePhone2" empty="false" passOverride="vscode">
<note>Grocery list
Apples, oranges, the souls of the innocent</note>

<!-- It's important to keep everything in your files organized - so let's leave some space between tags -->

<mail username="autumn@nightmail.com" pass="watchkonohanakitan"/>

<file path="eos/logs" name="synclogs.txt">Synced with 1.2.3.4</file>
</eosDevice>

</Computer
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "hacknet-vscode",
"version": "1.2.3",
"version": "1.3.0",
"description": "Hacknet Extension development, made easy in Visual Studio Code.",
"directories": {
"example": "examples"
Expand Down
18 changes: 18 additions & 0 deletions src/Nodes.code-snippets
Expand Up @@ -329,5 +329,23 @@
"</memoryDumpFile>"
],
"description": "LABYRINTHS DLC ONLY - Memory dump file - this can be downloaded and analyzed with MemForensics.exe"
},
"eosDevice":{
"prefix": "<eosDevice>",
"scope": "xml",
"body":
[
"<eosDevice name=\"${1:Matt's ePhone 4S}\" id=\"${2:eosIntro}\" icon=\"${3:ePhone2}\" empty=\"${4|true,false|}\" ${5:passOverride=\"${6:notAlpine}\"}>",
"\t<note>${7:Note title}",
"\t${8:Note body, can be multiple lines}</note>",
"\t",
"\t$BLOCK_COMMENT_START It's important to keep everything in your files organized - so let's leave some space between tags $BLOCK_COMMENT_END",
"\t",
"\t<mail username=\"${9:matt@jmail.com}\" pass=\"${10:secretpassword}\"/>",
"\t",
"\t<file path=\"${11:eos/test}\" name=\"${12:crackedFile.txt}\">${0:These are best for cracked phones!}</file>",
"</eosDevice>"
],
"description": "This snippet will create an eOS template for you. These can only be found with eosDeviceScanner.exe."
}
}

0 comments on commit 922d090

Please sign in to comment.