forked from ItsJokerZz/Payload_ELF_Injector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tool.cs
320 lines (287 loc) · 11.2 KB
/
Tool.cs
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
using librpc;
using Payload_ELF_Injector.Properties;
using System;
using System.Drawing;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Payload_ELF_Injector
{
public partial class Tool : Form
{
public Tool()
{
InitializeComponent();
TestConnection();
}
string Payload_File;
string Payload;
string ELF_File;
string ELF;
readonly string jkPatch_Payload = Application.StartupPath + "\\payload.bin";
readonly string jkPatch_ELF = Application.StartupPath + "\\kpayload.elf";
public static PS4RPC ps4 = new PS4RPC(Settings.Default.IP);
private string selectedProcess = null;
private ProcessList pList = null;
void TestConnection()
{
Task.Factory.StartNew(() =>
{
try
{
ps4.Connect();
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.LimeGreen;
CurrentStatus_Label.Text = "Already connected to PS4 using jkPatch!";
GetProcesses();
IP_TextBox.Enabled = false;
Port_TextBox.Enabled = false;
InjectjkPatch_Button.Enabled = false;
ConnectPS4_Button.Enabled = false;
SelectELF_Button.Enabled = true;
InjectELF_Button.Enabled = true;
Proccesses_ComboBox.Enabled = true;
RefreshProcesses_Button.Enabled = true;
});
}
catch
{
}
});
}
private void Tool_Load(object Injecter, EventArgs e)
{
IP_TextBox.Text = Settings.Default.IP;
Port_TextBox.Text = Settings.Default.PORT;
ConnectPS4_Button.Enabled = false;
InjectPayload_Button.Enabled = false;
SelectELF_Button.Enabled = false;
InjectELF_Button.Enabled = false;
Proccesses_ComboBox.Enabled = false;
RefreshProcesses_Button.Enabled = false;
}
void SocketConnection(string IP, string Payload, int port)
{
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
socket.ReceiveTimeout = 1500;
socket.SendTimeout = 1500;
socket.Connect(new IPEndPoint(IPAddress.Parse(IP), port));
socket.SendFile(Payload);
socket.Close();
}
private void IP_TextBox_TextChanged(object Injecter, EventArgs e)
{
Settings.Default.IP = IP_TextBox.Text;
Settings.Default.Save();
}
private void Port_TextBox_TextChanged(object Injecter, EventArgs e)
{
Settings.Default.PORT = Port_TextBox.Text;
Settings.Default.Save();
}
private void InjectjkPatch_Button_Click(object sender, EventArgs e)
{
jkPatch_BGWorker.RunWorkerAsync();
}
private void ConnectPS4_Button_Click(object Injecter, EventArgs e)
{
try
{
ps4.Connect();
Calling.Notify("ItsJokerZz's\nPayload + ELF Injector\n\nhas connected!\n\n\n", 210);
selectedProcess = null;
GetProcesses();
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.LimeGreen;
CurrentStatus_Label.Text = "Connected to PS4 using jkPatch!";
IP_TextBox.Enabled = false;
Port_TextBox.Enabled = false;
InjectjkPatch_Button.Enabled = false;
ConnectPS4_Button.Enabled = false;
SelectELF_Button.Enabled = true;
InjectELF_Button.Enabled = true;
Proccesses_ComboBox.Enabled = true;
RefreshProcesses_Button.Enabled = true;
});
}
catch (Exception)
{
CurrentStatus_Label.ForeColor = Color.Red;
CurrentStatus_Label.Text = "Connection to PS4 using jkPatch failed!";
}
}
private void SelectPayload_Button_Click(object Injecter, System.EventArgs e)
{
OpenPayloadDialog.ShowDialog();
Payload_File = OpenPayloadDialog.FileName;
Payload = Path.GetFileNameWithoutExtension(OpenPayloadDialog.FileName);
CurrentStatus_Label.ForeColor = Color.RoyalBlue;
CurrentStatus_Label.Text = $"{Payload}.bin has been selected!";
InjectPayload_Button.Enabled = true;
}
private void InjectPayload_Button_Click(object sender, EventArgs e)
{
Payload_BGWorker.RunWorkerAsync();
}
private void SelectELF_Button_Click(object Injecter, System.EventArgs e)
{
OpenELFDialog.ShowDialog();
ELF_File = OpenELFDialog.FileName;
ELF = Path.GetFileNameWithoutExtension(OpenELFDialog.FileName);
CurrentStatus_Label.ForeColor = Color.RoyalBlue;
CurrentStatus_Label.Text = $"{ELF}.elf has been selected!";
InjectELF_Button.Enabled = true;
}
private void Proccesses_ComboBox_SelectedIndexChanged(object Injecter, EventArgs e)
{
if (Proccesses_ComboBox.Text == " Select a Process")
{
}
else
{
selectedProcess = Proccesses_ComboBox.SelectedItem.ToString();
}
}
private void RefreshProcesses_Button_Click(object sender, EventArgs e)
{
GetProcesses();
}
private void InjectELF_Button_Click(object sender, EventArgs e)
{
ELF_BGWorker.RunWorkerAsync();
}
private void JkPatch_BGWorker_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
try
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.RoyalBlue;
CurrentStatus_Label.Text = $"Sending payload.bin to {IP_TextBox.Text}:{Port_TextBox.Text}...";
});
SocketConnection(IP_TextBox.Text, jkPatch_Payload, Convert.ToInt32(Port_TextBox.Text));
Thread.Sleep(2000);
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.Text = $"Sending kpayload.elf to {IP_TextBox.Text}:9023...";
});
SocketConnection(IP_TextBox.Text, jkPatch_ELF, 9023);
Thread.Sleep(1000);
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.LimeGreen;
CurrentStatus_Label.Text = "jkPatch injected successfully!";
Calling.Notify("Payload + ELF Injector\nCreated by ItsJokerZz\n\njkPatch injected successfully!\n\n\n", 210);
InjectjkPatch_Button.Enabled = false;
ConnectPS4_Button.Enabled = true;
});
}
catch (Exception ex)
{
if (ex.HResult == -2147467259)
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.Red;
CurrentStatus_Label.Text = "jkPatch injection failed!";
});
}
else
{
MessageBox.Show(ex.Message, ex.Source, MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
}
private void Payload_BGWorker_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
try
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.RoyalBlue;
CurrentStatus_Label.Text = $"Sending {Payload}.bin to {IP_TextBox.Text}:{Port_TextBox.Text}...";
});
SocketConnection(IP_TextBox.Text, Payload_File, Convert.ToInt32(Port_TextBox.Text));
Thread.Sleep(1000);
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.LimeGreen;
CurrentStatus_Label.Text = $"{Payload}.bin injected successfully!";
});
}
catch (Exception ex)
{
if (ex.HResult == -2147467259)
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.Red;
CurrentStatus_Label.Text = $"{Payload}.bin injection failed!";
});
}
else
{
MessageBox.Show(ex.Message, ex.Source, MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
}
private void ELF_BGWorker_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
{
try
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.RoyalBlue;
CurrentStatus_Label.Text = $"Sending {ELF}.elf to {IP_TextBox.Text}:{Port_TextBox.Text}...";
});
byte[] elf = File.ReadAllBytes(ELF_File);
Process process = pList.FindProcess(selectedProcess);
ps4.LoadElf(process.pid, elf);
Thread.Sleep(1000);
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.LimeGreen;
CurrentStatus_Label.Text = $"{ELF}.elf injected successfully!";
});
}
catch (Exception ex)
{
if (ex.HResult == -2147467259)
{
Invoke((MethodInvoker)delegate
{
CurrentStatus_Label.ForeColor = Color.Red;
CurrentStatus_Label.Text = $"{ELF}.elf injection failed!";
});
}
else
{
MessageBox.Show(ex.Message, ex.Source, MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
}
void GetProcesses()
{
try
{
Proccesses_ComboBox.Items.Clear();
pList = ps4.GetProcessList();
Process[] processes = pList.processes;
foreach (Process process in processes)
{
Proccesses_ComboBox.Items.Add(process.name);
}
}
catch (Exception)
{
CurrentStatus_Label.ForeColor = Color.Red;
CurrentStatus_Label.Text = "Unable to grab processes";
}
}
}
}