-
Notifications
You must be signed in to change notification settings - Fork 28
/
ebuilding.vb
1000 lines (746 loc) · 34.5 KB
/
ebuilding.vb
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
Imports System.Threading
'Imports Ionic.Zip
Public Class ebuilding
Private WithEvents Checkbb As System.ComponentModel.BackgroundWorker
Public WeRGood2Go As Boolean = False
Dim ProcessID As Int32
Private Sub ChangeLabelText()
lblStatus.Text = LabelText
lblStatus.Left = (Width / 2) - (lblStatus.Width / 2)
End Sub
Public Sub StaticProgressBar()
ProgressBar.Value = ProgressValue
End Sub
Private Sub ChangeProgressbar()
ProgressValue = ProgressValue * 4 ' 4 = 100 / 26 steps
If ProgressValue > 100 Then ProgressValue = 100
ProgressBar.Value = ProgressValue
End Sub
Private Sub HideWheel()
PictureAnim.Visible = False
Cursor = Cursors.Default
End Sub
Private Sub BuildError()
ipsw = ""
iPhoneModel = ""
UserMode = ""
ipswBuilding = False
ExitFlag = False
ipswFailed = False
Cursor = Cursors.Default
Fail.MdiParent = MDIMain
Fail.Show()
Me.Close()
End Sub
Private Sub BuildComplete()
ipsw = ""
UserMode = ""
'Not needed yez err $$ !!!
ipswBuilding = False
ExitFlag = False
ipswFailed = False
Cursor = Cursors.Default
done.MdiParent = MDIMain
done.Show()
Me.Close()
End Sub
Private Sub CancelBuild()
lblStatus.Text = "Canceling"
lblStatus.Left = (Width / 2) - (lblStatus.Width / 2)
Call ipswCleanup()
ipswBuilding = False
ExitFlag = False
ipswFailed = False
ipsw = ""
iPhoneModel = ""
UserMode = ""
lblStatus.Text = "Cancelled"
lblStatus.Left = (Width / 2) - (lblStatus.Width / 2)
Cursor = Cursors.Default
Form1.Enabled = True
Form1.MdiParent = MDIMain
Form1.Show()
Me.Close()
Me.Dispose()
End Sub
Private Sub MakeItSn0w(ByVal State As Object)
Try
Try
If UserMode = "Simple" Then
If iPhoneModel.Substring(0, 6) = "iPhone" Then
Dim Answer
Answer = MsgBox("Do you want to activate your iPhone?" & Chr(13) & Chr(13) & "This is typically good for people on unoffical carriers that need to activate.", MsgBoxStyle.YesNo, "You wantz Hacktivation?")
If Answer = vbYes Then
ActivatePhone = True
Else
ActivatePhone = False
End If
End If
End If
Catch ex As Exception
End Try
'get keys etc. for iPhone model
Call GetIPSWVars()
MDIMain.MenuStrip1.Enabled = False
ipswBuilding = True
LabelText = "Checking for any old files"
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call ipswCleanup()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'iRyourRepos.SaveFile(tempPath & "\CustomRepos.txt", _
'RichTextBoxStreamType.PlainText)
LabelText = "Extracting resources..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call ExtractResourcesAdvanced()
'extract bundle
If File_Exists(tempPath & "\" & Bundle & ".zip") = False Then SaveToDisk(Bundle & ".zip", tempPath & "\" & Bundle & ".zip")
'Using zip1 As ZipFile = ZipFile.Read(tempPath & "\" & Bundle & ".zip")
'zip1.ExtractAll(tempPath & "\", True)
'zip1.Dispose()
'End Using
UnZip(tempPath & "\" & Bundle & ".zip", tempPath & "\", 4096)
If File_Exists(tempPath & "\" & Bundle & ".zip") = True Then File_Delete(tempPath & "\" & Bundle & ".zip")
'IPSW extraction
LabelText = "Extracting IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call ExtractIPSW()
LabelText = "Done Extracting IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 1
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'********************Baseband Preservation Mode****************
If JustPreserveBaseband = True Then
'update progress bar
ProgressValue = 15
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
'Ramdisk Decryption
LabelText = "Decrypting Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DecryptRamdisk()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
ProgressValue = 30
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
LabelText = "Patching Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchRamdisk()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
ProgressValue = 45
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
LabelText = "Decrypting Root filesystem..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call vfdecrypt_rootfs()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
ProgressValue = 60
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
LabelText = "Patching iBSS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchiBSS()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
ProgressValue = 75
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
LabelText = "Patching IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DeleteUnrequiredFiles()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 80
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
'Zipping IPSW
LabelText = "Creating IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call CreateIPSW()
LabelText = "Done Creating IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 90
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
'Cleaning Up
LabelText = "Cleaning Up..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call ipswCleanup()
LabelText = "Done Cleaning Up..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 100
ProgressBar.Invoke(CType(AddressOf StaticProgressBar, MethodInvoker))
Invoke(CType(AddressOf BuildComplete, MethodInvoker))
Exit Sub
Else
'Kernel Patching
LabelText = "Patching Kernel..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchKernel()
LabelText = "Done Patching Kernel..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 2
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'RootFS Decryption
LabelText = "Decrypting RootFS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DecryptRoofFS()
LabelText = "Done Decrypting..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 3
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Adding Cydia
LabelText = "Adding Cydia..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call AddCydia()
LabelText = "Done Adding Cydia..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 4
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 6
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
LabelText = "Adding Debs..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Invoke(CType(AddressOf AddDebs, MethodInvoker))
LabelText = "Done Adding Debs..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 8
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'FSTAB Patching
LabelText = "Patching FSTAB..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchFSTAB()
LabelText = "Done Patching FSTAB..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 9
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Patching Services
LabelText = "Patching Services..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchServices()
LabelText = "Done Patching Services..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 10
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Add Custom Options from General
LabelText = "Adding Custom Options..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call CustomOptions()
LabelText = "Done Adding Custom Options..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 10
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Custom boot/recovery logos
LabelText = "Preinstalling Custom Repos..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'Call AddCustomRepos()
LabelText = "Done Preinstalling Custom Repos..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 12
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Uploading PWNED Kernel
LabelText = "Uploading PWNED Kernel..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'Call Uploadkernel()
LabelText = "Done Uploading PWNED Kernel..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 12
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
Try
'Hactivating
If ActivatePhone = True And iPhoneModel.Substring(0, 6) = "iPhone" Then
LabelText = "Hacktivating iPhone..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call HacktivatePhone()
LabelText = "Done Hacktivating..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 13
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
End If
Catch Ex As Exception
End Try
'Apply Seatbelt Fix
LabelText = "Adding Seatbelt Fix..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'Call SeatbeltFix()
LabelText = "Done Seatbelt Fix..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 14
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
LabelText = "Adding sexy kernel exploit ;D..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call AddUltimateness()
LabelText = "Done Adding sexy kernel exploit ;D..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 16
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
If InstallSSH = True Then
'Apply Seatbelt Fix
LabelText = "Installing SSH..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call InstallingSSH()
LabelText = "Done Installing SSH..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 17
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
End If
LabelText = "Stashing..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call Stash_Da_Shit()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'Rebuilding RootFS
LabelText = "Rebuilding RootFS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call RebuildRootFS()
LabelText = "Done Rebuilding RootFS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
If iWantziPadBB = True Then
LabelText = "Downloading iPad Baseband (please wait)..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DownloadiPadBaseband()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
End If
'Ramdisk Decryption
LabelText = "Decrypting Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DecryptRamdisk()
LabelText = "Done Decrypting Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Ramdisk Patching
LabelText = "Patching Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchRamdisk()
LabelText = "Done Patching Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
If iWantziPadBB = True Then
iWantziPadBB = False
LabelText = "Integrating iPad Baseband..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call iPadBaseband()
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
End If
'Rebuilding ramdisk
LabelText = "Rebuilding Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call RebuildRamdisk()
LabelText = "Done Rebuilding Ramdisk..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'iBSS Decryption
LabelText = "Patching iBSS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchiBSS()
LabelText = "Done Patching iBSS..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 18
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'iBEC Patching
LabelText = "Patching iBEC..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'Call PatchiBEC()
LabelText = "Done Patching iBEC..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 19
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Custom boot/recovery logos
LabelText = "Uploading Custom Images..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call AddCustomImages()
LabelText = "Done Uploading Custom Images..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 16
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Adding custom logos
LabelText = "Adding Custom Boot Logos..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call AddBootLogo()
LabelText = "Done Adding Custom Boot Logos..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 21
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'LLB Patching
LabelText = "Patching LLB..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchLLB()
LabelText = "Done Patching LLB..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 22
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'iBoot Patching
LabelText = "Patching iBoot..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call PatchiBoot()
LabelText = "Done Patching iBoot..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
Exit Sub
End If
'update progress bar
ProgressValue = 23
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Deletion of unrequired files
LabelText = "Deleting Unrequired Files..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call DeleteUnrequiredFiles()
LabelText = "Done Deleting Unrequired Files..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'cancel pressed?
If ExitFlag = True Then
If ipswFailed = True Then
Invoke(CType(AddressOf BuildError, MethodInvoker))
Else
Invoke(CType(AddressOf CancelBuild, MethodInvoker))
End If
Exit Sub
End If
'update progress bar
ProgressValue = 24
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Zipping IPSW
LabelText = "Creating IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call CreateIPSW()
LabelText = "Done Creating IPSW..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 25
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
'Cleaning Up
LabelText = "Cleaning Up..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
Call ipswCleanup()
LabelText = "Done Cleaning Up..."
lblStatus.Invoke(CType(AddressOf ChangeLabelText, MethodInvoker))
'update progress bar
ProgressValue = 26
ProgressBar.Invoke(CType(AddressOf ChangeProgressbar, MethodInvoker))
End If
Sleep(2000)
':D DONE!
MDIMain.MenuStrip1.Enabled = True
Invoke(CType(AddressOf BuildComplete, MethodInvoker))
Catch ex As Exception
ErrorMessage = Err.Description
Invoke(CType(AddressOf BuildError, MethodInvoker))
End Try
End Sub
Private Sub sbuilding_Activated(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Activated
PictureAnim.Refresh()
End Sub
Private Sub sbuilding_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.ihelper.Text = iPhoneModel
Me.ihelper.Left = (Me.Width / 2) - (Me.ihelper.Width / 2)
SaveToDisk("pacman.swf", tempPath & "\pacman.swf")
SaveToDisk("pacman.html", tempPath & "\pacman.html")
Cursor = Cursors.WaitCursor
PictureAnim.Refresh()
' PictureAnim.Visible = True
'My.Application.Info.DirectoryPath
ihelpertext = ihelper.Text
'run in separate thread
MDIMain.MenuStrip1.Enabled = False
ThreadPool.QueueUserWorkItem(AddressOf MakeItSn0w)
End Sub
Private Sub ihelper_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ihelper.TextChanged
Me.ihelper.Left = (Me.Width / 2) - (Me.ihelper.Width / 2)
End Sub
Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
If ipswBuilding = False Then
iPhoneModel = ""
Expert.Label2.Text = " "
CancelBuild()
Exit Sub
End If
Dim Answer
Answer = MsgBox("Cancel building of IPSW?", MsgBoxStyle.Question + vbYesNo, "sn0wbreeze")
If Answer = vbYes Then
iPhoneModel = ""
lblStatus.Text = "Cancelling. Waiting for current process to complete..."
lblStatus.Left = (Width / 2) - (lblStatus.Width / 2)
btnCancel.Enabled = False
ExitFlag = True
End If
End Sub
Private Sub btnCancel_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCancel.MouseEnter
Cursor = Cursors.Default
End Sub
Private Sub btnCancel_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCancel.MouseLeave
If ipswBuilding Then Cursor = Cursors.WaitCursor
End Sub
Private Sub logo2_MouseEnter(ByVal sender As System.Object, ByVal e As System.EventArgs)
logo2.Image = My.Resources.Flakeselect
End Sub
Private Sub logo2_MouseLeave(ByVal sender As System.Object, ByVal e As System.EventArgs)
logo2.Image = My.Resources.Flake
End Sub
Public Sub Checkbb_done(ByVal sender As Object, ByVal e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles Checkbb.RunWorkerCompleted
Try
Dim LoadFile As String
LoadFile = tempPath & "\doifetchbb.xml"
RichTextBox1.LoadFile(LoadFile, _
RichTextBoxStreamType.PlainText)
If RichTextBox1.Text = "YES" Then
WeRGood2Go = True
'Jump to downloading!
Else
WeRGood2Go = False
'Jump to iPad Browse!
End If
Catch ex As Exception
End Try
End Sub
Public Sub Checkbb_nao(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles Checkbb.DoWork
File_Delete(tempPath & "\doifetchbb.xml")
Try
Dim Check As String
Check = "http://doifetchbb.ih8sn0w.com/index.html"
Dim clientCheck = New System.Net.WebClient()
clientCheck.DownloadFile(Check, tempPath & "\doifetchbb.xml")
Catch ex As Exception
MsgBox("Unknown Error! Please point to a 3.2.2 iPad IPSW!", MsgBoxStyle.Critical)
End Try
End Sub
Private Sub logo2_MouseEnter_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles logo2.MouseEnter
logo2.Image = My.Resources.Flakeselect
End Sub
Private Sub logo2_MouseLeave_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles logo2.MouseLeave
logo2.Image = My.Resources.Flake
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
logo2.Visible = False
Label1.Visible = False
Button1.Visible = False
Button2.Visible = False
Panel1.Visible = False
WebBrowser1.Visible = True
WebBrowser1.Navigate(tempPath & "\pacman.html")
go2pacman.Visible = False
return2spinner.Visible = True
PictureAnim.Visible = False
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
logo2.Visible = True
Label1.Visible = False
Panel1.Visible = False
Button1.Visible = False
Button2.Visible = False
WebBrowser1.Visible = False
go2pacman.Visible = True
PictureAnim.Refresh()
PictureAnim.Visible = True
End Sub
Private Sub go2pacman_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles go2pacman.Click
go2pacman.Visible = False
return2spinner.Visible = True
PictureAnim.Visible = False
WebBrowser1.Navigate(tempPath & "\pacman.html")
WebBrowser1.Visible = True
logo2.Visible = False
End Sub
Public Sub GoPacMan()
WebBrowser1.Navigate(tempPath & "\pacman.html")
return2spinner.Visible = True
End Sub
Private Sub return2spinner_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles return2spinner.Click
WebBrowser1.Visible = False
WebBrowser1.Navigate("http://localhost")
PictureAnim.Refresh()
return2spinner.Visible = False
go2pacman.Visible = True
PictureAnim.Visible = True
logo2.Visible = True
End Sub
End Class