historical/BLEEPiOS.git/ios-tasr.c
2024-01-16 11:20:27 -06:00

11 lines
956 B
C

#include <stdio.h>
int main() {
// Some sample code to get you started on your iOS exploiting journey! :-)
printf("***Welcome to BLEEPiOS!***\n\n\nExplanation: putting this in a legit IPA's code should make a 'Terminate and Stay Resident' program. (C in the background)");
printf("\nThis means this code will run, but won't be visible to the end-user.");
printf("\nI (Sparksammy) made this just to show those iOS skids that,\n (with enough effort) even a couple of average-minded people can exploit iOS.");
printf("\nThis was ***years*** in the making, over the span of around 3.3 YEARS, on and off again. \n (So more like 2.1 months total effort) \n Shocked that no one has thought of this sooner.");
printf("\nFeel free to use this within the confines of the MIT license! Enjoy!");
printf("\n\n --Sparksammy (Remember, none of this will show up by default!)"); //so it's kinda like comments by default. :-/
return 0;
}