• Home
  • Apple News
  • Jailbreak News
  • Android News
  • Wallpapers
  • Deals

iJailbreak | Jailbreak And iOS News

iJailbreak is an online resource for jailbreak and unlock iPhone, iPad, iPod Touch, Apple TV and iOS news.

  • How To Jailbreak
    • Cydia Installer: Everything You Need To Know
    • What Is Jailbreaking? Why Should I Jailbreak?
    • Untethered vs Tethered vs SemiTethered Jailbreak
  • Jailbreak Software Tools
    • PP Jailbreak
    • TaiG
    • Pangu
    • Evasi0n (Evasi0n7)
    • Absinthe
    • JailbreakMe.com
    • RedSn0w
    • GreenPois0n
    • Sn0wBreeze
    • PwnageTool
    • LimeRa1n
    • Spirit
    • BlackRa1n
    • Seas0nPass
    • Developers
  • How To Unlock
  • How To Downgrade
    • How To Save SHSH Blobs
    • TinyUmbrella
    • iFaith
    • F0recast
  • Cydia Tweaks
    • Top / Best Cydia Tweaks
    • Best Cydia Sources
    • Siri Cydia Tweaks, Hacks, Mods
    • Spire Proxy Host List
  • How To Root
    • Top / Best Custom ROMs
  • Downloads

How To: Setup A Spire Server Without iPhone 4S Authentication Keys Using SiriServer [In-Depth]

February 3, 2012 by Jaden Easton-Ellett 103 Comments

A few days ago we told you about a new project being developed with the help of @cale250 dubbed SiriServer that will actually replace the need for Siri to contact Apple’s server altogether. This is because instead of using Apple’s servers for the speech processing SiriServer uses Google Speech-To-Text API. While this is a great development because it takes away the need for iPhone 4S Authentication keys (you no longer need to have access to an iPhone 4S), it does mean that you are limited to commands that are shorter than 10 seconds. The developer notes that he may be able to overcome this, but at this time this 10 second command limitation is here to stay.

For those of you who were interested in setting up a server using SiriServer you will be glad to know that in this how to guide from iJailbreak.com you will learn how to setup SiriServer on a Linux computer or Linux virtual machine. This will allow you to use Siri on your older generation iOS device thanks to the Spire Cydia tweak without the need of iPhone 4S authentication keys.

Note: Please keep in mind that SiriServer will work on Mac OS X, but in this tutorial we will be setting it up on Ubuntu (a form of Linux).

Setup SiriServer Ubuntu

Section A: Setting Up The Required Components 

Step 1 Windows: For Windows users it should be fairly easy to get Ubuntu working on your computer (as there is numerous ways). Probably the easiest way to do this is to go to the Ubuntu download page by clicking here, and then simply following the instructions for dual-booting your computer with Ubuntu. You could of course also use a Virtual Machine (like virtualbox), or boot Ubuntu from a CD or USB drive.

Step 1 Mac OS X: For Mac OS X users your options of running Ubuntu are slightly more limited. You can either use a Virtual Machine (like virtualbox) or of course you can boot Ubuntu from a CD or USB drive by clicking here.

Step 2: Once you have found a way to get access to an Ubuntu computer you will need to launch terminal and type in the following command:

sudo apt-get install libspeex1 libflac8

Tip: If you do not want to type all of the Terminal commands shown in this tutorial you can copy the command and paste it into Terminal by right clicking and then clicking the paste option.

Step 3: Make sure you keep Terminal open, as we will come back to it soon, but you will now need to open the Ubuntu Software Center. Once the Ubuntu Software Center is up and running you will need to search for the following:

Python

When you see Python on the search results (it will be labeled interactive high-level object-orientated language (default version)) you will need to install it to your Ubuntu computer.

If you do not see an Install button, but rather a Remove button this means you already have Python installed and can move on to step 4.

Step 4: Next you will need to install another package to your Ubuntu Computer, thus search for the following through the Ubuntu Software Center:

M2Crypto

When you see M2Crypto appear on the search results you will need to click it and install it your Ubuntu computer.

Step 5: We will now be exiting the Ubuntu Software Center and going back over to terminal. With Terminal resumed you will need to enter the following command:

sudo apt-get install python-setuptools

Step 6: Once the command above has been executed you will need to enter the command shown below:

sudo easy_install biplist

Step 7: It is now time to download the SiriServer files. Go to the official SiriServer GitHub page and download the files as .zip file by clicking here.

Step 8: Extract the the file you just downloaded and rename the folder to:

siriserver

Step 9: Now go back to Terminal and type in the following command to go into the Downloads directory:

cd ~/Downloads

Step 10: Next type in the command shown below to move the SiriServer files into your Ubuntu root directory:

sudo mv siriserver /

Note: It is recommend that you double check to see if your SiriServer folder was indeed moved to the the Ubuntu root directory. To double check this open up a folder, go into the File System tab and you should see siriserver sitting there.

Section B: Generating Your Certificate 

Step 11: The SiriServer files have now been placed in the correct directory. We have now setup all of the required components for SiriServer to work. Congratulations for getting this far! We will now start generating the certificate for your iOS device to properly connect to the server you are creating. To do this the first thing you need to do is go into the proper directory:

cd /siriserver/gen_certs

Step 12: From here you will need to enter the command shown below. Keep in mind, however, that you will replace XXXXX with most likely an IP Address or in some cases a domain name (for more information click here).

./gen_certs.sh XXXXX

Example: ./gen_certs.sh 192.168.1.1

OR ./gen_certs.sh domain.com

Step 13: After you have entered the command shown above you will find a certificate file named ca.pem in the SiriServer directory (the SiriServer folder that you moved to the Ubuntu root directory). When you see the ca.pem file in the SiriServer directory you will need to copy it to your desktop and email it to yourself.

Section C: Installing The Certificate

Step 14: Now you will need to grab your iOS device, fire up your email client and click the ca.pem file you attached to your email.

Step 15: When you click the attachment you will need to click the Install button, read the warning screen, click the other Install button, and finally click the Done button.

Step 16: With the certificate now installed, you will need to go back into the Settings.app, into the Spire tab and you will need to enter the address of your server. This will be whatever you replaced XXXXX with in step 12.

Example:

OR https://domain.com

Note: Keep in mind that you are using https not http.

Section D: Activating The Server

Step 17: Everything has now been configured, and the final step is to begin the server. To do this navigate to the SiriServer directory by entering the following command:

cd /siriserver

Step 18: Finally you will need to enter that command that will turn the server on:

sudo python siriServer.py

Your server should now be up and running and you can try using Siri on your iOS device. We hope you have enjoyed this how to guide from iJailbreak.com on setting up SiriServer to use Siri on your older generation iOS device with the Spire Cydia tweak. If you are having troubles we suggest visiting the official documentation page by clicking here. Of course you can always leave your questions in the comments section below and we will try and help you out as best as we can.

Comments

  1. A Gheriany says

    February 3, 2012 at 5:00 am

    it dont recognize what i am saying and tells me sorry i dont understand “what i said”

  2. David says

    February 3, 2012 at 5:08 am

    Can anyone confirm that this does indeed work?

  3. guest says

    February 3, 2012 at 5:12 am

    so I have to turn on my PC all day to get my siri?

  4. Robin Jonsson says

    February 3, 2012 at 5:14 am

     That, or buy a cheap VPS server, install it remotely, and voila!

  5. Sumeet Prasad says

    February 3, 2012 at 5:46 am

    i tried this and didnt work at all. i could see my phone commnuicating with the computer but save server issues!

  6. Guest says

    February 3, 2012 at 5:48 am

    why can’t have offline mode siri?

  7. Sumeet Prasad says

    February 3, 2012 at 6:17 am

    tried it again and worked. but doesnt understand anything LOL!

  8. Anonymous says

    February 3, 2012 at 6:25 am

    There is new tweak called MyAssistant + Spire to setup your custom commands or you can say offline siri..!! ;)

  9. Qusjs says

    February 3, 2012 at 6:48 am

    Not work

  10. Cyril Lim says

    February 3, 2012 at 7:03 am

    Works well! Woohoo!

  11. Robin Jonsson says

    February 3, 2012 at 8:04 am

     Yeah it’s really bad…

  12. Abdudu86 says

    February 3, 2012 at 8:13 am

    Can’t we do the same thing on our Iphone so there will be no need for server we could access siri from our own devices.. 
     

  13. Ryan says

    February 3, 2012 at 8:41 am

     It does work, but there are only two things you can do with it.

    1) Ask it what time it is and it will say and show you a clock.
    2) Ask it the Meaning of life and it will respond with a single answer.

    Although there are ways to add plugins to add functionality,

  14. Ahmad M. Shurbaji says

    February 3, 2012 at 10:27 am

    There’s no siri for ipad 2 ?! :( i need it :-D

  15. Ahmad M. Shurbaji says

    February 3, 2012 at 10:27 am

    Please help ! :D

  16. Patryk says

    February 3, 2012 at 2:26 pm

    Not working :( Chcesz pomoc ? to pisz na gadu-gadu 25214439.

  17. MrAnonym says

    February 3, 2012 at 5:20 pm

    It does not work for me. It always comes the message “really sorry …”. Port 443 is forwarded. Can anyone help me please.

  18. iTink says

    February 3, 2012 at 5:57 pm

    Siri response limited or not at all. I know it reads me but can give response.

    Dictation works flawlessly and quickly. I run it off my MacPro tower with Ubuntu.

  19. Keko Diaz says

    February 3, 2012 at 7:54 pm

     Yup, that’s exactly what it does, dictation also works if anyone’s interested in that.

  20. Ricky says

    February 3, 2012 at 8:41 pm

    when i downloaded this and entered in the first command it told me i had to enter in a password but when i tried to do that it wouldn’t let me do you have to be a root user to use this

  21. Oliver says

    February 4, 2012 at 1:11 am

    THIS WORKS IN 100% I USE MY LAPTOP LIKE A SERVER AND TAKE MY SIRI WITH ME JAJAJAJAJJA JUST YOU NEED TO KNOW A LITTLE  THINGS ABOUT LINUX AND IS EASIER I MAKE MY SERVER IN 10 MINUTES

  22. MrAnonym says

    February 4, 2012 at 10:38 am

    What kind of attitude you are all done on Linux. If you used Virtual Box, what have you done there yet. For me itgoes wrong with the connection from the server to the device.

  23. oliver says

    February 4, 2012 at 2:38 pm

    Im not using virtual box cuz you will need to consume more of your ram now i need to make a server cuz wille be more easier

    look open the terminal “console with ” control + alt + t
    type  “ifconfig” and check your ip
    then when you will gen the certification  ca.pem use the ip that you see in the console another thing my friend you need to configure virtual box cuz

    your pc has an ip
    and virtual box has another so you never will be able to comunicated with the server

    make some research about how to configure your virtual machine network

    sorry for my english mistake cuz i speak espanish my friend good look

  24. Dana says

    February 4, 2012 at 4:05 pm

    I followed all the instructions and everything goes well till the last step when I try to run the server , I get an error saying: No module named jsonrpclib :(

    Please help me

  25. Nauman Ahmad says

    February 4, 2012 at 3:56 pm

    I was today setting it up and it ruined my whole iPad! :(

  26. David_torres Bcn says

    February 4, 2012 at 4:55 pm

    my iPod and the server have different IP’s HELP PLEASE, how can I get this done?

  27. Chris Marroquin says

    February 4, 2012 at 7:50 pm

    as do I!!

  28. Sorry says

    February 4, 2012 at 9:59 pm

    I’m stuck at last step,
    no module named jsonrpclib

    please help…thanks

  29. Mike says

    February 4, 2012 at 10:47 pm

    Those who cannot run SiriServer because of jsonrpclib, run the following command:

    “sudo easy_install jsonrpclib”

  30. Freyruiz33 says

    February 5, 2012 at 12:43 am

    on your ipad go to settings wifi (name) press> and on DNS put your server address (xxxxxxxxxxx) thats it

  31. Freyruiz33 says

    February 5, 2012 at 12:50 am

    ok guys this is my question i got everything my siriproxi where it saids Starting SiriProxy on port 443.and certificate installed on ipad same ip on ipad as proxi server but won’t communicated any ideas please thank you.

  32. ykyboom says

    February 5, 2012 at 1:16 am

    Help guys, I’m a newbie. on step 7 I’m confuse, which files should I download there are so many of them. thanks

  33. ykyboom says

    February 5, 2012 at 1:51 am

    thanks man

  34. Uryelj says

    February 5, 2012 at 2:42 am

    at first it work but i accidentally close terminal and i have to do it again but when i do it again that last commend doesnt work and it wont start the server???
    i need help on how to start over  

  35. Soulsurfa says

    February 5, 2012 at 8:43 am

    ok so I got the server working
    INFO handle_accept Incoming connection from (‘10.1.1.16’, 49157)INFO handle_accept Incoming connection from (‘10.1.1.16’, 49158)

    loads of incoming connections but siri gives the same answers.

    “I’m really sorry about this……try again in a little while”

    what did I get wrong? or is this it for now

  36. MrAnonym says

    February 5, 2012 at 10:08 am

    I have the same problem. 
    Can you let me know if you’ve found the solution. Thank you

  37. MrAnonym says

    February 5, 2012 at 10:10 am

    You can download all files. That’s not a problem.

  38. MrAnonym says

    February 5, 2012 at 12:40 pm

    thx. I installed the server on my notebook and it works. But it gives me always the same answer: I did’nt unterstand… Which command does function?

  39. MrAnonym says

    February 5, 2012 at 12:41 pm

    Which command does function. My server works, but it gives me always the same answer: I did’nt unterstand…

  40. MrAnonym says

    February 5, 2012 at 12:50 pm

    Can I communicate with the Server over 3G?

  41. toker says

    February 5, 2012 at 2:45 pm

    Yes you can.
    You need to configure a static IP address on your siri server and port forwarding on your router.  Since this seems to use https, you will need to forward port 443 to your siri server.

  42. toker says

    February 5, 2012 at 2:45 pm

    Yes you can.
    You need to configure a static IP address on your siri server and port forwarding on your router.  Since this seems to use https, you will need to forward port 443 to your siri server.

  43. toker says

    February 5, 2012 at 2:46 pm

    In my case I am already forwarding 443 to another web server, so I just changed the siri proxy url to and forward 4444 for siri…

  44. Pepe says

    February 5, 2012 at 7:30 pm

    followed the steps correctly but when i go to spire its the usual i cant connect right now…any suggestions??

  45. Nickthepain2 says

    February 5, 2012 at 11:36 pm

    how do you end the server
     

  46. Ryan says

    February 5, 2012 at 11:57 pm

     Control + C

  47. Deanlondonjackson says

    February 6, 2012 at 1:33 am

    Can this be run on a vps ?

  48. Beej1254 says

    February 6, 2012 at 1:33 am

    I got this working and used the few commands successfully. But how do I install the few extra pluggins that weren’t included in the original setup? I’m extreamly new at all of this but ready to learn

  49. Ytwyng22 says

    February 6, 2012 at 6:25 am

    i follow all the steps but still siri say sorry……… how….

  50. Jijinjahangir says

    February 6, 2012 at 11:49 am

     Same here it always says it dont understand :((

  51. MrAnonym says

    February 6, 2012 at 5:09 pm

    It does not work. I have my laptop via wireless on the network.
    Perhaps I have configured the static IP wrong.  On the router I have forwarded port. What do I need to know?

  52. Anastacio Nepomuceno Petronilo says

    February 6, 2012 at 5:34 pm

    Well does anyone knows where to get more plug-ins for this with more answers

  53. Yhs70 says

    February 7, 2012 at 5:19 am

    most of the commands work but most of them dont.. I can see the weather and note files in the siri folder on ubuntu but when I ask siri it replies “sorry i dont understand” any idea how to fix this ?

  54. kien says

    February 7, 2012 at 12:11 pm

    How to start siriserver after closing terminal? tq

  55. Ryan says

    February 7, 2012 at 6:49 pm

     I had the same problem so I installed Cygwin for Windows and have no problem what so ever.  The tutorial is available at

    www . mediafire . com/?4r2dk4vit42detp

  56. Ryan says

    February 7, 2012 at 6:50 pm

     in the terminal type “easy_install jsonrpclib”  it should install the jsonrpc library then.

  57. Cale Cunningham says

    February 7, 2012 at 8:27 pm

    Thanks Jaden for the mention!

    If you need help beyond this guide, please visit #SiriServer on Freenode IRC.

  58. Soccerbeast23 says

    February 7, 2012 at 10:01 pm

    5 Likes and ill make a video tutorial.
     

  59. 822328a says

    February 8, 2012 at 3:04 pm

    Me too any one can help? Pls

  60. Soccerbeast23 says

    February 8, 2012 at 3:23 pm

    Tutorial coming tonight or tomorrow on my youtube channel tzmanitouch.

  61. Soccerbeast23 says

    February 8, 2012 at 3:23 pm

    Video Tutorial.

  62. Soccerbeast23 says

    February 8, 2012 at 3:25 pm

    Video tutorial coming tonight or tomorrow on my youtube channel tzmanitouch.

  63. Soccerbeast23 says

    February 8, 2012 at 4:28 pm

    Video tutorial tonight or tomorrow on my youtube channel tzmanitouch.

  64. Soccerbeast23 says

    February 9, 2012 at 9:03 pm

    I am making a video it will be hope in the next few hours as long as my internet doesn’t stop working will be on youtube just search tzmanitouch and go to my channel follow me on twitter at tzmanitouch for an update when it comes out. 

  65. Soccerbeast23 says

    February 10, 2012 at 10:24 am

    Video is up on my youtube channel tzmanitouch

  66. Amancools says

    February 10, 2012 at 2:19 pm

    CRITICAL load_plugins Failed loading plugin due to missing API key: ‘Could not find API key for: wundergrounds. Please check your apiKeys.conf’

  67. nicsipodhelp says

    February 11, 2012 at 3:29 pm

    i get error “CRITICAL load_plugins Failed loading plugin due to missing API key: ‘Could not find API key for: wolframalpha. Please check your apiKeys.conf'” ANY HELP?

  68. Ivan PsyCore says

    February 12, 2012 at 6:56 pm

    you need to register an api for some plugins

  69. Ivan PsyCore says

    February 12, 2012 at 11:52 pm

    i make it work and now im coding some plugins for testing! i make it work in my ipad =D

  70. Mohamed Zaffry says

    February 13, 2012 at 4:19 am

    so if i do as it says so will i be able to make siri work

  71. Frankie Bloise says

    February 13, 2012 at 5:44 pm

    yes, currently running this in a Windows VPS and Cygwin :)

  72. Frankie Bloise says

    February 13, 2012 at 5:44 pm

     noDNS

  73. Frankie Bloise says

    February 13, 2012 at 5:45 pm

     thanks a lot, followed your tutorial and i have it running in my Windows VPS :)

  74. Frankie Bloise says

    February 13, 2012 at 5:46 pm

     you need to apply for an APi key in those places.

  75. Ryan says

    February 14, 2012 at 8:47 am

     Glad it worked for you!

  76. Frankie Bloise says

    February 14, 2012 at 9:47 am

     is there a way to setup the same siri server in Cygwin but using the iPhone 4s keys?

  77. Frankie Bloise says

    February 14, 2012 at 9:51 am

    You need to run this command: easy_install jsonrpclib

  78. A T says

    February 14, 2012 at 3:29 pm

    im having problems at Step 10.  I unzipped the ZIP file and renaed the contents and dragged it to the downloads.  it says that the “directory is not empty”

  79. Ryan says

    February 14, 2012 at 6:56 pm

    Sorry, but I have no idea.  I have an iPhone 4 so I’m not sure how to do that.

  80. haseeb ahmed says

    February 14, 2012 at 7:04 pm

    sudo apt-get install python-setuptools
    this command isint executing like yours and next one giving error.. also M2crypto has not the info like yours any help?

  81. Yellpw says

    February 17, 2012 at 2:17 pm

    How do you set up a working VPN for the SiriServer so that it is possible to use it over 3G?

  82. kman says

    February 17, 2012 at 7:14 pm

    how did you change the server url

  83. kman says

    February 17, 2012 at 7:15 pm

    and how did you configure a static ip and forwarding would really appreciate it

  84. kman says

    February 17, 2012 at 7:17 pm

    you can code it to do that and create custom commands. You can download a tweak in Cydia that does this. I got a bunch of plugins working so i can ask it a definition, weather, and an encyclopdia. Just apply for some api

  85. Danny Vo says

    February 18, 2012 at 2:46 pm

    I got everything correct but when I try and use siri, it keeps saying incoming connection. It worked before. It doesnt have a speech text anymore, is there anyway i can fix this?

  86. Mahmoud_m10 says

    February 18, 2012 at 3:43 pm

    Hi @google-15ede98c5b54765fe1e26b28647a3f54:disqus ,
    I think your problem with the cert ! .. generate a new one and install in your iPhone .. make sure you don’t have any other profiles (certs) installed ..

    NOTE: certs are different even if u used the same IP !

    try, then post here ;)

  87. Focker says

    February 20, 2012 at 8:12 pm

    How do I do this ??

  88. XxXS1NzOfSiRiXxX says

    February 20, 2012 at 10:08 pm

    okay so…i set this up perfectly and i got all the api keys,but for some reason  all siri returns is “sorry i don’t understand”WHY!?!?!?!

  89. xTc_5oh8 says

    February 21, 2012 at 12:24 am

    Need an answer for this to

  90. Rahezad says

    February 23, 2012 at 6:15 am

    Hey,I cant find M2Crypto in the software center please help ASAP!!!!!!!!! thank you

  91. Chriskopp6 says

    February 25, 2012 at 5:14 am

    any help?

  92. Mrcommencer says

    March 28, 2012 at 8:46 am

    there is already a 443 port running (i think). I restarted and started the siri and works fine

    p.s. I had the same error :)

  93. E Ghafooriyan says

    March 29, 2012 at 10:31 pm

    Please help me:((

    I send certificate file to my email and get it from my iPhone

    Then in spire I write my domin

    But when I hold home button Siri don’t allow me to speak:((

    What can I do?

  94. E Ghafooriyan says

    March 30, 2012 at 6:20 pm

    i make it but siri can’t answer any questions like “how is the weather” and can’t answer when i say hi
    it says “i don’t understand hi”
    what should i do?

  95. Josh Nollman says

    May 15, 2012 at 12:24 am

    i get this error when testing certs 

    Error opening server certificate private key file server.passless.key
    140041446729376:error:02001002:system library:fopen:No such file or directory:bss_file.c:398:fopen(‘server.passless.key’,’r’)
    140041446729376:error:20074002:BIO routines:FILE_CTRL:system lib:bss_file.c:400:
    unable to load server certificate private key file

    HELP PLZ!

  96. Josh Nollman says

    May 15, 2012 at 12:29 am

    i get terminal to go all the way to listening to port 443 there are no errors at all!
    Then when i say hi on my iphone 4 it says sorry blah blah blah blah

    Help PLZ!

  97. Bodo Minea says

    June 4, 2012 at 4:46 pm

    Update your packages :)

  98. Bodo Minea says

    June 4, 2012 at 4:47 pm

    Repeat the last step.

  99. Bodo Minea says

    June 4, 2012 at 4:48 pm

    Just close the terminal window :)

  100. Nkumtakar Blue Lambo says

    June 19, 2012 at 6:49 pm

    how do you install the api of the plugins in the terminal?

  101. Gamerwiidsi says

    July 10, 2012 at 7:52 pm

    It will not work for me it it error can not find api key check your apikeys.conf

  102. Fifo says

    August 2, 2012 at 5:03 am

    You can’t do it in the terminal. Open apiKeys.conf and enter the API key in the corresponding places in the file (you need to register for the APIs first).

  103. Nooby Dooby says

    November 15, 2014 at 6:18 am

    Is there a tutorial out there that shows you how to install Siri on Ubuntu without using an iPhone because, I can’t afford one? Thanks.

Leave a Reply

Your email address will not be published. Required fields are marked *

Read Our Most Recent Articles

Untethered iOS 12 Jailbreak Demoed by Ali Security
Untethered iOS 12 Jailbreak Demoed by Ali Security
iOS 12 Now Available for Download: Compatible Devices
iOS 12 Now Available for Download: Compatible Devices
iPhone X Discontinued, iPhone 8 and iPhone 7 Prices Slashed
iPhone X Discontinued, iPhone 8 and iPhone 7 Prices Slashed
Apple iPhone Xs, iPhone Xs Max, and iPhone Xr Announced
Apple iPhone Xs, iPhone Xs Max, and iPhone Xr Announced
Apple Watch Series 4 Announced With Larger Display, Louder Speaker, and More
Apple Watch Series 4 Announced With Larger Display, Louder Speaker, and More

Follow Our How To Guides

How To: Extra Insurance Against Accidental iOS firmware updates!
How To: Extra Insurance Against Accidental iOS firmware updates!
How To: Enable Native iPad Resolution In iPhone Apps
How To: Enable Native iPad Resolution In iPhone Apps
How To: Jailbreak iOS 5.0.1 On iPhone 4, iPhone 3GS With RedSn0w 0.9.9b9 [Mac OS X]
How To: Jailbreak iOS 5.0.1 On iPhone 4, iPhone 3GS With RedSn0w 0.9.9b9 [Mac OS X]
How To: Delete A Cydia Repository/Cydia Source On iPhone, iPod Touch, iPad [VIDEO]
How To: Delete A Cydia Repository/Cydia Source On iPhone, iPod Touch, iPad [VIDEO]
Bypass Jailbreak Detection Errors With The xCon Cydia Tweak [Time Warner Cable, Cablevision, DirectTV etc.]
Bypass Jailbreak Detection Errors With The xCon Cydia Tweak [Time Warner Cable, Cablevision, DirectTV etc.]
About | Contact | Advertise | RSS Feed | Sitemap | TOS | Privacy Policy

© Copyright 2010 - 2021 iJailbreak. All Rights Reserved.