-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMain.cs
1125 lines (1075 loc) · 47.6 KB
/
Main.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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//Copyright 2018 josephwalden
//Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
using jLib;
using Microsoft.VisualBasic.FileIO;
using SevenZipExtractor;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using WinSCP;
namespace Tweak_Installer
{
public partial class Main : Form
{
static bool verbose = false, update = true, enabled = false;
//md5 function from https://blogs.msdn.microsoft.com/csharpfaq/2006/10/09/how-do-i-calculate-a-md5-hash-from-a-string/
public string CalculateMD5Hash(string input)
{
MD5 md5 = MD5.Create();
byte[] inputBytes = Encoding.ASCII.GetBytes(input);
byte[] hash = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("X2"));
}
return sb.ToString();
}
public Main()
{
InitializeComponent();
}
private void select_Click(object sender, EventArgs e)
{
openFileDialog.Multiselect = true; //allow file dialog to select multiple files
openFileDialog.Filter = "Tweaks|*.deb;*.zip;*.ipa"; //set valid files to deb, zip or ipa
tweaks.Clear(); //clear current list of debs
var f = openFileDialog.ShowDialog(); //open the file dialog
switch (f)
{
case DialogResult.OK:
{
enabled = true; //enable install / uninstall functions
foreach (string i in openFileDialog.FileNames)
{
tweaks.Add(i); //add each file to the deb list
}
break;
}
default:
enabled = false;
break;
}
}
private void install_Click(object sender, EventArgs e)
{
emptyDir("files"); //empty temporary directory
if (!enabled)
{
MessageBox.Show("Please select a deb, ipa or zip first");
return;
}
clean(); //clear temporary files / directories
getOptions(); //get options
session = getSession(host.Text, "root", pass.Text, int.Parse(port.Text)); //open an ssh session
getJailbreakSpecificOptions(session); //get options specific to certain jailbreaks - e.g. sign binaries with platform-binary on Libre / Electra
foreach (string tweak in tweaks)
{
clean(); //clear temp files from previous packages / apps
if (tweak.Contains(".deb")) //if file is a deb
{
if (rc) //if full jailbreak
{
string file = CalculateMD5Hash(tweak) + ".deb"; //calculate hash to use as filename
if (!session.FileExists("/tweakinstaller")) session.CreateDirectory("/tweakinstaller"); //create folder to store debs
session.PutFiles(tweak, "/tweakinstaller/" + file); //move deb file to tweak installer directory
var i = session.ExecuteCommand("dpkg -i /tweakinstaller/" + file); //install using dpkg
session.RemoveFiles("/tweakinstaller/" + file); //delete deb
if (i.IsSuccess)
{
log("Installed " + tweak + " with dpkg"); //log sucess
}
else
{
log(i.ErrorOutput); //log failure
}
}
else
{
extractDeb(tweak); //extract deb for manual installation
}
}
else if (tweak.Contains(".ipa")) //if file is an ipa
{
if (rc) //if full jailbreak
{
log("Installing IPA with AppSync");
if (!session.FileExists("/tweakinstaller")) session.CreateDirectory("/tweakinstaller"); //create tweakinstaller directory if it doesn't exist
if (session.FileExists("/usr/bin/appinst")) //check for appinst
{
string file = CalculateMD5Hash(tweak) + ".ipa"; //calculate hash to use as filename
session.PutFiles(tweak, "/tweakinstaller/" + file); //move ipa to tweakinstaller dir
var i = session.ExecuteCommand("appinst /tweakinstaller/" + file); //use appinst to install ipa
session.RemoveFiles("/tweakinstaller/" + file); //remove ipa
if (i.IsSuccess)
{
log("Installed IPA"); //log success
}
else
{
log(i.ErrorOutput); //log failure
}
}
else
{
log("Couldn't install ipa. Please install appinst and AppSync from Karen's repo (https://cydia.angelxwind.net/)");
}
}
else
{
extractIPA(tweak); //extract ipa for manual installation
}
}
else if (tweak.Contains(".zip")) //if file is a zip
{
extractZip(tweak); //try to extract zip file
}
}
if (convert) convertTweaks(); //if tweaks need converting to a different format (e.g. for electra 0.X) convert them
getFiles(); //get list of files in tweaks
installFiles(session); //install files over ssh
log(""); //log newline
}
private void Uninstall_Click(object sender, EventArgs e)
{
emptyDir("files"); //remove temporary files
if (!enabled)
{
MessageBox.Show("Please select a deb, ipa or zip first");
return;
}
getOptions(); //get options
session = getSession(host.Text, "root", pass.Text, int.Parse(port.Text)); //open ssh session
getJailbreakSpecificOptions(session); //get tool specific options (e.g. whether or not files should be signed differently)
foreach (string tweak in tweaks)
{
clean(); //remove temporary files & directories
if (tweak.Contains(".deb"))
{
if (rc) //if full jailbreak
{
var i = session.ExecuteCommand("dpkg -r " + getPkgID(tweak)); //get package id and remove using dpkg
log("Removed " + tweak + " with dpkg"); //log success
}
else
{
extractDeb(tweak); //extract files for uninstallation
}
}
else if (tweak.Contains(".ipa")) //if an ipa
{
if (rc)
{
log("Can't remove IPA on this version of Electra, please uninstall via SpringBoard"); //can't remove apps via ssh
}
else
{
extractIPA(tweak); //extract apps files for uninstallation
}
}
else if (tweak.Contains(".zip")) //if a zip
{
extractZip(tweak); //try to extract zip
}
}
if (convert) convertTweaks(); //if files need to be converted for new format convert them
if (File.Exists("prerm")) //check for prerm script
{
if (verbose) log("Running prerm script");
session.PutFiles("prerm", "script");
session.ExecuteCommand("./script && rm script");
//run prerm script
}
getFiles(); //get list of files to remove
uninstallFiles(session); //uninstall files over ssh
log(""); //log newline
}
private void Main_Load(object sender, EventArgs e)
{
if (Environment.GetCommandLineArgs().Contains("dont-update")) update = false; //if dont-update in command line args set update to false
//check for updates
if (update)
{
try
{
using (WebClient client = new WebClient())
{
string current = File.ReadAllText("version.txt"); //read version.txt for current version
string version = client.DownloadString("https://raw.githubusercontent.com/josephwalden13/tweak-installer/master/bin/Debug/version.txt"); //get latest version from my repo
if (current != version) //if they don't match show update prompt
{
var f = MessageBox.Show(caption: "Update Available!", text: ($"Version {version.Replace("\n", "")} released. Please download it from https://github.com/josephwalden13/tweak-installer/releases\nWould you like to update?"), buttons: MessageBoxButtons.YesNo);
if (f == DialogResult.Yes)
{
Process.Start("https://github.com/josephwalden13/tweak-installer/releases");
}
}
}
}
catch { }
}
if (!File.Exists("settings")) //if settings file doesn't exist create a default one
{
string[] def = new string[] { "192.168.1.1", "22", "" };
File.WriteAllLines("settings", def);
}
string[] data = File.ReadAllLines("settings"); //get ssh settings
for (int i = 0; i != data.Length; i++)
{
data[i] = data[i].Split('#')[0];
}
host.Text = data[0];
port.Text = data[1];
pass.Text = data[2];
if (port.Text == "" || port.Text == "root" /*(port is the same line as user used to be so if port==root reset it)*/)
{
port.Text = "22";
}
}
private void host_TextChanged(object sender, EventArgs e)
{
string[] data = { host.Text, port.Text, pass.Text };
File.WriteAllLines("settings", data);
}
private void pass_TextChanged(object sender, EventArgs e)
{
string[] data = { host.Text, port.Text, pass.Text };
File.WriteAllLines("settings", data);
}
void respring_Click(object sender, EventArgs e)
{
session = getSession(host.Text, "root", pass.Text, int.Parse(port.Text)); //get ssh session
log("Respringing");
session.ExecuteCommand("killall -9 SpringBoard"); //kill springboard
log("Done");
log("");
session.Close();
}
private void uicache_Click(object sender, EventArgs e)
{
session = getSession(host.Text, "root", pass.Text, int.Parse(port.Text)); //get ssh session
log("Running uicache");
session.ExecuteCommand("uicache"); //run uicache
session.ExecuteCommand("Done");
log("");
session.Close();
}
private void error_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/josephwalden13/tweak-installer/issues");
}
private void debslnk_Click(object sender, EventArgs e)
{
Process.Start("http://s0n1c.org/cydia/");
}
private void reddit_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://www.reddit.com/user/josephwalden/");
}
private void creator_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://www.reddit.com/user/josephwalden/");
}
private void ui_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://www.reddit.com/user/brnnkr/");
}
private void twitter_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://twitter.com/jmw_2468");
}
private void github_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("https://github.com/josephwalden13/");
}
private void paypal_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("http://paypal.me/JosephWalden");
}
private void autolabel_Click(object sender, EventArgs e)
{
auto.Checked = !auto.Checked;
}
private void port_TextChanged(object sender, EventArgs e)
{
string[] data = { host.Text, port.Text, pass.Text };
File.WriteAllLines("settings", data);
}
private void version_Click(object sender, EventArgs e)
{
verbose = true;
}
private void terminal_Click(object sender, EventArgs e)
{
Process.Start("putty.exe", host.Text + ":" + port.Text + " -l root -pw " + pass.Text);
}
//tweak installer library
public List<string> tweaks = new List<string>(), skip = new List<string>();
public string[] data;
public bool uicache = false, jtool = false, convert = false, dont_sign = false, dont_del_empty_dirs = false, rc = false;
public Crawler crawler;
public string user;
public Session session;
public string convert_path(string i, bool unix = false)
{
if (!unix)
{
return i.Replace("\\", "/");
}
else
{
return i.Replace("\\", "/").Replace(" ", "\\ ").Replace("(", "\\(").Replace(")", "\\)").Replace("'", "\\'").Replace("@", "\\@");
}
}
public void createDirIfDoesntExist(string path, bool verbose = false)
{
if (!Directory.Exists(path))
{
if (verbose) log("Creating directory " + path);
Directory.CreateDirectory(path);
if (verbose) log("Created directory " + path);
}
else
{
if (verbose) log("No need to create " + path + " as it already exists");
}
}
public void deleteIfExists(string path, bool verbose = false)
{
if (verbose) log("Searching for " + path);
if (File.Exists(path))
{
if (verbose) log("Deleting " + path);
File.Delete(path);
if (verbose) log("Deleted " + path);
}
}
public void emptyDir(string path, bool verbose = false)
{
if (Directory.Exists(path))
{
Directory.Delete(path, true);
if (verbose) log("Deleted " + path);
}
Directory.CreateDirectory(path);
if (verbose) log("Created directory " + path);
}
public void moveDirIfPresent(string source, string dest, string parent = null, bool verbose = false)
{
if (Directory.Exists(source))
{
if (verbose) log("Found " + source);
if (parent != null)
{
createDirIfDoesntExist(parent);
if (verbose) log("Created " + parent);
}
FileSystem.MoveDirectory(source, dest, true);
if (verbose) log("Moved " + source + " to " + dest);
}
}
public void log(string s)
{
if (!File.Exists("log.txt")) File.Create("log.txt").Close();
try
{
File.AppendAllText("log.txt", s + Environment.NewLine);
Console.WriteLine(s);
output.Text += s + Environment.NewLine;
output.SelectionStart = output.Text.Length;
output.ScrollToCaret();
}
catch
{
Thread.Sleep(1000);
log(s);
}
}
public void getOptions()
{
skip = File.Exists("skip.list") ? File.ReadAllLines("skip.list").ToList() : new List<string>(); //get files to skip
}
public void extractZip(string path)
{
log("Extracting Zip " + path);
try
{
using (ArchiveFile archiveFile = new ArchiveFile(path))
{
if (verbose) log("Extracting zip");
archiveFile.Extract("temp");
if (verbose) log("Extracted zip");
}
}
catch (Exception e)
{
log("Not a valid ZIP archive / Access Denied");
throw e;
}
if (Directory.Exists("temp\\bootstrap\\"))
{
log("Found bootstrap");
if (Directory.Exists("temp\\bootstrap\\Library\\SBInject\\"))
{
createDirIfDoesntExist("files\\usr\\lib\\SBInject");
foreach (string file in Directory.GetFiles("temp\\bootstrap\\Library\\SBInject\\"))
{
File.Move(file, "files\\usr\\lib\\SBInject\\" + new FileInfo(file).Name);
}
foreach (string file in Directory.GetDirectories("temp\\bootstrap\\Library\\SBInject\\"))
{
Directory.Move(file, "files\\usr\\lib\\SBInject\\" + new DirectoryInfo(file).Name);
}
Directory.Delete("temp\\bootstrap\\Library\\SBInject", true);
}
moveDirIfPresent("temp\\bootstrap\\Library\\Themes\\", "files\\bootstrap\\Library\\Themes\\");
foreach (string dir in Directory.GetDirectories("temp"))
{
FileSystem.MoveDirectory(dir, "files\\" + new DirectoryInfo(dir).Name, true);
}
foreach (string file in Directory.GetFiles("temp"))
{
File.Copy(file, "files\\" + new FileInfo(file).Name, true);
}
}
else
{
log("Unrecognised format. Determining ability to install");
List<string> exts = new List<string>();
List<string> directories = new List<string>();
foreach (string dir in Directory.GetDirectories("temp", "*", System.IO.SearchOption.AllDirectories))
{
directories.Add(new DirectoryInfo(dir).Name);
}
if (directories.Contains("bootstrap"))
{
log("Found bootstrap");
foreach (string dir in Directory.GetDirectories("temp", "*", System.IO.SearchOption.AllDirectories))
{
if (new DirectoryInfo(dir).Name == "bootstrap")
{
createDirIfDoesntExist("files\\bootstrap\\");
FileSystem.CopyDirectory(dir, "files\\bootstrap");
moveDirIfPresent("files\\bootstrap\\SBInject", "files\\bootstrap\\Library\\SBInject", "files\\bootstrap\\Library\\SBInject");
break;
}
}
}
else
{
foreach (string i in Directory.GetFiles("temp"))
{
string ext = new FileInfo(i).Extension;
if (!exts.Contains(ext)) exts.Add(ext);
}
if (exts.Count == 2 && exts.Contains(".dylib") && exts.Contains(".plist"))
{
log("Substrate Addon. Installing");
createDirIfDoesntExist("files\\usr\\lib\\SBInject");
foreach (string i in Directory.GetFiles("temp"))
{
File.Copy(i, "files\\usr\\lib\\SBInject\\" + new FileInfo(i).Name, true);
}
moveDirIfPresent("files\\Library\\PreferenceBundles\\", "files\\bootstrap\\Library\\PreferenceBundles\\");
moveDirIfPresent("files\\Library\\PreferenceLoader\\", "files\\bootstrap\\Library\\PreferenceLoader\\");
moveDirIfPresent("files\\Library\\LaunchDaemons\\", "files\\bootstrap\\Library\\LaunchDaemons\\");
}
else
{
MessageBox.Show("Unsafe to install. To install this tweak you must do so manually. Press enter to continue...");
Environment.Exit(0);
}
}
}
}
public void extractIPA(string path)
{
clean();
log("Extracting IPA " + path);
try
{
using (ArchiveFile archiveFile = new ArchiveFile(path))
{
if (verbose) log("Extracting payload");
archiveFile.Extract("temp");
}
createDirIfDoesntExist("files\\Applications");
foreach (string app in Directory.GetDirectories("temp\\Payload\\"))
{
if (verbose) log("Moving payload");
Directory.Move(app, "files\\Applications\\" + new DirectoryInfo(app).Name);
if (verbose) log("Moved payload");
}
}
catch (Exception e)
{
log("Not a valid IPA / Access Denied");
throw e;
}
}
public void extractDeb(string path)
{
clean();
log("Extracting " + path);
try
{
using (ArchiveFile archiveFile = new ArchiveFile(path))
{
if (verbose) log("Extracting data.tar.lzma || data.tar.gz");
archiveFile.Extract("temp");
if (verbose) log("Extracted");
}
if (verbose) log("Extracting data.tar");
var p = Process.Start(@"7z.exe", "e " + "temp\\data.tar." + (File.Exists("temp\\data.tar.lzma") ? "lzma" : "gz") + " -o.");
if (verbose) log("Waiting for subprocess to complete");
p.WaitForExit();
if (verbose) log("Extracting control file");
p = Process.Start(@"7z.exe", "e " + "temp\\control.tar.gz -o.");
p.WaitForExit();
if (verbose) log("Successfully extracted data.tar");
using (ArchiveFile archiveFile = new ArchiveFile("data.tar"))
{
if (verbose) log("Extracting deb files");
archiveFile.Extract("files");
if (verbose) log("Extracted");
}
using (ArchiveFile archiveFile = new ArchiveFile("control.tar"))
{
archiveFile.Extract(".");
}
Dictionary<string, string> control = new Dictionary<string, string>();
foreach (string i in File.ReadAllLines("control"))
{
var j = i.Split(':');
if (j.Length < 2) continue;
control.Add(j[0].ToLower().Replace(" ", ""), j[1]);
}
if (Directory.Exists("files\\Applications") && control.ContainsKey("skipsigning"))
{
using (ArchiveFile archiveFile = new ArchiveFile("data.tar"))
{
archiveFile.Extract("temp");
}
foreach (string app in Directory.GetDirectories("temp\\Applications\\"))
{
File.Create(app.Replace("temp\\", "files\\") + "\\skip-signing").Close();
}
}
clean();
}
catch (Exception e)
{
log("Not a valid deb file / Access Denied");
throw e;
};
}
string getPkgID(string path)
{
clean();
try
{
using (ArchiveFile archiveFile = new ArchiveFile(path))
{
archiveFile.Extract("temp");
}
Process p = Process.Start(@"7z.exe", "e " + "temp\\control.tar.gz -o.");
p.WaitForExit();
using (ArchiveFile archiveFile = new ArchiveFile("control.tar"))
{
archiveFile.Extract(".");
}
Dictionary<string, string> control = new Dictionary<string, string>();
foreach (string i in File.ReadAllLines("control"))
{
var j = i.Split(':');
if (j.Length < 2) continue;
control.Add(j[0].ToLower().Replace(" ", ""), j[1]);
}
clean();
return control["package"];
}
catch (Exception e)
{
log("Not a valid deb file / Access Denied");
throw e;
};
}
public void clean()
{
deleteIfExists("JMWCrypto.dll");
emptyDir("temp");
deleteIfExists("data.tar");
deleteIfExists("control.tar");
deleteIfExists("control");
deleteIfExists("postinst");
deleteIfExists("prerm");
deleteIfExists("postrm");
}
public void getJailbreakSpecificOptions(Session session)
{
if (session.FileExists("/usr/lib/SBInject") && !session.FileExists("/electra"))
{
if (verbose) log("You're running Electa (non RC build). I'll convert tweaks to that format & add entitlements to applications");
convert = true;
if (!session.FileExists("/bootstrap/Library/Themes"))
{
session.CreateDirectory("/bootstrap/Library/Themes");
session.ExecuteCommand("touch /bootstrap/Library/Themes/dont-delete");
log("Themes folder missing. Touching /bootstrap/Library/Themes/dont-delete to prevent this in future");
}
jtool = true;
}
if (session.FileExists("/usr/bin/dpkg"))
{
if (!session.FileExists("/var/lib/dpkg/updates"))
{
session.CreateDirectory("/var/lib/dpkg/updates");
log("Fixed dpkg");
}
dont_del_empty_dirs = true;
rc = true;
}
if (session.FileExists("/jb/"))
{
if (verbose) log("You're running LibreiOS. I'll add entitlements to applications");
jtool = true;
}
/*
* check if jakeshacks jailbreak being used
* set convert to true
*/
}
public Session getSession(string ip, string user, string password, int port)
{
log("Connecting");
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Sftp,
HostName = ip,
UserName = user,
Password = password,
PortNumber = port,
GiveUpSecurityAndAcceptAnySshHostKey = true
};
Session session = new Session();
try
{
session.Open(sessionOptions);
}
catch (SessionRemoteException e)
{
if (e.ToString().Contains("refused")) MessageBox.Show("Error: SSH Connection Refused\nAre you jailbroken?\nHave you entered your devices IP and port correctly?");
else if (e.ToString().Contains("Access denied")) MessageBox.Show("Error: SSH Connection Refused due to incorrect credentials. Are you sure you typed your password correctly?");
else if (e.ToString().Contains("Cannot initialize SFTP protocol")) MessageBox.Show("Error: SFTP not available. Make sure you have sftp installed by default. For Yalu or Meridian, please install \"SCP and SFTP for dropbear\" by coolstar. For LibreIOS, make sure SFTP is moved to /usr/bin/.");
else
{
Clipboard.SetText(e.ToString());
MessageBox.Show("Unknown Error. Please use the big red bug report link and include some form of crash report. Error report copying to clipboard.");
throw e;
}
Environment.Exit(0);
}
log("Connected to SSH");
return session;
}
public void finish(Session session)
{
if (uicache && auto.Checked)
{
log("Running uicache (may take up to 30 seconds)");
session.ExecuteCommand("uicache"); //respring
}
if (auto.Checked)
{
log("Respringing...");
session.ExecuteCommand("killall -9 SpringBoard"); //respring
}
session.Close();
}
private void selectDebsToolStripMenuItem_Click(object sender, EventArgs e)
{
tweaks.Clear();
var f = openFileDialog.ShowDialog();
switch (f)
{
case DialogResult.OK:
{
enabled = true;
foreach (string i in openFileDialog.FileNames)
{
tweaks.Add(i);
}
break;
}
default:
enabled = false;
break;
}
}
private void extractEntitlementsFromLocalFileToolStripMenuItem_Click(object sender, EventArgs e)
{
openFileDialog.Multiselect = false;
openFileDialog.Filter = "";
var i = openFileDialog.ShowDialog();
switch (i)
{
case DialogResult.OK:
session = getSession(host.Text, "root", pass.Text, int.Parse(port.Text));
session.PutFiles(openFileDialog.FileName, "file");
session.ExecuteCommand("jtool -e arch -arch arm64 file && mv file.arch_arm64 file && jtool --ent file >> new.ent");
session.GetFiles("new.ent", new FileInfo(openFileDialog.FileName).Name + ".ent");
session.ExecuteCommand("rm new.ent file");
session.Close();
output.Text += "Extracted entitlements to Tweak Installer directory" + Environment.NewLine;
break;
}
}
private void dontSignApplicationsToolStripMenuItem_Click(object sender, EventArgs e)
{
dont_sign = true;
output.Text += "Won't sign applications" + Environment.NewLine;
}
private void useCustomEntitlementsFileToolStripMenuItem_Click(object sender, EventArgs e)
{
openFileDialog.Multiselect = false;
openFileDialog.Filter = "Entitlements|*.ent|All Files|*.*";
var i = openFileDialog.ShowDialog();
switch (i)
{
case DialogResult.OK:
if (File.Exists(openFileDialog.FileName))
{
deleteIfExists("entitlements.ent");
File.Copy(openFileDialog.FileName, "entitlements.ent");
output.Text += "Using custom entitlements" + Environment.NewLine;
}
break;
}
}
private void useDefaultEntitlementsToolStripMenuItem_Click(object sender, EventArgs e)
{
if (File.Exists("platform-binary.ent"))
{
deleteIfExists("entitlements.ent");
File.Copy("platform-binary.ent", "entitlements.ent");
output.Text += "Using default entitlements" + Environment.NewLine;
}
else
{
using (WebClient c = new WebClient())
{
c.DownloadFile("https://raw.githubusercontent.com/josephwalden13/tweak-installer/master/bin/Debug/platform-binary.ent", "platform-binary.ent");
deleteIfExists("entitlements.ent");
File.Copy("platform-binary.ent", "entitlements.ent");
output.Text += "Using default entitlements" + Environment.NewLine;
}
}
}
private void verboseModeToolStripMenuItem_Click(object sender, EventArgs e)
{
verbose = true;
output.Text += "Verbose mode" + Environment.NewLine;
}
public void convertTweaks()
{
/*
* add code to check if jakeshacks jailbreak
* patch tweaks for that
*/
log("Converting to electra tweak format");
createDirIfDoesntExist("files\\bootstrap");
createDirIfDoesntExist("files\\bootstrap\\Library");
if (Directory.Exists("files\\Library\\MobileSubstrate\\"))
{
if (verbose) log("Found MobileSubstrate");
createDirIfDoesntExist("files\\usr\\lib\\SBInject");
foreach (string file in Directory.GetFiles("files\\Library\\MobileSubstrate\\DynamicLibraries\\"))
{
if (verbose) log("Moving Substrate file " + file + " to SBInject");
File.Move(file, "files\\usr\\lib\\SBInject\\" + new FileInfo(file).Name);
}
foreach (string file in Directory.GetDirectories("files\\Library\\MobileSubstrate\\DynamicLibraries\\"))
{
if (verbose) log("Moving Substrate dir " + file + " to SBInject");
Directory.Move(file, "files\\usr\\lib\\SBInject\\" + new DirectoryInfo(file).Name);
}
Directory.Delete("files\\Library\\MobileSubstrate", true);
if (verbose) log("Deleted MobileSubstrate folder");
}
moveDirIfPresent("files\\Library\\Themes\\", "files\\bootstrap\\Library\\Themes\\");
moveDirIfPresent("files\\Library\\LaunchDaemons\\", "files\\bootstrap\\Library\\LaunchDaemons\\");
moveDirIfPresent("files\\Library\\PreferenceBundles\\", "files\\bootstrap\\Library\\PreferenceBundles\\");
moveDirIfPresent("files\\Library\\PreferenceLoader\\", "files\\bootstrap\\Library\\PreferenceLoader\\");
}
public void getFiles()
{
if (verbose) log("Getting all files");
crawler = new Crawler(Environment.CurrentDirectory + "\\files", true); //gets all files in the tweak
crawler.Remove("DS_STORE");
}
public void installFiles(Session session)
{
if (session.FileExists("/entitlements.ent"))
{
session.RemoveFiles("/entitlements.ent");
if (verbose) log("Removed old entitlements file from the device");
}
createDirIfDoesntExist("backup");
if (Directory.Exists("files\\Applications") && jtool)
{
File.Copy("entitlements.ent", "files\\entitlements.ent", true);
if (verbose) log("Entitlements needed. Copying entitlements file");
}
if (Directory.Exists("files\\Applications\\electra.app"))
{
if (verbose) log("please no");
var f = MessageBox.Show("Please do not try this");
Environment.Exit(0);
}
if (verbose) log("Creating directory list");
string[] directories = Directory.GetDirectories("files", "*", searchOption: System.IO.SearchOption.AllDirectories);
if (verbose) log("Got list. Creating backup folders");
foreach (string dir in directories)
{
if (!Directory.Exists("backup\\" + dir.Replace("files\\", "\\")))
{
Directory.CreateDirectory("backup\\" + dir.Replace("files\\", "\\"));
}
}
log("Preparing to install");
if (verbose) log("Creating local file list");
List<string> local = new List<string>();
crawler.Files.ForEach(i => local.Add(convert_path(i)));
if (verbose) log("Creating remote file list");
List<string> remote = new List<string>();
foreach (string i in Directory.GetDirectories("files"))
{
string dir = new DirectoryInfo(i).Name;
if (dir == "System")
{
log("This tweak may take longer than usual to process (45 second max)");
}
session.ExecuteCommand("find /" + dir + " > ~/files.list");
session.GetFiles("/var/root/files.list", "files.list");
foreach (string file in File.ReadAllLines("files.list"))
{
remote.Add(file);
}
File.Delete("files.list");
}
List<string> duplicates = new List<string>();
foreach (string i in local)
{
if (remote.Contains(i))
{
duplicates.Add(i);
}
}
bool overwrite = false;
foreach (var i in duplicates)
{
bool go = false, action = false;
if (!overwrite)
{
if (verbose) log(convert_path(i) + " already exists");
var dialog = new YNAD("Do you want to backup and overwrite " + convert_path(i) + "? (y/n/a)");
dialog.ShowDialog();
while (true)
{
switch (dialog.result)
{
case 1:
go = true;
action = true;
break;
case 3:
go = true;
action = true;
overwrite = true;
break;
case 2:
action = false;
go = true;
break;
}
log("\n");
if (go) break;
}
}
else
{
action = true;
}
if (!action)
{
if (verbose) log("Skipping file " + i);
File.Delete("files\\" + i);
if (!skip.Contains(i))
{
skip.Add(i);
}
}
session.GetFiles(convert_path(i), @"backup\" + i.Replace("/", "\\"));
}
log("Installing");
foreach (string dir in Directory.GetDirectories("files"))
{
if (verbose) log("Installing directory " + dir);
session.PutFiles(dir, "/"); //put directories
}
foreach (string file in Directory.GetFiles("files"))
{
if (verbose) log("Installing file " + file);
session.PutFiles(file, "/"); //put files
}
File.WriteAllLines("skip.list", skip);
if (Directory.Exists("files\\Applications") && jtool)
{
if (verbose) log("Entitlements needed");
session.PutFiles("entitlements.ent", "/");
if (verbose) log("Sending entitlements");
log("Signing applications");
foreach (var app in Directory.GetDirectories("files\\Applications\\"))
{
uicache = true;
if (verbose) log("Signing " + convert_path(app.Replace("files\\", "\\")));
crawler = new Crawler(app, true);
crawler.Files.ForEach(i =>
{