|
|
(One intermediate revision by the same user not shown) |
Line 17: |
Line 17: |
| |source=https://github.com/yifanlu/VitaDefiler | | |source=https://github.com/yifanlu/VitaDefiler |
| }} | | }} |
| '''VitaDefiler''' is an RPC for Vita that supports ARM userland code execution.
| | VitaDefiler is basically required to run your homebrews on your Vita through the [[Rejuvenate Vita|Rejuvenate]] hack. |
|
| |
|
| ==VitaDefiler – What is it?==
| | It is one of the reasons you need your PS vita to be connected to your PC (either via USB or Wifi) in order to run homebrews. Of course, now we're no longer use this exploit. |
| VitaDefiler is basically required to run your homebrews on your Vita through the [[Rejuvenate Vita|Rejuvenate]] hack. It is one of the reasons you need your PS vita to be connected to your PC (either via USB or Wifi) in order to run homebrews. Of course, now we're no longer use this exploit.
| |
|
| |
|
| == How To Build VitaDefiler ==
| | ==External links== |
| * Open <code>VitaDefiler.sln</code> in Visual Studio.
| | * GitHub - https://github.com/yifanlu/VitaDefiler |
| * In <code>Solution Explorer</code> right click <code>VitaDefiler / Properties</code>.
| |
| * Select <code>Reference Paths</code>, then add <code>C:\Program Files (x86)\SCE\PSM\tools\PsmStudio\AddIns\MonoDevelop.Debugger.Soft\</code> and <code>C:\Program Files (x86)\SCE\PSM\tools\PsmStudio\bin\</code>.
| |
| * You can now press F5 to build the project.
| |
| | |
| === Compiling ===
| |
| You will need PSM Studio and Visual Studio installed.
| |
| | |
| == VitaDefiler's Usage ==
| |
| | |
| First, copy library dependencies to the <code>VitaDefiler/bin/Debug</code> folder.
| |
| | |
| * Copy <code>Mono.Cecil.dll</code> from <code>C:\Program Files (x86)\SCE\PSM\tools\PsmStudio\bin</code>
| |
| * Copy <code>Mono.Debugger.Soft.dll</code> from <code>C:\Program Files (x86)\SCE\PSM\tools\PsmStudio\AddIns\MonoDevelop.Debugger.Soft</code>
| |
| * Copy all files from <code>C:\Program Files (x86)\SCE\PSM\tools\lib</code>
| |
| | |
| Open <code>PSM Dev</code> application on the Vita. Run <code>cmd.exe</code> and navigate to <code>VitaDefiler</code> folder. Execute <code>bin\Debug\VitaDefiler.exe VitaDefilerClient\bin\Release\VitaDefilerClient.psdp</code>. Vita should now run the <code>VitaDefilerClient</code> app and after a few seconds you will get a RPC shell.
| |
| | |
| ==Screenshot==
| |
| [[image:vitadefilervita.jpg|600px]]
| |
| | |
| == VitaDefilerClient ==
| |
| Open <code>cmd.exe</code> as Administrator and execute <code>setx MSBUILDENABLEALLPROPERTYFUNCTIONS 1</code>.
| |
| | |
| Run "Developer Command Prompt for VS20XX", navigate to the <code>VitaDefilerClient</code> folder and execute <code>ilasm /output:NativeFunctions.dll /dll NativeFunctions.cil</code>.
| |
| | |
| Open <code>VitaDefilerClient.sln</code> in PSM Studio and hit F5.
| |
| | |
| If you get error about <code>NativeFunctions</code> not being resolved (e.g. <code>Error CS0246: The type or namespace name 'NativeFunctions' could not be found [...]</code>):
| |
| | |
| * Right click <code>VitaDefilerClient / References</code> on the left, select <code>Edit References...</code>
| |
| * <code>Edit References</code> window will open. On the right select <code>NativeFunctions</code> and press Remove (trash icon in top right corner).
| |
| * Switch to the <code>.Net Assembly</code> tab, navigate to <code>VitaDefiler/VitaDefilerClient</code>, select <code>NativeFunctions.dll</code> and press <code>Add</code>. The project should build now.
| |
| | |
| == External links == | |
| * Github - https://github.com/yifanlu/VitaDefiler | |