-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPackages
1563 lines (1551 loc) · 73 KB
/
Packages
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
Package: com.myxxdev.badabing
Version: 1.020722
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 380
Pre-Depends: dpkg
Depends: mobilesubstrate, ws.hbang.common
Filename: debs/com.myxxdev.badabing_1.020722_iphoneos-arm.deb
Size: 61476
MD5sum: 083740c93decce133d5eac047521f296
SHA1: 60f2c6fbf62b6901a7348811235b6059c31d5125
SHA256: 7a639e981dd27d478b8300d40bd2e1e55eb1b02ce9b002d6f141ae924c88cd38
Section: Tweaks
Description: Inconspicuous camera sounds!
• Description:
Take a picture / record a video without being so obvious!
-
This tweak will:
-
Change the camera shutter sound to the default notification "Tri-tone" sound.
-
Change the video record start sound to the default received mail "Ding" sound.
-
Change the video record end sound to the default sent mail "Swoosh" sound.
-
No options to configure.
-
Thank you for choosing BaDaBing®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v1.020722
-
Compressed images for space saving.
-
Corrected root check.
-
Updated preferences.
-
--------------------------------------
-
~ v1.020422
-
Initial release.
-
Author: MYXXdev™
Name: BaDaBing®
Package: com.myxxdev.otadelay
Version: 1.020722
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 524
Pre-Depends: dpkg
Depends: bash, file-cmds, gawk, mobilesubstrate, plutil, preferenceloader, ws.hbang.common
Conflicts: com.apple.memecity, jp.akusio.kernbypass, jp.akusio.kernbypassbeta, jp.akusio.kernbypass-unofficial
Filename: debs/com.myxxdev.otadelay_1.020722_iphoneos-arm.deb
Size: 98016
MD5sum: c157a4364945ea7d9744630d60195935
SHA1: cc963898d3b2019d957e9e4c4373e46eaa2d816a
SHA256: aadc04c535269b35883931eec5d947fdee2863f6bc02d769b35611245daac555
Section: System
Description: Delayed OTA updates made easy!
• Description:
otaDelay® will allow you to UPDATE your device via OTA to an iOS firmware that is no longer available for regular users by extending the OTA update windows, enforcing a 90 day software update delay.
-
Thanks to otaDelay®, this can be done in 4 easy steps... No profiles, no manual file modifications, all automated!
-
All available firmware dates are clearly listed within the "Enable otaDelay®" prompt.
-
An optional AlternateSU patch is also available within otaDelay® settings that will allow you to install firmwares typically only available to those coming from specific firmwares. For example: As of this writing, this will benefit those coming from <14.5 that would like to update to 14.8 - Without the AlternateSU patch, 15.0.2 will show as the latest update. With AlternateSU enabled, 14.8 will be available to download and install.
-
Please ensure you read ALL prompts when navigating through the steps - There's important information given throughout the process!
-
Support is available via Telegram (preferred) and Discord - Links can be found in otaDelay® settings under "Tweak Support".
-
A special thanks to dhinakG, nyuszika7h and Tanbeer_191!
-
Thank you for choosing otaDelay®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v1.020722
-
Compressed images for space saving.
-
Corrected root check.
-
Updated preferences.
-
--------------------------------------
-
~ v1.020422
-
Fixed preference bundle for certain devices.
-
Fixed contingency issue.
-
Updated / added firmware dates.
-
Updated OTAEnabler to 0.4.0.
-
--------------------------------------
-
~ v1.012122
-
Initial release.
-
Author: MYXXdev™
Name: otaDelay®
Package: com.myxxdev.pissoffprotection
Version: 2.020722
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 384
Pre-Depends: dpkg
Depends: firmware (>=14.0), mobilesubstrate, ws.hbang.common
Filename: debs/com.myxxdev.pissoffprotection_2.020722_iphoneos-arm.deb
Size: 64800
MD5sum: bff9264cabcfac4aba4defd6a10cdcf2
SHA1: b2030684d5414bac83455afa1bfd73b80c4e4fcc
SHA256: 6057cbeadd9c8f8589aef4a216a051fe79c24f90acbbec0e916e533181b90bf7
Section: Tweaks
Description: Disable 'Headphone Safety'!
• Description:
If you're sick of vibing to your favorite song, only to be interrupted half way through because iOS decides it wants to lower the volume to "protect your hearing", then this is for you...
--------------------------------------
Thank you for choosing PissOffProtection®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v1.020722
-
Compressed images for space saving.
-
Corrected root check.
-
Updated preferences.
-
--------------------------------------
-
~ v2.020422
-
Changed how the .plist is modified.
-
--------------------------------------
-
~ v1.041321
-
Initial release.
-
Author: MYXXdev™
Name: PissOffProtection® (for iOS 14)
Package: com.myxxdev.samjet
Version: 1.020722
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 376
Pre-Depends: dpkg
Depends: firmware (>=14.0), firmware (<=15.0), mobilesubstrate, plutil, ws.hbang.common
Conflicts: com.pheux.fixrandomresprings
Replaces: com.pheux.fixrandomresprings
Filename: debs/com.myxxdev.samjet_1.020722_iphoneos-arm.deb
Size: 68754
MD5sum: 9c8bb6b67044a8abd7de8aca4c6a3a25
SHA1: 0d6ec789286f7027e87f8143b5036a6272c41560
SHA256: 9197023c29838db360b1e229bb399f554e7f1cd846579fc275953ec7c2fc786f
Section: System
Description: A more stable iOS 14!
• Description:
This utility will raise values for problematic jetsam entries (for iOS 14 ONLY)!
-
Your jetsam file will be backed up in its current state (whether that be stock or self-modified), with that version restored upon removal of SamJet®. Two different backups are stored in /usr/sbin/MYXXdev/SamJet/Backups and /var/mobile/Media/MYXXdev/SamJet/Backups
-
DO NOT DELETE THESE FILES/ FOLDERS!
-
Any modifications you have made to entries other than those in SamJet® prior to using this tweak will remain in tact.
-
Modifications are made to the following jetsam entries:
-
• CommCenter
• CommCenterMobileHelper
• CommCenterRootHelper
• DragUI.druid
• NetworkProcess
• SpringBoard
• accountsd
• aggregated
• apsd
• assetsd
• bulletindistributord
• cfnetwork.AuthBrokerAgent
• cfnetwork.cfnetworkagent
• cloudd
• configd
• coreduetd
• dasd
• duetexpertd
• healthd
• locationd
• mDNSResponder.reloaded
• mlmodelingd
• nanoprefsyncd.2
• navd
• networkd
• nsurlsessiond
• routined
• searchd
• sharingd
• splashboard
• symptomsd
• symptomsd.helper
• wifid
-
--------------------------------------
Thank you for choosing SamJet®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v1.020722
-
Added additional modification entries.
-
Compressed images for space saving.
-
Corrected root check.
-
Updated description to list modifications.
-
Updated preferences.
-
--------------------------------------
-
~ v1.020422
-
Initial release.
-
Author: MYXXdev™
Name: SamJet® (for iOS 14)
Package: com.myxxdev.shutupcr4shed
Version: 1.020722
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 384
Pre-Depends: dpkg
Depends: mobilesubstrate, ws.hbang.common
Filename: debs/com.myxxdev.shutupcr4shed_1.020722_iphoneos-arm.deb
Size: 66276
MD5sum: 0de1d5aa94b43f021cb0041dadfe9c2f
SHA1: f0087f63b2dc162d071a4c2e9568f5daccd4eecf
SHA256: 310691d5e160e4a62bf4172fbdba35a924d3d7a1deb0a5612e91bf7207443091
Section: Tweaks
Description: Silence Cr4shed jetsam crashes!
• Description:
This tweak will stop Cr4shed from reporting unnecessary jetsam crashes.
-
Other app / system / tweak crashes will still report as normal.
-
No options to configure.
-
Thank you for choosing ShutUpCr4shed®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v1.020722
-
Compressed images for space saving.
-
Corrected root check.
-
Updated preferences.
-
--------------------------------------
-
~ v1.020622
-
Initial release.
-
Author: MYXXdev™
Name: ShutUpCr4shed®
Package: com.sinfool.youtopia
Version: 0.0.2
Architecture: iphoneos-arm
Maintainer: sinfool
Installed-Size: 152
Depends: mobilesubstrate
Filename: debs/com.sinfool.youtopia_0.0.2_iphoneos-arm.deb
Size: 5700
MD5sum: 797781f4514e5e4fe7ac5a5d82a5dc02
SHA1: 41910c137d73e2d0f119c57efe7e278eebddefa5
SHA256: 27cb81ef765e17da03d3429c769f27b122414f8d3bd801f72518471ee33ac735
Section: Tweaks
Description: YouTopia by sinfool | The perfect YouTube experience!
- No Home Feed Ads
- No Video Ads
- Enable Background Playback
Officially hosted by MYXXdev
Author: sinfool
Name: YouTopia
Package: net.myxxdev.mybloxx11
Version: 4.020822-11
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 1976
Pre-Depends: dpkg
Depends: com.opa334.ccsupport, curl, firmware (>=11.0), firmware (<=13.0), mobilesubstrate, plutil, preferenceloader, ws.hbang.common
Conflicts: com.ceadd.blockyoux-procursus, com.ceadd.blockyoux, com.ceadd.blockyou10, com.ceadd.blockyou11, com.ceadd.blockyou12, com.droomone.tabblocker, com.git-anish.mdnsrestart, com.nathanaccidentally.mdnsflush, com.myrepospace.reddestdream.minimal, com.myrepospace.basic.basic, com.p2kdev.safariblocker, com.reddestdream.minimalhostsblocker, com.reddestdream.mhbcb, com.sinfool.youtopia, com.thireus.hostscleaner, com.thireus.untrustedhostsblockerlight, com.thireus.untrustedhostsblockermegaipv4, com.thireus.untrustedhostsblockermega, com.thireus.untrustedhostsblockerexperimental, net.myxxdev.mybloxx, net.myxxdev.mybloxx10, net.myxxdev.mybloxx11, net.myxxdev.mybloxx14, net.myxxdev.mybloxx4, net.myxxdev.mybloxxlite, net.myxxdev.mybloxxlite13, net.myxxdev.mybloxxlite14, net.myxxdev.issupervisedbegone, net.myxxdev.mybloxxhipfix, net.myxxdev.mybloxxupdater
Replaces: com.droomone.tabblocker, com.p2kdev.safariblocker, net.myxxdev.issupervisedbegone, net.myxxdev.mybloxx, net.myxxdev.mybloxx10, net.myxxdev.mybloxx11, net.myxxdev.mybloxx13, net.myxxdev.mybloxx14, net.myxxdev.mybloxx4, net.myxxdev.mybloxxlite13, net.myxxdev.mybloxxlite14, net.myxxdev.mybloxxhipfix, net.myxxdev.mybloxxupdater
Filename: debs/net.myxxdev.mybloxx11_4.020822-11_iphoneos-arm.deb
Size: 174774
MD5sum: 7591cb52407243fb5c5aaa4f1a96cb9d
SHA1: 4493362f46d11656968ad40024c5cd6b52547f18
SHA256: 29aac7cf0085a8acd5766f4584c5f88a0f81560d81589d5ed3f5ba65acff56d8
Section: Networking
Description: An AUTO-UPDATING Ad Blocker!
• Description:
What makes MYbloXX® better than the alternatives?
-
• AUTO-UPDATING.
• BETTER BATTERY LIFE.
• FASTER BROWSING.
• INTEGRATED POP-UP/REDIRECT BLOCKER.
-
Security is a top priority for everybody... MYbloXX® is no different. This uses absolutely no third-party servers to re-route your traffic, unlike ffapple and other third-party DNS/Ad blocking App Store apps. They claim to not do so but how do we REALLY know that? MYbloXX® is different: All traffic is routed DIRECT...
-
MYbloXX® checks against specified rules set within a PAC file. If the domain requested is within the PAC's rule list, it will sinkhole. The PAC congifuration uses wildcards to more effeciently block targeted ad-servers and known domain structures like http://ad._____
-
The use of wildcards means a vast majority of entries within the hosts file can be removed to ensure a fast, efficient ad-blocking method.
-
MYbloXX® uses a powerful Apple stock feature that is usually only available to those with "supervised" devices. It also allows for on-the-fly updates to quickly add new ad-servers and works on all versions of iOS, all carriers and ISP’s (IPv4 and IPv6 respectively).
-
MYbloXX® aims to block as many ads as possible out of the box using a technique that has not been used in any other ad-blocking tweaks until now. With new ad servers being created on a daily basis, on rare occasions, it’s possible you’ll come across an ad in an app/on a website.
-
If this happens, please use the reporting feature in Settings.
-
Ad-servers that are added to MYbloXX® will be updated AUTOMATICALLY on your device providing up to the minute protection from ads, revokes, trackers, miners and all other malicious content/threats.
-
• Works for Wi-Fi and data (5G/LTE/4G/3G) connections.
• Does not rely on hosts/other tweaks to work.
• Works in stock AND jailbroken mode.
• Works alongside VPN servers/apps.
• Blocks all language ad-servers.
• Blocks user stats scripts.
• Blocks pop-ups/Redirects.
• IPv4/IPv6 compatibility.
• Blocks in-game ads.
• Blocks tweak ads*.
• No battery drain.
• Auto-updates.
-
Thank you for choosing MYbloXX®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v4.020822
-
A fix for the stock iOS 14 notifications bug that we’ve all been plagued with (notifications not coming in from apps) is now included with MYbloXX®.
-
Access Tester has been renamed to Access Checker with the addition Blocking Statistics.
-
AdReport! / xReport! pages are now consolidated into one with new options to report via Telegram, Reddit and Discord.
-
Added additional projects to ‘Tweak Support’ section.
-
Advanced Settings section added with the ability to add custom blacklist / whitelist rules to a self-hosted PAC that can also be applied to your device. Custom rules you input will be added by downloading the latest ruleset from the current MYbloXX® Default PAC, inserted and generated into your own PAC file (saved at /var/mobile/MYbloXXCustom.pac) that you can then upload to your chosen hosting provider. Please reference the Advanced Settings page for additional information (on the page and in pop ups) as well as a How-To video. Both URL’s and wildcards can be entered separated by a comma (eg. cnn.com,facebook.com,espn.com)
-
All PAC files have been re-written from scratch, omitting ASCII and other characters / rules that I suspect iOS may have had issues rendering.
-
All behind-the-scenes scripts have been re-written and optimized.
-
All buttons / toggles will now run cFix as an added measure to ensure CFNetwork doesn’t hang / lose configuration. This will also help if somebody experiences a connection issue (GOD FORBID)... A simple toggle on / off will bring back connectivity (as well as ‘Reset iOS Connection Cache’ button / switching between other configurations) without the need of an reboot / ldrestart.
-
All scripts optimized for reliability.
-
Changes made to CFNetwork that will force iOS to keep the service alive - The reason why some were seeing connectivity issues was due to this service losing its configuration / dying and not restarting like it should. MYbloXX® will now take care of this automatically. This was addressed officially in 15.2 by along with some other CFNetworkAgent related issues.
-
Compressed images to make Debian package smaller in size.
-
Custom PAC Configuration video added for step-by-step instructions on how to use.
-
Custom Proxy Server section added for those that may need to use a proxy server while having MYbloXX® installed... If you don’t know what this is, please don’t use it. To add, unlike iOS stock implementation of this where you can only add a proxy server to your current WiFi connection, this will allow the proxy server to run on mobile data too. Enter as http://server:port
-
DownDetector button/link added for convenience to allow a user to check if a website/service/app is down prior to submitting an unnecessary report.
-
Everything MYbloXX® filesystem wise has been relocated at the request of a user... This won’t effect usability/performance in any way.
-
Fallback has been enabled to ensure users never lose connectivity if the PAC host goes down (very rare). If this were to happen, ads will show temporarily until the PAC host is back up.
-
for iOS dropped from name to become uniform with other tweaks.
-
Future MYbloXX® updates will now remember prior settings / configurations after installation so it will keep whatever configuration the user had prior to updating instead of reverting everything back to Default settings (including YouTopia / SafariBlocker).
-
General overall improvements while browsing.
-
Jetsam modifications are no longer included in MYbloXX®. With the changes made, they’re no longer a necessity for most devices (with MYbloXX® specifically) BUT they’re still available for those that wish to apply them for general system stability (for iOS 14 only). You can find this in the newly released package on the MYXXdev™ repository (SamJet®).
-
Legacy Mode has been added at the request of a user which allows the old method of installation (via Profiles)... I don’t recommend using this unless you truly have a reason to.
-
MYbloXX® will no longer remain installed when a user performs rootfs or restores from backup on a new/updated device.
-
New Configuration added (allowY - Allow Yahoo! Ads - This fixes some features in Yahoo! apps but WILL show ads!)
-
Patreon option added for those that wish to contribute monthly. Other donation options have been separated and moved to Tweak Support.
-
Re-written the tweak from the ground up omitting unnecessary code.
-
Reddit and Email contact links added.
-
Removed otaDelay®, making it a stand-alone tweak (available on the MYXXdev™ Repository).
-
Removed package depictions because I’m too lazy to have to update via HTML every update. Shifted back to control file for ease.
-
Reset (basically a re-install) button added to Settings > Utilities / Other.
-
Root check added on pre-installation to ensure user has correct r/w permissions.
-
Settings UI overhaul / complete re-design.
-
Shifted everything PAC related from GitHub to archive.org to ensure more users can benefit from MYbloXX® if they reside in a country that blocks access to GitHub. At this time, test results show that CHINA is the only country that will NOT be able to use MYbloXX®. Users do have the option to select whether they’d like to use the PAC hosted on archive.org (default selection on install) or GitHub. All PAC’s are the same, just hosted on different platforms. It’s down to personal preference (if you have the luxury of residing somewhere that doesn’t block GitHub). This will also come in handy if/when a host goes down. For example: If you’re using archive.org and their servers go down, you can switch to the GitHub PAC temporarily until service is restored. This very rarely happens but at least the option is there.
-
Support for iOS 4 - 10 has been dropped for now - This may return in the future depending on demand.
-
Toggle status is now checked against the file to ensure the change has been made to cease iOS confusion. This may cause a slight delay in toggle times periodically (depending on your current RAM usage) but this is a fail-safe feature that assists in files not becoming corrupted in turn needing re-installation.
-
Updated changelog for all prior public releases in control file.
-
Updated ‘Other MYXXdev™ Projects’ section.
-
With SamJet’s release, the MYbloXX® (14+) package is no longer needed. The 13+ package will now cover both iOS 13 and 14.
-
--------------------------------------
-
~ v3.071121-BFM
-
Active Configuration added to settings bundle to show which configuration you're currently running.
~Default Configuration (formerly Standard PAC Profile) is now applied immediately after installation and active upon respring.
-
Discord Support Group added.
-
Full support for all jailbreaks including the latest versions of unc0ver and Taurine.
-
Full support for iOS 4 - 14.
-
General code cleanup.
-
Jetsam modifications to fix connectivity issues on iOS 14.0 - 14.3.
-
MYbloXX® is now a one tap installation / uninstallation process.
-
Manual installation of profiles is no longer required.
-
New configurations added as requested by users (noSocials / noApple).
-
One tap configuration switching.
-
Optional DNS addons (Cloudflare / Google / Quad9 - iOS 14 only).
-
PAC files re-written / optimized.
-
Settings bundle re-designed.
-
Speedy Ads feature added (with CC toggle).
-
Supervision spoofing is no longer required (but remains an option for those wanting to use otaDelay at a later date).
-
YouTopia (sinfool) is now bundled with MYbloXX®.
-
noFB renamed to allowFB for clarity.
-
--------------------------------------
-
~ v2.042721
-
Added measures to ensure profile doesn't get stuck during re-installation/update if disabled.
-
Added unc0ver advisory message during installation.
-
Changed how configd is restarted when toggled.
-
Cleaned up inst code.
-
Modified the CC icon (a little smaller).
-
MYbloXX® Data+ Added: Take further control of your data/privacy by using the MYbloXX® Data+ addon to enable/disable Wi-Fi and/or cellular data on an app by app basis. Settings > Cellular > Choose App.
-
otaDelay Added: This profile is the same profile that was used recently to OTA update from <14.2.1 to 14.3 by enforcing a 90 day delay on your device... You'll benefit from this in the future if a jailbreak is released for an unsigned version that falls within the 90 day delay update window. More information will follow regarding this if/when that happens.
-
OTA Disabler / Enabler: Similar to iCleaner Pro and other OTA disabling tweaks, OTA Disabler / Enabler provides a one-click solution to quickly enable/disable OTA updates at a system-level.
-
Refresh Connection Cache Added: This has been added to allow the user quick access to clear their connection cache by restarting configd and mDNSResponder. Although not needed, if you think your connection is lagging, this will keep things running smoothly and could potentially help with those that want to stay on u0 6.1.2 (not recommended).
-
--------------------------------------
-
~ v2.040821
-
14.3 update loophole added for one-click convenience.
-
Banners / Logo redesigned.
-
CC toggles further improved to shorten time between status changes (delay).
-
Changes to preinst to ensure everything related to MYbloXX® from older versions is cleared / removed prior to installing the new package.
-
Enable / Disable SafariBlocker option added.
-
Scripts optimized.
-
--------------------------------------
-
~ v2.040221
-
Added “don’t trip” messages to script about yellow/red message during installation/removal.
-
Changed the look of the Control Center toggle.
-
Fancy installation script removed for the sake of Substitute.
-
Fixed buttons on CoolStar jailbreaks.
-
Fixed Killed: 9 bug on u0 / Substitute.
-
Removed MYbloXX® Cleaner as a dependency / Added as a conflict to automatically remove the package on update... (No longer needed) - This was temporary... You may or may not have this installed currently.
-
Updated for Taurine jailbreak.
-
Updated SafariBlocker to 1.2.
-
--------------------------------------
-
~ v2.033021
-
Added a separate package for users on iOS 11 & 12 (includes TabBlocker).
-
Added a separate package for users on iOS 13+ (includes SafariBlocker).
-
Added 'Debugging Tool' section to be used for reporting when requested by myself.
-
Added informative FYI pop-ups to profile installation buttons.
-
Added / re-wrote details to user facing installation scripts.
-
BETA profile added for iOS 14 ONLY (DNS) - (iOS 13+ package).
-
Buttons in Settings now work on all iOS versions/jailbreaks.
-
Buttons in Settings are now dynamic and will show depending on current status.
-
Changed the method used to enable/disable MYbloXX®. The toggles will now work on ALL versions of iOS without breaking Safari/browser connections.
-
Changed the profile installation fetch method to direct links rather than "slide to install" to fix iPad issues.
-
Commands now run from a .sh script outside of postinst/postrm.
-
Control Center toggle added to easily enable/disable MYbloXX® blocking.
-
Exchanged SafariBlocker for TabBlocker - (iOS 11 - 12 package).
-
ldrestart is no longer required. Profiles can be installed immediately after installation as well as on-the-fly spoofing changes.
-
LetMeBlock has been removed as a conflict to allow those that need to modify/use their hosts file to access content in geo-restricted areas etc.
-
MYXX FM™ now opens with Music for immediate listening - (iOS 13+ package).
-
Overall changes within Settings bundle.
-
PAC + noFB and PAC + noXXX have been added to profile selections.
-
P2Kdev support section added to Settings bundle - (iOS 13+ package).
-
P2Kdev support section removed from Settings bundle - (iOS 11 - 12 package).
-
Removed confirmation prompts from Control Center toggles - Now dynamic / immediate.
-
Removed noOTA profile due to upcoming expiration date (04/01/21) - To be re-added at a later date.
-
Scripts have been stripped to a bare minimum for the sake of Substitute.
-
Soft Reboot button has been removed (no longer required).
-
TabBlocker updated for iOS 14 (now SafariBlocker by P2KDev) - (iOS 13+ package).
-
Updated SafariBlocker to 1.1.1
-
--------------------------------------
-
~ v2.020121
-
Fixed additional checkra1n issues that were caused by certain commands.
-
Fixed TabBlocker Preferences bundle hijack issue for some users (TabBlocker now has its own section as well as inside of the MYbloXX® bundle).
-
Removed launchctl reboot userspace commands and reverted to ldrestart for the time-being until Coolstar fully fixes Chimera/Odyssey officially.
-
Small UI changes.
-
Switched from sbreload to killall -9 backboardd to fix crashing app issue on checkra1n after installation.
-
--------------------------------------
-
~ v2.013121
-
Fixed (Cancel) button colors.
-
Fixed Disable Profile link.
-
Fixed Header in Settings for light mode users.
-
--------------------------------------
-
~ v2.013021
-
Fixed Music and AirDrop
-
Package will no longer trigger an automatic ldrestart upon successful installation. Prompts have been added in Settings - MYbloXX®.
-
Switched from ldrestart to official launchctl reboot userspace support. Chimera/Odyssey users: Although userspace is “fixed” according to Coolstar, I have included a hacky solution that will always ensure you’re booted back into a jailbroken state.
-
Added confirmation prompts to all sections in MYbloXX® settings.
-
General visual overhaul.
-
FAQ | User Guide link added.
-
MYbloXX® Access Tester added - A quick easy way to check if MYbloXX® is enabled on your device.
-
Soft Reboot button changed/added - Easily perform a userspace reboot.
-
sinfool section added.
-
--------------------------------------
-
~ v1.121820
-
Ad/Issue reporting has been moved to the Settings bundle.
-
Enable/Disable options added.
-
isSupervisedBeGone has been replaced with on-the-fly buttons within the Settings bundle. You can spoof/remove "supervision" / "the message" with ease.
-
ldrestart button has been added to the Settings bundle for quick access.
-
MYbloXX® Legacy profile added (for iOS 12 and BELOW only).
-
Overall visual overhaul.
-
TabBlocker settings have been moved into their own category within the Settings bundle.
-
--------------------------------------
-
~ v1.101220
-
Initial release.
-
Author: MYXXdev™
Name: MYbloXX® (iOS 11 & 12)
Package: net.myxxdev.mybloxx13
Version: 4.020822-13
Architecture: iphoneos-arm
Maintainer: MYXXdev™
Installed-Size: 2588
Pre-Depends: dpkg
Depends: com.opa334.ccsupport, com.opa334.libundirect, curl, firmware (>=13.0), firmware (<=15.0), mobilesubstrate, plutil, preferenceloader, ws.hbang.common
Conflicts: com.ceadd.blockyoux-procursus, com.ceadd.blockyoux, com.ceadd.blockyou10, com.ceadd.blockyou11, com.ceadd.blockyou12, com.droomone.tabblocker, com.git-anish.mdnsrestart, com.nathanaccidentally.mdnsflush, com.myrepospace.reddestdream.minimal, com.myrepospace.basic.basic, com.p2kdev.safariblocker, com.reddestdream.minimalhostsblocker, com.reddestdream.mhbcb, com.sinfool.youtopia, com.thireus.hostscleaner, com.thireus.untrustedhostsblockerlight, com.thireus.untrustedhostsblockermegaipv4, com.thireus.untrustedhostsblockermega, com.thireus.untrustedhostsblockerexperimental, net.myxxdev.mybloxx, net.myxxdev.mybloxx10, net.myxxdev.mybloxx11, net.myxxdev.mybloxx13, net.myxxdev.mybloxx14, net.myxxdev.mybloxx4, net.myxxdev.mybloxxlite13, net.myxxdev.mybloxxlite14, net.myxxdev.issupervisedbegone, net.myxxdev.mybloxxhipfix, net.myxxdev.mybloxxupdater
Replaces: com.droomone.tabblocker, com.p2kdev.safariblocker, net.myxxdev.issupervisedbegone, net.myxxdev.mybloxx, net.myxxdev.mybloxx10, net.myxxdev.mybloxx11, net.myxxdev.mybloxx13, net.myxxdev.mybloxx14, net.myxxdev.mybloxx4, net.myxxdev.mybloxxlite13, net.myxxdev.mybloxxlite14, net.myxxdev.mybloxxhipfix, net.myxxdev.mybloxxupdater
Filename: debs/net.myxxdev.mybloxx13_4.020822-13_iphoneos-arm.deb
Size: 218856
MD5sum: aea5b8985bd0481555f541753cac275e
SHA1: 81e7feab461ac9fe003a42af55afd23c65a3aa21
SHA256: af51d859824b9378307471395a83b4c2810e055f39b1d8602ce4e57e37c36af8
Section: Networking
Description: An AUTO-UPDATING Ad Blocker!
• Description:
What makes MYbloXX® better than the alternatives?
-
• AUTO-UPDATING.
• BETTER BATTERY LIFE.
• FASTER BROWSING.
• INTEGRATED POP-UP/REDIRECT BLOCKER.
-
Security is a top priority for everybody... MYbloXX® is no different. This uses absolutely no third-party servers to re-route your traffic, unlike ffapple and other third-party DNS/Ad blocking App Store apps. They claim to not do so but how do we REALLY know that? MYbloXX® is different: All traffic is routed DIRECT...
-
MYbloXX® checks against specified rules set within a PAC file. If the domain requested is within the PAC's rule list, it will sinkhole. The PAC congifuration uses wildcards to more effeciently block targeted ad-servers and known domain structures like http://ad._____
-
The use of wildcards means a vast majority of entries within the hosts file can be removed to ensure a fast, efficient ad-blocking method.
-
MYbloXX® uses a powerful Apple stock feature that is usually only available to those with "supervised" devices. It also allows for on-the-fly updates to quickly add new ad-servers and works on all versions of iOS, all carriers and ISP’s (IPv4 and IPv6 respectively).
-
MYbloXX® aims to block as many ads as possible out of the box using a technique that has not been used in any other ad-blocking tweaks until now. With new ad servers being created on a daily basis, on rare occasions, it’s possible you’ll come across an ad in an app/on a website.
-
If this happens, please use the reporting feature in Settings.
-
Ad-servers that are added to MYbloXX® will be updated AUTOMATICALLY on your device providing up to the minute protection from ads, revokes, trackers, miners and all other malicious content/threats.
-
• Works for Wi-Fi and data (5G/LTE/4G/3G) connections.
• Does not rely on hosts/other tweaks to work.
• Works in stock AND jailbroken mode.
• Works alongside VPN servers/apps.
• Blocks all language ad-servers.
• Blocks user stats scripts.
• Blocks pop-ups/Redirects.
• IPv4/IPv6 compatibility.
• Blocks in-game ads.
• Blocks tweak ads*.
• No battery drain.
• Auto-updates.
-
Thank you for choosing MYbloXX®!
♥ MYXXdev™
--------------------------------------
--------------------------------------
• Changelog:
--------------------------------------
-
~ v4.020822
-
A fix for the stock iOS 14 notifications bug that we’ve all been plagued with (notifications not coming in from apps) is now included with MYbloXX®.
-
Access Tester has been renamed to Access Checker with the addition Blocking Statistics.
-
AdReport! / xReport! pages are now consolidated into one with new options to report via Telegram, Reddit and Discord.
-
Added additional projects to ‘Tweak Support’ section.
-
Advanced Settings section added with the ability to add custom blacklist / whitelist rules to a self-hosted PAC that can also be applied to your device. Custom rules you input will be added by downloading the latest ruleset from the current MYbloXX® Default PAC, inserted and generated into your own PAC file (saved at /var/mobile/MYbloXXCustom.pac) that you can then upload to your chosen hosting provider. Please reference the Advanced Settings page for additional information (on the page and in pop ups) as well as a How-To video. Both URL’s and wildcards can be entered separated by a comma (eg. cnn.com,facebook.com,espn.com)
-
All PAC files have been re-written from scratch, omitting ASCII and other characters / rules that I suspect iOS may have had issues rendering.
-
All behind-the-scenes scripts have been re-written and optimized.
-
All buttons / toggles will now run cFix as an added measure to ensure CFNetwork doesn’t hang / lose configuration. This will also help if somebody experiences a connection issue (GOD FORBID)... A simple toggle on / off will bring back connectivity (as well as ‘Reset iOS Connection Cache’ button / switching between other configurations) without the need of an reboot / ldrestart.
-
All scripts optimized for reliability.
-
Changes made to CFNetwork that will force iOS to keep the service alive - The reason why some were seeing connectivity issues was due to this service losing its configuration / dying and not restarting like it should. MYbloXX® will now take care of this automatically. This was addressed officially in 15.2 by along with some other CFNetworkAgent related issues.
-
Compressed images to make Debian package smaller in size.
-
Custom PAC Configuration video added for step-by-step instructions on how to use.
-
Custom Proxy Server section added for those that may need to use a proxy server while having MYbloXX® installed... If you don’t know what this is, please don’t use it. To add, unlike iOS stock implementation of this where you can only add a proxy server to your current WiFi connection, this will allow the proxy server to run on mobile data too. Enter as http://server:port
-
DownDetector button/link added for convenience to allow a user to check if a website/service/app is down prior to submitting an unnecessary report.
-
Everything MYbloXX® filesystem wise has been relocated at the request of a user... This won’t effect usability/performance in any way.
-
Fallback has been enabled to ensure users never lose connectivity if the PAC host goes down (very rare). If this were to happen, ads will show temporarily until the PAC host is back up.
-
for iOS dropped from name to become uniform with other tweaks.
-
Future MYbloXX® updates will now remember prior settings / configurations after installation so it will keep whatever configuration the user had prior to updating instead of reverting everything back to Default settings (including YouTopia / SafariBlocker).
-
General overall improvements while browsing.
-
Jetsam modifications are no longer included in MYbloXX®. With the changes made, they’re no longer a necessity for most devices (with MYbloXX® specifically) BUT they’re still available for those that wish to apply them for general system stability (for iOS 14 only). You can find this in the newly released package on the MYXXdev™ repository (SamJet®).
-
Legacy Mode has been added at the request of a user which allows the old method of installation (via Profiles)... I don’t recommend using this unless you truly have a reason to.
-
MYbloXX® will no longer remain installed when a user performs rootfs or restores from backup on a new/updated device.
-
New Configuration added (allowY - Allow Yahoo! Ads - This fixes some features in Yahoo! apps but WILL show ads!)
-
Patreon option added for those that wish to contribute monthly. Other donation options have been separated and moved to Tweak Support.
-
Re-written the tweak from the ground up omitting unnecessary code.
-
Reddit and Email contact links added.
-
Removed otaDelay®, making it a stand-alone tweak (available on the MYXXdev™ Repository).
-
Removed package depictions because I’m too lazy to have to update via HTML every update. Shifted back to control file for ease.
-
Reset (basically a re-install) button added to Settings > Utilities / Other.
-
Root check added on pre-installation to ensure user has correct r/w permissions.
-
Settings UI overhaul / complete re-design.
-
Shifted everything PAC related from GitHub to archive.org to ensure more users can benefit from MYbloXX® if they reside in a country that blocks access to GitHub. At this time, test results show that CHINA is the only country that will NOT be able to use MYbloXX®. Users do have the option to select whether they’d like to use the PAC hosted on archive.org (default selection on install) or GitHub. All PAC’s are the same, just hosted on different platforms. It’s down to personal preference (if you have the luxury of residing somewhere that doesn’t block GitHub). This will also come in handy if/when a host goes down. For example: If you’re using archive.org and their servers go down, you can switch to the GitHub PAC temporarily until service is restored. This very rarely happens but at least the option is there.
-
Support for iOS 4 - 10 has been dropped for now - This may return in the future depending on demand.
-
Toggle status is now checked against the file to ensure the change has been made to cease iOS confusion. This may cause a slight delay in toggle times periodically (depending on your current RAM usage) but this is a fail-safe feature that assists in files not becoming corrupted in turn needing re-installation.
-
Updated changelog for all prior public releases in control file.
-
Updated ‘Other MYXXdev™ Projects’ section.
-
With SamJet’s release, the MYbloXX® (14+) package is no longer needed. The 13+ package will now cover both iOS 13 and 14.
-
--------------------------------------
-
~ v3.071121-BFM
-
Active Configuration added to settings bundle to show which configuration you're currently running.
~Default Configuration (formerly Standard PAC Profile) is now applied immediately after installation and active upon respring.
-
Discord Support Group added.
-
Full support for all jailbreaks including the latest versions of unc0ver and Taurine.
-
Full support for iOS 4 - 14.
-
General code cleanup.
-
Jetsam modifications to fix connectivity issues on iOS 14.0 - 14.3.
-
MYbloXX® is now a one tap installation / uninstallation process.
-
Manual installation of profiles is no longer required.
-
New configurations added as requested by users (noSocials / noApple).
-
One tap configuration switching.
-
Optional DNS addons (Cloudflare / Google / Quad9 - iOS 14 only).
-
PAC files re-written / optimized.
-
Settings bundle re-designed.
-
Speedy Ads feature added (with CC toggle).
-
Supervision spoofing is no longer required (but remains an option for those wanting to use otaDelay at a later date).
-
YouTopia (sinfool) is now bundled with MYbloXX®.
-
noFB renamed to allowFB for clarity.
-
--------------------------------------
-
~ v2.042721
-
Added measures to ensure profile doesn't get stuck during re-installation/update if disabled.
-
Added unc0ver advisory message during installation.
-
Changed how configd is restarted when toggled.
-
Cleaned up inst code.
-
Modified the CC icon (a little smaller).
-
MYbloXX® Data+ Added: Take further control of your data/privacy by using the MYbloXX® Data+ addon to enable/disable Wi-Fi and/or cellular data on an app by app basis. Settings > Cellular > Choose App.
-
otaDelay Added: This profile is the same profile that was used recently to OTA update from <14.2.1 to 14.3 by enforcing a 90 day delay on your device... You'll benefit from this in the future if a jailbreak is released for an unsigned version that falls within the 90 day delay update window. More information will follow regarding this if/when that happens.
-
OTA Disabler / Enabler: Similar to iCleaner Pro and other OTA disabling tweaks, OTA Disabler / Enabler provides a one-click solution to quickly enable/disable OTA updates at a system-level.
-
Refresh Connection Cache Added: This has been added to allow the user quick access to clear their connection cache by restarting configd and mDNSResponder. Although not needed, if you think your connection is lagging, this will keep things running smoothly and could potentially help with those that want to stay on u0 6.1.2 (not recommended).
-
--------------------------------------
-
~ v2.040821
-
14.3 update loophole added for one-click convenience.
-
Banners / Logo redesigned.
-
CC toggles further improved to shorten time between status changes (delay).
-
Changes to preinst to ensure everything related to MYbloXX® from older versions is cleared / removed prior to installing the new package.
-
Enable / Disable SafariBlocker option added.
-
Scripts optimized.
-
--------------------------------------
-
~ v2.040221
-
Added “don’t trip” messages to script about yellow/red message during installation/removal.
-
Changed the look of the Control Center toggle.
-
Fancy installation script removed for the sake of Substitute.
-
Fixed buttons on CoolStar jailbreaks.
-
Fixed Killed: 9 bug on u0 / Substitute.
-
Removed MYbloXX® Cleaner as a dependency / Added as a conflict to automatically remove the package on update... (No longer needed) - This was temporary... You may or may not have this installed currently.
-
Updated for Taurine jailbreak.
-
Updated SafariBlocker to 1.2.
-
--------------------------------------
-
~ v2.033021
-
Added a separate package for users on iOS 11 & 12 (includes TabBlocker).
-
Added a separate package for users on iOS 13+ (includes SafariBlocker).
-
Added 'Debugging Tool' section to be used for reporting when requested by myself.
-
Added informative FYI pop-ups to profile installation buttons.
-
Added / re-wrote details to user facing installation scripts.
-
BETA profile added for iOS 14 ONLY (DNS) - (iOS 13+ package).
-
Buttons in Settings now work on all iOS versions/jailbreaks.
-
Buttons in Settings are now dynamic and will show depending on current status.
-
Changed the method used to enable/disable MYbloXX®. The toggles will now work on ALL versions of iOS without breaking Safari/browser connections.
-
Changed the profile installation fetch method to direct links rather than "slide to install" to fix iPad issues.
-
Commands now run from a .sh script outside of postinst/postrm.
-
Control Center toggle added to easily enable/disable MYbloXX® blocking.
-
Exchanged SafariBlocker for TabBlocker - (iOS 11 - 12 package).
-
ldrestart is no longer required. Profiles can be installed immediately after installation as well as on-the-fly spoofing changes.
-
LetMeBlock has been removed as a conflict to allow those that need to modify/use their hosts file to access content in geo-restricted areas etc.
-
MYXX FM™ now opens with Music for immediate listening - (iOS 13+ package).
-
Overall changes within Settings bundle.
-
PAC + noFB and PAC + noXXX have been added to profile selections.
-
P2Kdev support section added to Settings bundle - (iOS 13+ package).
-
P2Kdev support section removed from Settings bundle - (iOS 11 - 12 package).
-
Removed confirmation prompts from Control Center toggles - Now dynamic / immediate.
-
Removed noOTA profile due to upcoming expiration date (04/01/21) - To be re-added at a later date.
-
Scripts have been stripped to a bare minimum for the sake of Substitute.
-
Soft Reboot button has been removed (no longer required).
-
TabBlocker updated for iOS 14 (now SafariBlocker by P2KDev) - (iOS 13+ package).
-
Updated SafariBlocker to 1.1.1
-
--------------------------------------
-
~ v2.020121
-
Fixed additional checkra1n issues that were caused by certain commands.
-
Fixed TabBlocker Preferences bundle hijack issue for some users (TabBlocker now has its own section as well as inside of the MYbloXX® bundle).
-
Removed launchctl reboot userspace commands and reverted to ldrestart for the time-being until Coolstar fully fixes Chimera/Odyssey officially.
-
Small UI changes.
-
Switched from sbreload to killall -9 backboardd to fix crashing app issue on checkra1n after installation.
-
--------------------------------------
-
~ v2.013121
-
Fixed (Cancel) button colors.
-
Fixed Disable Profile link.
-
Fixed Header in Settings for light mode users.
-
--------------------------------------
-
~ v2.013021
-
Fixed Music and AirDrop
-
Package will no longer trigger an automatic ldrestart upon successful installation. Prompts have been added in Settings - MYbloXX®.
-
Switched from ldrestart to official launchctl reboot userspace support. Chimera/Odyssey users: Although userspace is “fixed” according to Coolstar, I have included a hacky solution that will always ensure you’re booted back into a jailbroken state.
-