<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.theiphonewiki.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dankzegriefer</id>
	<title>The iPhone Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.theiphonewiki.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dankzegriefer"/>
	<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/wiki/Special:Contributions/Dankzegriefer"/>
	<updated>2026-06-20T06:34:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.14</generator>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Redsn0w_Lite&amp;diff=53219</id>
		<title>Redsn0w Lite</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Redsn0w_Lite&amp;diff=53219"/>
		<updated>2016-06-21T23:59:26Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: Link is dead, should remove&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the [[iPhone Dev Team]]'s tethered jailbreak (&amp;quot;redsn0w-lite&amp;quot;) for the [[N72AP|iPod touch 2G]]. It is their payload for the [[ARM7 Go]] backdoor. It's analagous to how [[yellowsn0w]] is the actual unlocking payload injected by the [[at+stkprof]] exploit in baseband [[02.28.00]].&lt;br /&gt;
&lt;br /&gt;
==What it does==&lt;br /&gt;
For the most part, it is a nicely optimized payload that does the same essential patches as [[0wnboot]], those patches being the signature check patch and the range check patch.  Its compactness lends itself nicely to the &amp;quot;run&amp;quot; command and the eight-byte serial payload issued by the example iPod touch 2G dongle.&lt;br /&gt;
&lt;br /&gt;
===Disassm===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ROM:00000000                LDR     R3, =0xA1F10F   ; flipped:&lt;br /&gt;
ROM:00000000                                        ; 0x0FF1A100&lt;br /&gt;
ROM:00000004                MOV     R2, #0x2000&lt;br /&gt;
ROM:00000008                STRH    R2, [R3,#0x34]  ; patch the NEGS R0, R0 to MOVS R0, #0 at 0x0FF1A134&lt;br /&gt;
ROM:00000008                                        ; this is usually the part of the sigcheck routine that&lt;br /&gt;
ROM:00000008                                        ; would be jumped to if there was an error, so this&lt;br /&gt;
ROM:00000008                                        ; just pretty much makes it return 0, saying everything&lt;br /&gt;
ROM:00000008                                        ; went OK, versus -1, saying there was an error&lt;br /&gt;
ROM:0000000C                LDR     R3, =0xFFAFF20F ; flipped:&lt;br /&gt;
ROM:0000000C                                        ; 0x0FF2AFFF&lt;br /&gt;
ROM:00000010                MOVL    R2, 0xFFFFFFFF&lt;br /&gt;
ROM:00000014                STR     R2, [R3,#-0x23F] ; patch flags to 0xffffffff at addr 0xFF2ADC0&lt;br /&gt;
ROM:00000014                                         ; this patches the iboot flags to allow no range check,&lt;br /&gt;
ROM:00000014                                         ; no permission check for restricted commands, aes gid&lt;br /&gt;
ROM:00000014                                         ; and uid key are not restricted by devtree at boot so&lt;br /&gt;
ROM:00000014                                         ; you can decrypt kbags with xpwn crypto bundle with&lt;br /&gt;
ROM:00000014                                         ; no devtree patch needed, and more. basically tricks&lt;br /&gt;
ROM:00000014                                         ; your device into thinking it is an engineering device&lt;br /&gt;
ROM:00000018&lt;br /&gt;
ROM:00000018     spin                                ; CODE XREF: ROM:spin�j&lt;br /&gt;
ROM:00000018                B       spin&lt;br /&gt;
ROM:00000018     ; ---------------------------------------------------------------------------&lt;br /&gt;
ROM:0000001C     dword_1C        DCD 0xA1F10F        ; DATA XREF: ROM:00000000�r&lt;br /&gt;
ROM:0000001C                                         ; flipped:&lt;br /&gt;
ROM:0000001C                                         ; 0x0FF1A100&lt;br /&gt;
ROM:00000020     dword_20        DCD 0xFFAFF20F      ; DATA XREF: ROM:0000000C�r&lt;br /&gt;
ROM:00000020     ; ROM           ends                ; flipped:&lt;br /&gt;
ROM:00000020                                         ; 0x0FF2AFFF&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
typedef volatile unsigned int vu32;&lt;br /&gt;
typedef volatile unsigned short vu16;&lt;br /&gt;
typedef volatile unsigned char vu8;&lt;br /&gt;
&lt;br /&gt;
#define A_CHECK_SIGN 0x0FF1A134        // sigcheck loc&lt;br /&gt;
#define A_CHECK_PERM 0x0FF2ADC0        // ib flags loc&lt;br /&gt;
&lt;br /&gt;
void redsn0w(void) {&lt;br /&gt;
  *(vu16 *)A_CHECK_SIGN = 0x2000;      // pwnage&lt;br /&gt;
  *(vu32 *)A_CHECK_PERM = 0xffffffff;  // permissions&lt;br /&gt;
  while(1);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
[http://redsn0w.com/ redsn0w Website]&lt;br /&gt;
&lt;br /&gt;
[[Category:Jailbreaks]]&lt;br /&gt;
[[Category:Jailbreaking]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=The_iPhone_Wiki_talk:Changing_Ownership&amp;diff=45895</id>
		<title>The iPhone Wiki talk:Changing Ownership</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=The_iPhone_Wiki_talk:Changing_Ownership&amp;diff=45895"/>
		<updated>2015-05-27T02:30:53Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Awesome. ==&lt;br /&gt;
&lt;br /&gt;
I thank you, geohot, for keeping this site alive. I have been using it for way longer than I have had an account. And also for adding samples of how to do things, and in general tidying things up. And welcome saurik! Enjoy! --[[User:Awesomebing1|Awesomebing1]] ([[User talk:Awesomebing1|talk]]) 21:52, 11 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Whatever's on my mind ==&lt;br /&gt;
&lt;br /&gt;
I didn't get to type up anything earlier because… Well, I wasn't available, and it was well past 2 AM when I saw and protected this message. :P geohot, although you mentioned it a while back, it's still a little sad to hear that it's finally changing hands. To be honest, I've been concerned since then about the wiki's future, but it is assuring that the wiki is going to somebody known in the jailbreaking scene. In any case, I wish you all the best. Thanks for keeping the wiki around for this long, and for putting up with whenever others asked me to bug you about wiki downtime. :P&lt;br /&gt;
&lt;br /&gt;
And saurik, welcome to The iPhone Wiki— I don't have many words to say, but I'm certain that you'll treat the wiki well. I know you have quite a lot in your hands, but I hope to see you around every now and then! --[[User:Dialexio|Dialexio]] ([[User talk:Dialexio|talk]]) 23:50, 12 May 2015 (UTC)&lt;br /&gt;
&lt;br /&gt;
== I say we can all agree, we approve of the new overlord ==&lt;br /&gt;
Who doesn't love saurik here? Liars. Everyone does. Anyone who says they don't are lying.--[[User:Dankzegriefer|Dankzegriefer]] ([[User talk:Dankzegriefer|talk]]) 02:30, 27 May 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45894</id>
		<title>Seas0nPass</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45894"/>
		<updated>2015-05-27T02:26:56Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: /* Requirements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Seas0nPass.png|thumb|seas0nPass|150px]]&lt;br /&gt;
&lt;br /&gt;
'''Seas0nPass''' is a [[jailbreak]] tool exclusively for the [[K66ap|Apple TV 2G]]. It provides a front-end interface for [[XPwn]].&lt;br /&gt;
&lt;br /&gt;
It creates a custom [[IPSW File Format|IPSW]] for a restore-based jailbreak, rather than a &amp;quot;quick&amp;quot; ramdisk [[jailbreak]]. Currently, Seas0nPass provides a [[untethered jailbreak]]. &lt;br /&gt;
It also will downgrade devices on the current firmware version, and can save SHSH blobs.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* [[k66ap|Apple TV 2G]]&lt;br /&gt;
* A [[wikipedia:USB#USB Mini and Micro connectors|micro-USB]] cable&lt;br /&gt;
* x86-based computer running either of these operating systems:&lt;br /&gt;
** [[wikipedia:Mac OS X Snow Leopard|Mac OS X Snow Leopard]] (10.6) or later&lt;br /&gt;
** [[wikipedia:Windows XP|Windows XP]] or later (also requires .NET Framework 4.0)&lt;br /&gt;
* Latest version of [[iTunes]]&lt;br /&gt;
* Silver Apple TV 2 remote (Plastic remote/iOS app will not work)&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://www.seas0npass.com/ Official Website]&lt;br /&gt;
* [http://appletvjailbreakguide.com/jailbreak-apple-tv-step-step/ Step by step guide]&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacking Software]]&lt;br /&gt;
[[Category:GUI Tools]]&lt;br /&gt;
[[Category:Jailbreaks]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45893</id>
		<title>Seas0nPass</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45893"/>
		<updated>2015-05-27T02:26:07Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: /* Application Details */ Removed section as it made the page clunky&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Seas0nPass.png|thumb|seas0nPass|150px]]&lt;br /&gt;
&lt;br /&gt;
'''Seas0nPass''' is a [[jailbreak]] tool exclusively for the [[K66ap|Apple TV 2G]]. It provides a front-end interface for [[XPwn]].&lt;br /&gt;
&lt;br /&gt;
It creates a custom [[IPSW File Format|IPSW]] for a restore-based jailbreak, rather than a &amp;quot;quick&amp;quot; ramdisk [[jailbreak]]. Currently, Seas0nPass provides a [[untethered jailbreak]]. &lt;br /&gt;
It also will downgrade devices on the current firmware version, and can save SHSH blobs.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* [[k66ap|Apple TV 2G]]&lt;br /&gt;
* A [[wikipedia:USB#USB Mini and Micro connectors|micro-USB]] cable&lt;br /&gt;
* x86-based computer running either of these operating systems:&lt;br /&gt;
** [[wikipedia:Mac OS X Snow Leopard|Mac OS X Snow Leopard]] (10.6) or later&lt;br /&gt;
** [[wikipedia:Windows XP|Windows XP]] or later (also requires .NET Framework 4.0)&lt;br /&gt;
* Latest version of [[iTunes]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://www.seas0npass.com/ Official Website]&lt;br /&gt;
* [http://appletvjailbreakguide.com/jailbreak-apple-tv-step-step/ Step by step guide]&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacking Software]]&lt;br /&gt;
[[Category:GUI Tools]]&lt;br /&gt;
[[Category:Jailbreaks]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User_talk:Saurik&amp;diff=45892</id>
		<title>User talk:Saurik</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User_talk:Saurik&amp;diff=45892"/>
		<updated>2015-05-27T02:24:25Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Move Request==&lt;br /&gt;
Can we move this page ([[Saurik]]) to [[:User:Saurik]] like for everyone else? Not sure why this wasn't done before, because his account doesn't seem to be new. --[[User:Http|http]] ([[User talk:Http|talk]]) 20:03, 14 May 2015 (UTC)&lt;br /&gt;
:It would make sense to me as well [[User:Mwoolweaver|MWoolweaver]] ([[User talk:Mwoolweaver|talk]]) 05:18, 23 May 2015 (UTC)&lt;br /&gt;
==I welcome our new overlord==&lt;br /&gt;
Welcome saurik! We know the news of geohot giving ownership to you, I on behalf of the community, say that we all approve of our new overlord &lt;br /&gt;
----[[User:Dankzegriefer|Dankzegriefer]] ([[User talk:Dankzegriefer|talk]]) 02:24, 27 May 2015 (UTC)&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Cydia.app&amp;diff=45891</id>
		<title>Cydia.app</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Cydia.app&amp;diff=45891"/>
		<updated>2015-05-27T02:21:17Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
 | name                   = Cydia&lt;br /&gt;
 | title                  = Cydia&lt;br /&gt;
 | logo                   = [[File:Cydia icon 1.1.10.png|152px]]&lt;br /&gt;
 | screenshot             = [[File:Cydia.png|330px]]&lt;br /&gt;
 | caption                = Cydia v1.1.16 running on an [[iPhone 5s]] with [[iOS]] 8.1.2.&lt;br /&gt;
 | author                 = [[saurik|Jay Freeman]] (saurik)&lt;br /&gt;
 | developer              = Jay Freeman&lt;br /&gt;
 | released               = {{Start date|2008|02|28|df=yes}}&lt;br /&gt;
 | discontinued           = &lt;br /&gt;
 | latest release version = 1.1.16&lt;br /&gt;
 | latest release date    = {{Start date and age|2014|11|5|df=yes}}&lt;br /&gt;
 | latest preview version = [http://gitweb.saurik.com/cydia.git git HEAD]&lt;br /&gt;
 | latest preview date    = &lt;br /&gt;
 | programming language   = [[wikipedia:C (programming language)|C]] and [[wikipedia:Objective-C|Objective-C]]&lt;br /&gt;
 | operating system       = [[wikipedia:iOS|iOS]]&lt;br /&gt;
 | platform               = &lt;br /&gt;
&amp;lt;!-- http://apt.saurik.com/dists/tangelo-3.7/main/binary-iphoneos-arm/Packages --&amp;gt;&lt;br /&gt;
 | size                   = Cydia: 844,624&amp;amp;nbsp;bytes [DEB]&amp;lt;br /&amp;gt;Localization: 66,876&amp;amp;nbsp;bytes [DEB]&lt;br /&gt;
&amp;lt;!-- https://cydia.saurik.com/info/cydia-lproj/ --&amp;gt;&lt;br /&gt;
 | language               = Arabic, Chinese, Dutch, English, French, German, Greek, Hebrew, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, Thai, Turkish, Vietnamese&lt;br /&gt;
 | status                 = Active&lt;br /&gt;
 | genre                  = [[wikipedia:Package management system|package management system]]&lt;br /&gt;
 | license                = [[wikipedia:GNU General Public License#Version 3|GNU GPL v3]]&lt;br /&gt;
 | website                = [http://www.saurik.com/id/1 saurik.com] ([http://gitweb.saurik.com/cydia.git source])&lt;br /&gt;
}}&lt;br /&gt;
{{float toc|left}}&lt;br /&gt;
[[File:Cydia icon.png|thumb|152px|thumb|Cydia's icon pre-iOS 7.]]&lt;br /&gt;
&lt;br /&gt;
'''Cydia''' is an open source software installer created by [[saurik]] that uses the Debian APT system for package management. It is included with all [[iPhone Dev Team]] [[jailbreak]]s, and is found in every mainstream jailbreak tool since iOS 2.0.&lt;br /&gt;
&lt;br /&gt;
Some older jailbreak tools install smaller apps (such as [[Loader.app]] for [[greenpois0n (jailbreak)|greenpois0n]] or [[blackra1n.app]] for [[blackra1n]] and [[limera1n]]) to download and install Cydia directly on the device instead of having it installed at the same time as jailbreaking, making for a lighter initial download and jailbreak.&lt;br /&gt;
&lt;br /&gt;
Cydia's latest version is 1.1.16 which supports all devices (except [[Apple TV]]s) running iOS 2.0 - 8.1.2. The translations package (&amp;lt;code&amp;gt;cydia-lproj&amp;lt;/code&amp;gt;), however, hasn't been updated since 13 June 2014 (1.1.12).&lt;br /&gt;
&lt;br /&gt;
Cydia is a frontend for APT. Cydia comes with pre-installed repos like BigBoss, ModMyi, and ZodTTD/MacCiti. They are independently owed and not run by [[saurik|saurik]]. [[saurik|Saurik]] only controls the Cydia/Telesphoreo repo.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Cydia Server]]&lt;br /&gt;
* [[Cydia Errors]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://gitweb.saurik.com/cydia.git gitweb for Cydia's git]&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Application]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Cydia.app&amp;diff=45890</id>
		<title>Cydia.app</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Cydia.app&amp;diff=45890"/>
		<updated>2015-05-27T02:20:12Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox software&lt;br /&gt;
 | name                   = Cydia&lt;br /&gt;
 | title                  = Cydia&lt;br /&gt;
 | logo                   = [[File:Cydia icon 1.1.10.png|152px]]&lt;br /&gt;
 | screenshot             = [[File:Cydia.png|330px]]&lt;br /&gt;
 | caption                = Cydia v1.1.16 running on an [[iPhone 5s]] with [[iOS]] 8.1.2.&lt;br /&gt;
 | author                 = [[saurik|Jay Freeman]] (saurik)&lt;br /&gt;
 | developer              = Jay Freeman&lt;br /&gt;
 | released               = {{Start date|2008|02|28|df=yes}}&lt;br /&gt;
 | discontinued           = &lt;br /&gt;
 | latest release version = 1.1.16&lt;br /&gt;
 | latest release date    = {{Start date and age|2014|11|5|df=yes}}&lt;br /&gt;
 | latest preview version = [http://gitweb.saurik.com/cydia.git git HEAD]&lt;br /&gt;
 | latest preview date    = &lt;br /&gt;
 | programming language   = [[wikipedia:C (programming language)|C]] and [[wikipedia:Objective-C|Objective-C]]&lt;br /&gt;
 | operating system       = [[wikipedia:iOS|iOS]]&lt;br /&gt;
 | platform               = &lt;br /&gt;
&amp;lt;!-- http://apt.saurik.com/dists/tangelo-3.7/main/binary-iphoneos-arm/Packages --&amp;gt;&lt;br /&gt;
 | size                   = Cydia: 844,624&amp;amp;nbsp;bytes [DEB]&amp;lt;br /&amp;gt;Localization: 66,876&amp;amp;nbsp;bytes [DEB]&lt;br /&gt;
&amp;lt;!-- https://cydia.saurik.com/info/cydia-lproj/ --&amp;gt;&lt;br /&gt;
 | language               = Arabic, Chinese, Dutch, English, French, German, Greek, Hebrew, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish, Swedish, Thai, Turkish, Vietnamese&lt;br /&gt;
 | status                 = Active&lt;br /&gt;
 | genre                  = [[wikipedia:Package management system|package management system]]&lt;br /&gt;
 | license                = [[wikipedia:GNU General Public License#Version 3|GNU GPL v3]]&lt;br /&gt;
 | website                = [http://www.saurik.com/id/1 saurik.com] ([http://gitweb.saurik.com/cydia.git source])&lt;br /&gt;
}}&lt;br /&gt;
{{float toc|left}}&lt;br /&gt;
[[File:Cydia icon.png|thumb|152px|thumb|Cydia's icon pre-iOS 7.]]&lt;br /&gt;
&lt;br /&gt;
'''Cydia''' is an open source software installer created by [[saurik]] that uses the Debian APT system for package management. It is included with all [[iPhone Dev Team]] [[jailbreak]]s, and is found in every mainstream jailbreak tool since iOS 2.0.&lt;br /&gt;
&lt;br /&gt;
Some older jailbreak tools install smaller apps (such as [[Loader.app]] for [[greenpois0n (jailbreak)|greenpois0n]] or [[blackra1n.app]] for [[blackra1n]] and [[limera1n]]) to download and install Cydia directly on the device instead of having it installed at the same time as jailbreaking, making for a lighter initial download and jailbreak.&lt;br /&gt;
&lt;br /&gt;
Cydia's latest version is 1.1.16 which supports all devices (except [[Apple TV]]s) running iOS 2.0 - 8.1.2. The translations package (&amp;lt;code&amp;gt;cydia-lproj&amp;lt;/code&amp;gt;), however, hasn't been updated since 13 June 2014 (1.1.12).&lt;br /&gt;
&lt;br /&gt;
Cydia is a frontend for APT, it is in the same repo as Telesphoreo. Cydia comes with pre-installed repos like BigBoss, ModMyi, and ZodTTD/MacCiti. They are independently owed and not run by [[saurik|saurik]].&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Cydia Server]]&lt;br /&gt;
* [[Cydia Errors]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://gitweb.saurik.com/cydia.git gitweb for Cydia's git]&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Application]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Rzhikharevich&amp;diff=45889</id>
		<title>User:Rzhikharevich</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Rzhikharevich&amp;diff=45889"/>
		<updated>2015-05-27T02:12:07Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: Gramar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just an iPhone user and programmer, a [http://uncyclopedia.wikia.com/wiki/Grammar_Nazi grammar nazi] (In Russian language). 13 years old, started being interested in computer science at the age of 11.&lt;br /&gt;
PS. Not a native english-speaker.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
Here's the list of my iOS-related projects:&lt;br /&gt;
*[https://github.com/rzhikharevich/lwvmedit lwvmedit] - first useful (?) tool for iOS, it can read and edit LwVM tables.&lt;br /&gt;
*iolwvm - an IOKit version of lwvmedit. I am working on reversing, how userspace communicates with the kernel to modify the partitions.&lt;br /&gt;
*libipwn - a library for interfacing with iDevices in DFU mode. Not public yet.&lt;br /&gt;
Other projects:&lt;br /&gt;
*eXtremeStep software project. Working on a kernel, I don't think, I'll ever finish that.&lt;br /&gt;
&lt;br /&gt;
== Knowledge ==&lt;br /&gt;
I know a lot about the iOS (at least relatively). I am also an experienced Unix/Linux user. &lt;br /&gt;
&lt;br /&gt;
Programming languages:&lt;br /&gt;
*C/C++&lt;br /&gt;
*Python&lt;br /&gt;
*x86 assembly.&lt;br /&gt;
Web design skills:&lt;br /&gt;
*HTML5&lt;br /&gt;
*CSS3&lt;br /&gt;
*Javascript.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[http://rzhikharevich.github.io My blog], under construction.&lt;br /&gt;
*[http://github.com/rzhikharevich Github account]&lt;br /&gt;
*[http://twitter.com/rzhikharevich Twitter]&lt;br /&gt;
&lt;br /&gt;
== iDevices ==&lt;br /&gt;
*White iPad 3, 64GB, iOS 8.3.&lt;br /&gt;
*iPhone 4, 16GB, iOS 7.1.2, jailbroken.&lt;br /&gt;
*The original iPhone (2G), Debian ARM via OpeniBoot&lt;br /&gt;
*Black iPhone 5, 32GB, iOS 8.3 (primary).&lt;br /&gt;
*Apple TV 3rd gen.&lt;br /&gt;
&lt;br /&gt;
== Operating systems ==&lt;br /&gt;
In current use:&lt;br /&gt;
*OS X Yosemite.&lt;br /&gt;
*Gentoo (hardened, x86_64, nomultilib) with Openbox and LXPanel.&lt;br /&gt;
*iOS.&lt;br /&gt;
Previously Used:&lt;br /&gt;
*Windows XP, 7, 8, and 10&lt;br /&gt;
*Multiple Linux distributions. (Gentoo is my favorite).&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Rzhikharevich&amp;diff=45888</id>
		<title>User:Rzhikharevich</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Rzhikharevich&amp;diff=45888"/>
		<updated>2015-05-27T02:10:19Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: /* Operating systems */ Grammaaaaaar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just an iPhone user and programmer, a [http://uncyclopedia.wikia.com/wiki/Grammar_Nazi grammar nazi] (with russian language). 13 years old, started being interested in computer science at the age of 11.&lt;br /&gt;
PS. Not a native english-speaker.&lt;br /&gt;
&lt;br /&gt;
== Projects ==&lt;br /&gt;
Here's the list of my iOS-related projects:&lt;br /&gt;
*[https://github.com/rzhikharevich/lwvmedit lwvmedit] - first useful (?) tool for iOS, it can read and edit LwVM tables.&lt;br /&gt;
*iolwvm - an IOKit version of lwvmedit. I am working on reversing, how userspace communicates with the kernel to modify the partitions.&lt;br /&gt;
*libipwn - a library for interfacing with iDevices in DFU mode. Not public yet.&lt;br /&gt;
Other projects:&lt;br /&gt;
*eXtremeStep software project. Working on a kernel, I don't think, I'll ever finish that.&lt;br /&gt;
&lt;br /&gt;
== Knowledge ==&lt;br /&gt;
I know a lot about the iOS (at least relatively). I am also an experienced Unix/Linux user. &lt;br /&gt;
&lt;br /&gt;
Programming languages:&lt;br /&gt;
*C/C++&lt;br /&gt;
*Python&lt;br /&gt;
*x86 assembly.&lt;br /&gt;
Web design skills:&lt;br /&gt;
*HTML5&lt;br /&gt;
*CSS3&lt;br /&gt;
*Javascript.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[http://rzhikharevich.github.io My blog], under construction.&lt;br /&gt;
*[http://github.com/rzhikharevich Github account]&lt;br /&gt;
*[http://twitter.com/rzhikharevich Twitter]&lt;br /&gt;
&lt;br /&gt;
== iDevices ==&lt;br /&gt;
*White iPad 3, 64GB, iOS 8.3.&lt;br /&gt;
*iPhone 4, 16GB, iOS 7.1.2, jailbroken.&lt;br /&gt;
*The original iPhone (2G), Debian ARM via OpeniBoot&lt;br /&gt;
*Black iPhone 5, 32GB, iOS 8.3 (primary).&lt;br /&gt;
*Apple TV 3rd gen.&lt;br /&gt;
&lt;br /&gt;
== Operating systems ==&lt;br /&gt;
In current use:&lt;br /&gt;
*OS X Yosemite.&lt;br /&gt;
*Gentoo (hardened, x86_64, nomultilib) with Openbox and LXPanel.&lt;br /&gt;
*iOS.&lt;br /&gt;
Previously Used:&lt;br /&gt;
*Windows XP, 7, 8, and 10&lt;br /&gt;
*Multiple Linux distributions. (Gentoo is my favorite).&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User_talk:Rzhikharevich&amp;diff=45887</id>
		<title>User talk:Rzhikharevich</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User_talk:Rzhikharevich&amp;diff=45887"/>
		<updated>2015-05-27T02:08:35Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: Created page with &amp;quot;Fixed the Mark Up on my page. Thanks dude! -Dankzegriefer&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Fixed the Mark Up on my page. Thanks dude! -Dankzegriefer&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45886</id>
		<title>User:Dankzegriefer</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45886"/>
		<updated>2015-05-27T02:07:30Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: /* Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello!&lt;br /&gt;
I am a guy who likes most mobile devices&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
&lt;br /&gt;
*HTC HD2 (Dualboot between Android 2.3 and CM7)&lt;br /&gt;
*SAMSUNG Galaxy S3 (CM11)&lt;br /&gt;
*iPhone 3G    (Bricked, Power button broken, can't enter DFU, never boots, may try to fix button)&lt;br /&gt;
*iPhone 2G    (Water in screen, trying to get someone to pump it out)&lt;br /&gt;
*iPhone 4     (Unjailbroken)&lt;br /&gt;
*iPhone 4     (Main Phone)&lt;br /&gt;
*iPod Touch 4 (iOS 6.1.6, Jailbroken with P0sixspwn)&lt;br /&gt;
*iPad         (Brother dropped on pavement, screen fatally cracked)&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=JailbreakCon&amp;diff=45877</id>
		<title>JailbreakCon</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=JailbreakCon&amp;diff=45877"/>
		<updated>2015-05-25T21:07:32Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: Stating new facts.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:MGF.jpg|thumb|right|Craig Fox - CEO of WWJC]]&lt;br /&gt;
&lt;br /&gt;
'''JailbreakCon''' or WWJC (Worldwide Jailbreak Convention; formerly MyGreatFest) is a convention centered around the iOS jailbreak community. The day after the first one was held, the name was changed from MyGreatFest to JailbreakCon (WWJC).&lt;br /&gt;
Tickets are sold through and managed by Cydia. Tickets for WWJC 2015 were purchasable through the Cydia store on May 24.&lt;br /&gt;
==JailbreakCon San Francisco, April 2014==&lt;br /&gt;
This event was held at the South San Francisco Conference Center on April 12-13.&lt;br /&gt;
&lt;br /&gt;
Articles about it: [http://modmyi.com/content/14437-jailbreak-house-jailbreak-con-s-prelude.html &amp;quot;The Jailbreak House - Jailbreak Con's Prelude&amp;quot;] (ModMyi), [http://modmyi.com/content/14443-jailbreakcon-first-day-talk-running-repo.html &amp;quot;JailbreakCon First Day, and Talk on Running a Repo&amp;quot;] (ModMyi), [http://modmyi.com/content/14444-bunch-photos-jailbreakcon.html &amp;quot;A Bunch of Photos from JailbreakCon&amp;quot;] (ModMyi), [http://www.imore.com/jailbreakcon-2014-day-one-recap &amp;quot;JailbreakCon 2014 day one&amp;quot;] (iMore), [http://www.imore.com/jailbreakcon-2014-day-two &amp;quot;JailbreakCon 2014 day two&amp;quot;] (iMore), [https://cammyharbison.wordpress.com/jailbreakcon-2014-coverage/ Several articles by Cammy Harbison] (iDigitalTimes), [http://www.idownloadblog.com/2014/04/19/behind-the-scene-at-jailbreakcon-2014/ &amp;quot;JailbreakCon 2014: behind the scene&amp;quot;] (iDownloadBlog), [https://web.archive.org/web/20140424044404/http://ttwja.com/test/?q=node/25 &amp;quot;JailbreakCon: The Best Weekend of My Life&amp;quot;] (TTWJA).&lt;br /&gt;
&lt;br /&gt;
=== Workshops and mini-talks (first day) ===&lt;br /&gt;
&lt;br /&gt;
* [https://twitter.com/SebastienPage Sebastien Page], &amp;quot;Marketing 101 for tweak developers&amp;quot; - [http://media.idownloadblog.com/wp-content/uploads/2014/04/Marketing-101-for-tweak-devs.pdf slides] + [https://www.youtube.com/watch?v=jH1Qfcp1iE0 video]&lt;br /&gt;
* [https://twitter.com/kylematthews Kyle Matthews], &amp;quot;Running a repo&amp;quot; - [https://www.icloud.com/iw/#keynote/BAL8RQ7gulIG9_dQheuBkP_2QS4rIlLZki-F/Running_a_Repo slides] + [https://www.youtube.com/watch?v=_VTVEXx_7kI video]&lt;br /&gt;
* [https://twitter.com/0x8badfl00d Haifisch], &amp;quot;Where to start with reverse engineering&amp;quot; - [https://github.com/Haifisch/wwjc2014/blob/master/Presentation.pdf?raw=true slides] + [https://www.youtube.com/watch?v=2b_Wu1EwkzE video]&lt;br /&gt;
* [https://twitter.com/tccentex Tim Collins (TCcentex)], &amp;quot;Because of Ezra&amp;quot; - [https://www.dropbox.com/s/hr330l5cxigynz3/WWJC%20SFO%202014%20Ezra_Pres.pdf slides] + [https://www.youtube.com/watch?v=VhfezocDBPo video]&lt;br /&gt;
* [https://twitter.com/insanj Julian Weiss (insanj)], &amp;quot;Taking a tweak from idea to implementation&amp;quot; - [https://www.youtube.com/watch?v=ITnt15K7JvQ video]&lt;br /&gt;
* [https://twitter.com/bd452 Bryce Dougherty (bd452)], libPassword and Zen Notifications - [https://www.youtube.com/watch?v=j-amMxEdQKs video]&lt;br /&gt;
* [https://twitter.com/coolstarorg CoolStar], Developing tweaks for jailbroken devices without a Mac - [https://github.com/coolstar/wwjc2014/blob/master/JailbreakCon%20Presentation.pptx slides] + [https://www.youtube.com/watch?v=6-ATj3gF7Mg video]&lt;br /&gt;
* [https://twitter.com/compiledEntropy CompilingEntropy], &amp;quot;Fuzzing Mobile Safari&amp;quot; - [https://t.co/2Qq6deldGQ slides] + [https://www.youtube.com/watch?v=fZr4ik8Zs4I video]&lt;br /&gt;
&lt;br /&gt;
=== Talks (second day) ===&lt;br /&gt;
&lt;br /&gt;
* [https://twitter.com/joshmtucker Joshua M. Tucker], &amp;quot;From idea to reality&amp;quot; - [http://joshmtucker.com/jailbreakcon-2014/ slides] + [https://www.youtube.com/watch?v=lAQi9fPyf5A&amp;amp;index=2&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/ih8sn0w Steven De Franco (iH8sn0w)], &amp;quot;Exploring Apple's iCloud Activation Lock&amp;quot; - [http://ih8sn0w.com/jbcon2014 slides] + [https://www.youtube.com/watch?v=bMiIHlwRtyg&amp;amp;index=3&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/filippobiga Filippo Bigarella], &amp;quot;A tale of tweaking&amp;quot; - [http://filippobiga.com/static/WWJC2014.pdf slides] + [https://www.youtube.com/watch?v=NU5jhZt5jc4&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/rpetrich Ryan Petrich], &amp;quot;Building successful tweaks&amp;quot; - [http://rpetri.ch/wwjc2014/rpetrich_wwjc2014.pdf slides] + [https://www.youtube.com/watch?v=STTuOuvMX5U&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/brittagus Britta Gustafson], &amp;quot;So what is this Reddit thing?&amp;quot; - [http://jeweledplatypus.org/britta/jailbreak-subreddit.pdf slides] + [https://www.youtube.com/watch?v=icp0LRg7MwE&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/nitotv Kevin Bradley (nitoTV)], &amp;quot;Why isn't the Apple TV 3 jailbroken?&amp;quot; - [https://dl.dropboxusercontent.com/u/16129573/2014JBC_nitoTV_Leather_Bound_Book.pdf slides] + [https://www.youtube.com/watch?v=gaan3m8tt-c&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/surenix Thientam Bach (Surenix)], &amp;quot;A designer's perspective&amp;quot; - [https://www.youtube.com/watch?v=NDW3CiGGCUk&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video] + [http://modmyi.com/content/14448-surenix-announces-auki-jailbreakcon.html ModMyi article].&lt;br /&gt;
* [https://twitter.com/pod2g Cyril Cattiaux (pod2g)], &amp;quot;The story behind jailbreaking&amp;quot; - [https://www.youtube.com/watch?v=OBFLTb-AY38&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/winocm winocm], &amp;quot;Low level iPhone programming&amp;quot; - [http://cl.ly/3B0U0i3X3n2W slides] + [https://www.youtube.com/watch?v=6qBQ38tuJyk&amp;amp;list=PLznXKK7IvpwdqQ6WZIS68yZymkGYYHNO4 video].&lt;br /&gt;
* [https://twitter.com/saurik Jay Freeman (saurik)] - &amp;quot;Jailbreaking education: Making academia work for you&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== JailbreakCon New York, August 2013 ==&lt;br /&gt;
This event was held at Radisson Hotel New Rochelle (New York) on 23-24 August. The first day was a developer workshop, and the second day was the main event. &lt;br /&gt;
&lt;br /&gt;
The CopyTrans Blog [http://www.copytrans.net/blog/wwjc-worldwide-jailbreak-convention-2013/ has a post describing the general experience of the conference].&lt;br /&gt;
&lt;br /&gt;
=== Workshops (first day) ===&lt;br /&gt;
&lt;br /&gt;
Jay Freeman (saurik), Britta Gustafson, and Ryan Petrich answered questions and taught aspects of developing and contributing. Most of this was not recorded, but there's [http://youtu.be/bN44iWYVpsU some video of Ryan Petrich answering development questions].&lt;br /&gt;
&lt;br /&gt;
=== Speakers (second day) ===&lt;br /&gt;
&lt;br /&gt;
[http://new.livestream.com/accounts/5143312/events/2349345 Recorded video stream of entire second day.]&lt;br /&gt;
&lt;br /&gt;
* '''[[User:Posixninja|Joshua Hill (p0sixninja)]]''' spoke about [[OpenJailbreak]], explaining the project's goals. He [https://dl.dropboxusercontent.com/u/5309899/wwjc2013_openjailbreakv2.ppt published his slides (PPT)]. Several blogs wrote articles summarizing the talk: [http://www.ifans.com/blog/91487/ iFans], [http://www.ijailbreak.com/jailbreak/open-source-jailbreak-repository-openjailbreak-now-live/ iJailbreak], [http://appadvice.com/appnn/2013/08/joshua-hills-developer-resource-openjailbreak-launches-for-all AppAdvice], and [http://modmyi.com/content/11962-ios-hacker-p0sixninja-announces-launch-openjailbreak-org.html ModMyi]. p0sixninja also discussed the status of the iOS 7 jailbreak, [http://modmyi.com/content/11968-current-status-ios-7-jailbreak.html summarized by ModMyi].&lt;br /&gt;
* '''[[pimskeks|Nikias Bassen (pimskeks)]]''' gave an explanation of how [[evasi0n]] works. Here are [https://dl.dropboxusercontent.com/u/13629465/WWJC2013_Talk_Nikias.pdf his slides (PDF)] and [http://www.ifans.com/blog/91492/ an article from iFans that summarizes the talk].&lt;br /&gt;
* '''Carsten Heinelt''', developer of iFile, discussed some iFile features, explained why iFile can't be published as-is in the App Store, and talked about the future of iFile. [http://modmyi.com/content/11967-future-jailbroken-ios-app-ifile.html This ModMyi article summarizes the talk.]&lt;br /&gt;
* '''Ryan Petrich''', developer of many tweaks, explained some of the developer libraries he maintains and announced his upcoming revival of [http://tweakweek.com/ TweakWeek]. Here is [https://github.com/rpetrich/JailbreakCon-Talk-2013 his example code], [http://www.idownloadblog.com/2013/08/24/tweekweak-2/ an iDownloadBlog article about TweakWeek 2], and [http://modmyi.com/content/11961-ryan-petrich-announces-tweakweek-2-some-time-after-ios-7-jailbreak-launch.html a ModMyi article about it].&lt;br /&gt;
* '''Adam Bell''', another tweak developer, discussed developing Message Box and demonstrated how to use [http://www.cycript.org | Cycript] to prototype a tweak. Here's [http://youtu.be/Ox09rWJTuCA a video of the talk] and [https://github.com/b3ll/JailbreakCon2013 his slides and example code]. iFans wrote [http://www.ifans.com/blog/91517/ an article summarizing the talk].&lt;br /&gt;
* '''[[saurik|Jay Freeman (saurik)]]''' talked about the complications of determining whether jailbreaking is legal. iFans wrote [http://www.ifans.com/blog/91526/ an article about their impression of the talk].&lt;br /&gt;
* '''Filippo Bigarella''', another tweak developer, talked about the process of developing tweaks. iFans [http://www.ifans.com/blog/91556/ wrote an article summarizing the talk].&lt;br /&gt;
* '''TCcentex''', a theme artist, told the story of E is for Ezra, a theme that raises money for the ModMyi founder's charitable organization that supports neuroblastoma research. He released E is for Ezra 2 during his presentation.  [http://www.youtube.com/watch?v=rjlJv23IS40 Video of the talk.]&lt;br /&gt;
* '''[[User:britta|Britta Gustafson]]''', SaurikIT community manager, talked about why people jailbreak their devices. [http://www.youtube.com/watch?v=Te-uIolpNqA Video of the talk] + [http://jeweledplatypus.org/cgi-bin/blosxom.cgi/text/jailbreakcon-2013.html written transcript].&lt;br /&gt;
** Lightning talks (two minutes each): '''Bradley Friedman (Sirex)''', '''Julian Weiss (insanj)''', '''[[User:Thekirbylover|Adam D (kirb)]]''', '''Daniel Ferreira (theiostream)''', and '''Conrad Kramer (conradev)'''. These developers talked about their tweaks and shared advice on developing. [http://youtu.be/ph2yIxKehWM Video of the lightning talks.]&lt;br /&gt;
&lt;br /&gt;
== JailbreakCon San Francisco, September 2012 ==&lt;br /&gt;
This event was held at South San Francisco Conference Center on 29 September.&lt;br /&gt;
&lt;br /&gt;
[http://www.ustream.tv/channel/mygreatfest2011 Archive of video live stream] (since 2011, includes 2012 event).&lt;br /&gt;
&lt;br /&gt;
=== Speakers ===&lt;br /&gt;
* '''Aaron Ash''', developer of Barrel and other tweaks; [http://www.ustream.tv/recorded/25792143 Video stream archive of talk].&lt;br /&gt;
* '''Carsten Heinelt''', developer of iFile; [http://www.ustream.tv/recorded/25793780 Video stream archive of talk].&lt;br /&gt;
* '''[[User:Pod2g|Cyril Cattiaux (pod2g)]]''', jailbreak developer. [http://www.youtube.com/watch?v=iRrZ7Gg_-Iw Video of talk], and [http://www.scribd.com/doc/108484130/pod2g-Jailbreak-Techniques-WWJC-2012 talk slides] (PDF).&lt;br /&gt;
* '''[[User:Ih8sn0w|Steven De Franco (iH8sn0w)]]''', jailbreak developer. [http://www.youtube.com/watch?v=ltBwbSc_j28 Video of talk], and [https://sites.google.com/site/ih8sn0wcom/home/dl/iH8sn0w-Jailbreakcon2012_Keynote.key slides] (Keynote).&lt;br /&gt;
* '''Kevin Bradley (nitoTV)''', AppleTV researcher. [http://www.youtube.com/watch?v=J4n1vrceuzs Video of talk], and [http://nitosoft.com/history_of_appletv_hacking.pdf slides] (PDF).&lt;br /&gt;
* '''Ryan Petrich''', tweak developer. [http://www.youtube.com/watch?v=bTaizeOdwns Video of talk], and [https://dl.dropboxusercontent.com/u/1364056/JailbreakConTalk.pdf slides with speaker notes] (PDF).&lt;br /&gt;
* '''[[User:Jaywalker|Justin Williams (Jaywalker)]]''', jailbreak developer. [http://www.ustream.tv/recorded/25800280 Video stream archive of Ryan Petrich, Justin Williams (Jaywalker), Jay Freeman (saurik), and Dustin Howett].&lt;br /&gt;
* '''[[Saurik|Jay Freeman (saurik)]]''', Cydia developer. [http://www.youtube.com/watch?v=z_7ZW8fngXI Video of talk]&lt;br /&gt;
* '''Dustin Howett''', tweak developer. [http://www.ustream.tv/recorded/25800280 Video stream archive of Ryan Petrich, Justin Williams (Jaywalker), Jay Freeman (saurik), and Dustin Howett], and [http://uv.howett.net/~dhowett/Theos.key slides from Dustin Howett's talk] (Keynote).&lt;br /&gt;
* '''Josh M. Tucker''', tweak concept designer. [http://www.youtube.com/watch?v=kUoQV0NKlkU Video of talk]&lt;br /&gt;
* '''Austin Bradley''', theme artist.&lt;br /&gt;
* '''[[pimskeks|Nikias Bassen (pimskeks)]]''', jailbreak developer. [http://www.samara-it.de/WWJC2012/WWJC2012-Nikias.pdf Slides of talk] (PDF).&lt;br /&gt;
&lt;br /&gt;
=== Articles ===&lt;br /&gt;
* [http://www.redmondpie.com/jailbreakcon-2012-wwjc-as-it-happened-photos-video/ Redmond Pie: &amp;quot;JailbreakCon 2012 (WWJC): As It Happened&amp;quot;]&lt;br /&gt;
* [http://www.idownloadblog.com/2012/10/02/three-days-jailbreak-community/ iDownloadBlog: &amp;quot;The tale of my three days at the epicenter of the jailbreak community&amp;quot;]&lt;br /&gt;
* [http://www.idownloadblog.com/2012/07/31/jailbreakcon-2012-schedule/ iDownloadBlog: &amp;quot;JailbreakCon 2012 schedule&amp;quot;]&lt;br /&gt;
* [http://www.ijailbreak.com/jailbreak/jailbreakcon-2012-wwjc-overview/ iJailbreak: &amp;quot;The World Wide Jailbreaking Convention (JailbreakCon 2012) Overview&amp;quot;]&lt;br /&gt;
* [http://www.cultofmac.com/193639/the-future-of-jailbreaking-a-roundup-of-what-you-missed-at-jailbreakcon-2012-feature/ Cult of Mac: &amp;quot;The Future Of Jailbreaking: A Roundup Of What You Missed At JailbreakCon 2012&amp;quot;]&lt;br /&gt;
* [http://www.jailbreaknation.com/pod2g-interview-on-the-future-of-jailbreaking-and-his-personal-experience JailbreakNation: &amp;quot;Pod2G Interview On The Future Of Jailbreaking And His Personal Experience&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
== MyGreatFest London, September 2011 ==&lt;br /&gt;
This event was held at The Old Truman Brewery in London on 17 September.&lt;br /&gt;
&lt;br /&gt;
[http://www.livestream.com/vizboxtv/video?clipId=pla_9b8c2749-2da6-452a-baa1-889a843ef315 Archived video stream of whole day]; YouTube archive of [http://www.youtube.com/watch?v=rEvZQUepiFU morning sessions] and [http://www.youtube.com/watch?v=yx5WIwoabtE afternoon sessions].&lt;br /&gt;
&lt;br /&gt;
=== Speakers ===&lt;br /&gt;
* '''Aaron Ash''', developer of Barrel and other tweaks - [http://ash.ag/MGF-AaronAsh.ppt talk slides] (PPT)&lt;br /&gt;
* '''Carsten Heinelt''', developer of iFile&lt;br /&gt;
* '''[http://www.idroidproject.org/wiki/Team iDroid Team Members]''' - [http://nickpack.com/iDroidProject-MGF2011.pdf iDroid talk slides] (PDF)&lt;br /&gt;
* '''James Whelton'''&lt;br /&gt;
* '''[[p0sixninja]] and [[OPK]]''' - [https://docs.google.com/leaf?id=0B_JKbENVOFLPMTgzMTRlOWMtZGYwOC00MWM0LWE2NmUtOTQ5NTE2YmVjNmRi&amp;amp;hl=en_US&amp;amp;pli=1 Chronic Dev talk slides] (PDF)&lt;br /&gt;
* '''[[Saurik|saurik]]'''&lt;br /&gt;
&lt;br /&gt;
=== Articles ===&lt;br /&gt;
* [http://www.idownloadblog.com/2011/09/17/mygreatfest-roundup/ iDownloadBlog: &amp;quot;MyGreatFest — A Roundup of Everything You Missed&amp;quot;]&lt;br /&gt;
* [http://appadvice.com/appnn/2011/09/mygreatfest-the-complete-roundup-updating AppAdvice: &amp;quot;From Cydia To iOS 5 Jailbreak - Here's Everything That Happened&amp;quot;]&lt;br /&gt;
* [http://readwrite.com/2011/07/07/jailbreaking_convention_mygreatfest_brings_iPhone_hacking_to_mainstream ReadWriteWeb: &amp;quot;Jailbreaking Convention MyGreatFest Brings iPhone Hacking to Mainstream&amp;quot;]&lt;br /&gt;
* [http://thenextweb.com/apple/2011/09/24/cydia-and-jailbreak-apps-the-ecosystem-developers-and-increasing-revenues/ TheNextWeb: &amp;quot;Cydia and Jailbreak apps: The ecosystem, developers and increasing revenues&amp;quot;]&lt;br /&gt;
* [http://www.bbc.co.uk/news/technology-15340326 BBC News: &amp;quot;Who are the jailbreakers?&amp;quot;]&lt;br /&gt;
* [http://crave.cnet.co.uk/mobiles/jon-bentley-id-recommend-jailbreaking-to-anyone-50005352/ CNet: &amp;quot;I'd recommend jailbreaking to anyone&amp;quot;]&lt;br /&gt;
* [http://appadvice.com/appnn/2011/09/mygreatfest-the-chronic-dev-team-takes-to-the-stage AppAdvice: &amp;quot;The Chronic Dev Talks iOS 5 Jailbreak &amp;amp; Plans For The Future&amp;quot;]&lt;br /&gt;
* [http://www.idownloadblog.com/2011/09/17/chronic-dev-iphone-5-mygreatfest/ iDownloadBlog: &amp;quot;The Chronic Dev Team Talks iPhone 5 Jailbreak and New Exploits at MyGreatFest&amp;quot;]&lt;br /&gt;
* [http://www.idownloadblog.com/2011/09/17/saurik-talks-jailbreaking-mygreatfest/ iDownloadBlog: &amp;quot;Saurik, the Father of Cydia, Talks About the State of Cydia and Jailbreaking at MyGreatFest&amp;quot;]&lt;br /&gt;
* [http://www.redmondpie.com/jailbreakcon-2011-london-formerly-mygreatfest-the-first-ever-jailbreak-convention-as-it-unfolded-photos-video/ Redmond Pie: &amp;quot;JailbreakCon 2011 London (Formerly MyGreatFest): The First Ever Jailbreak Convention As It Unfolded&amp;quot;]&lt;br /&gt;
* [http://www.imore.com/enter-jailbreakcon iMore: &amp;quot;Enter @JailbreakCon&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://www.jailbreakcon.com/ JailbreakCon Homepage]&lt;br /&gt;
&lt;br /&gt;
[[Category:Events]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45861</id>
		<title>User:Dankzegriefer</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45861"/>
		<updated>2015-05-22T01:02:01Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello!&lt;br /&gt;
I am a guy who likes most mobile devices&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
DEVICES:&lt;br /&gt;
&lt;br /&gt;
HTC HD2 (Dualboot between Android 2.3 and CM7)&lt;br /&gt;
SAMSUNG Galaxy S3 (CM11)&lt;br /&gt;
iPhone 3G    (Bricked, Power button broken, can't enter DFU, never boots, may try to fix button)&lt;br /&gt;
iPhone 2G    (Water in screen, trying to get someone to pump it out)&lt;br /&gt;
iPhone 4     (Lost, Unjailbroken)&lt;br /&gt;
iPod Touch 4 (iOS 6.1.6, Jailbroken with P0sixspwn)&lt;br /&gt;
iPad         (Brother dropped on pavement, screen fatally cracked)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45860</id>
		<title>User:Dankzegriefer</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45860"/>
		<updated>2015-05-22T01:01:28Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello!&lt;br /&gt;
I am a guy who likes most mobile devices&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
DEVICES:&lt;br /&gt;
&lt;br /&gt;
== HTC HD2 (Dualboot between Android 2.3 and CM7)&lt;br /&gt;
SAMSUNG Galaxy S3 (CM11)&lt;br /&gt;
iPhone 3G    (Bricked, Power button broken, can't enter DFU, never boots, may try to fix button)&lt;br /&gt;
iPhone 2G    (Water in screen, trying to get someone to pump it out)&lt;br /&gt;
iPhone 4     (Lost, Unjailbroken)&lt;br /&gt;
iPod Touch 4 (iOS 6.1.6, Jailbroken with P0sixspwn)&lt;br /&gt;
iPad         (Brother dropped on pavement, screen fatally cracked)&lt;br /&gt;
 ==&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45859</id>
		<title>User:Dankzegriefer</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45859"/>
		<updated>2015-05-22T01:00:31Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello!&lt;br /&gt;
I am a guy who likes most mobile devices&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
DEVICES:&lt;br /&gt;
HTC HD2 (Dualboot between Android 2.3 and CM7)&lt;br /&gt;
SAMSUNG Galaxy S3 (CM11)&lt;br /&gt;
iPhone 3G    (Bricked, Power button broken, can't enter DFU, never boots, may try to fix button)&lt;br /&gt;
iPhone 2G    (Water in screen, trying to get someone to pump it out)&lt;br /&gt;
iPhone 4     (Lost, Unjailbroken)&lt;br /&gt;
iPod Touch 4 (iOS 6.1.6, Jailbroken with P0sixspwn)&lt;br /&gt;
iPad         (Brother dropped on pavement, screen fatally cracked)&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45858</id>
		<title>User:Dankzegriefer</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Dankzegriefer&amp;diff=45858"/>
		<updated>2015-05-22T01:00:03Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: Created page with &amp;quot;Hello! I am a guy who likes most mobile devices DEVICES: HTC HD2 (Dualboot between Android 2.3 and CM7) SAMSUNG Galaxy S3 (CM11) iPhone 3G    (Bricked, Power button broken, ca...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello!&lt;br /&gt;
I am a guy who likes most mobile devices&lt;br /&gt;
DEVICES:&lt;br /&gt;
HTC HD2 (Dualboot between Android 2.3 and CM7)&lt;br /&gt;
SAMSUNG Galaxy S3 (CM11)&lt;br /&gt;
iPhone 3G    (Bricked, Power button broken, can't enter DFU, never boots, may try to fix button)&lt;br /&gt;
iPhone 2G    (Water in screen, trying to get someone to pump it out)&lt;br /&gt;
iPhone 4     (Lost, Unjailbroken)&lt;br /&gt;
iPod Touch 4 (iOS 6.1.6, Jailbroken with P0sixspwn)&lt;br /&gt;
iPad         (Brother dropped on pavement, screen fatally cracked)&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45856</id>
		<title>Seas0nPass</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=Seas0nPass&amp;diff=45856"/>
		<updated>2015-05-21T19:04:05Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: /* Application Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Seas0nPass.png|thumb|seas0nPass|150px]]&lt;br /&gt;
== Application Details ==&lt;br /&gt;
'''Seas0nPass''' is a [[jailbreak]] tool exclusively for the [[K66ap|Apple TV 2G]]. It provides a front-end interface for [[XPwn]].&lt;br /&gt;
&lt;br /&gt;
It creates a custom [[IPSW File Format|IPSW]] for a restore-based jailbreak, rather than a &amp;quot;quick&amp;quot; ramdisk [[jailbreak]]. Currently, Seas0nPass provides a [[untethered jailbreak]]. &lt;br /&gt;
It also will downgrade devices on the current firmware version, and can save SHSH blobs.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
* [[k66ap|Apple TV 2G]]&lt;br /&gt;
* A [[wikipedia:USB#USB Mini and Micro connectors|micro-USB]] cable&lt;br /&gt;
* x86-based computer running either of these operating systems:&lt;br /&gt;
** [[wikipedia:Mac OS X Snow Leopard|Mac OS X Snow Leopard]] (10.6) or later&lt;br /&gt;
** [[wikipedia:Windows XP|Windows XP]] or later (also requires .NET Framework 4.0)&lt;br /&gt;
* Latest version of [[iTunes]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [http://www.seas0npass.com/ Official Website]&lt;br /&gt;
* [http://appletvjailbreakguide.com/jailbreak-apple-tv-step-step/ Step by step guide]&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacking Software]]&lt;br /&gt;
[[Category:GUI Tools]]&lt;br /&gt;
[[Category:Jailbreaks]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=I0n1c&amp;diff=45854</id>
		<title>I0n1c</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=I0n1c&amp;diff=45854"/>
		<updated>2015-05-21T18:57:43Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
'''i0n1c''', whose real name is Stefan Esser, is a German security researcher. He developed [[Antid0te]], an [[wikipedia:Address space layout randomization|ASLR]] for jailbroken [[iPhone]]s in fall 2010, but never released it, because [[iOS]] since 4.3 includes an implementation of ASLR. He developed an untethering exploit for iOS 4.3. He gave a version of the exploit that worked on iOS 4.3.1 to the [[iPhone Dev Team]] which updated [[redsn0w]] and [[PwnageTool]] to use it and released the new tools on 4 April 2011. [[sn0wbreeze]] was also updated to include his untether. As the vulnerability went unpatched in iOS 4.3.2 and 4.3.3, he updated his code later to support those firmwares. An iOS 4.3-compatible version was never released. His exploit was used in [[Pangu]] jailbreak.&lt;br /&gt;
&lt;br /&gt;
On Apr 19, 2015 he released a YouTube video of a iOS 8.4 beta 1 jailbreak, he has said he will not release it to the public.&lt;br /&gt;
===Presentations===&lt;br /&gt;
*[http://www.slideshare.net/i0n1c/syscan-2015-esserios678securityastudyinfail iOS 678 Security - A Study in Fail]&lt;br /&gt;
*[http://www.slideshare.net/i0n1c/ruxcon-2014-stefan-esser-ios8-containers-sandboxes-and-entitlements Ruxcon 2014 - iOS8 Containers, Sandboxes and Entitlements]&lt;br /&gt;
*[http://conference.hitb.org/hitbsecconf2011kul/materials/D2T1%20-%20Stefan%20Esser%20-%20iPhone%20Exploitation%20-%20One%20ROPe%20to%20Bind%20Them%20All.pdf HITB 2011 Malaysia: iPhone Exploitation - One ROPe to bind them all?]&lt;br /&gt;
*[http://antid0te.com/CSW2012_StefanEsser_iOS5_An_Exploitation_Nightmare_FINAL.pdf CanSecWest 2012: iOS5, an Exploitation Nightmare (PDF)]&lt;br /&gt;
*[https://media.blackhat.com/bh-us-11/Esser/BH_US_11_Esser_Exploiting_The_iOS_Kernel_Slides.pdf BlackHat US 2011: Exploiting the iOS Kernel (PDF)]&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
*[https://twitter.com/i0n1c i0n1c on Twitter]&lt;br /&gt;
*[http://www.suspekt.org Homepage]&lt;br /&gt;
*[https://github.com/stefanesser GitHub]&lt;br /&gt;
[[Category:Hackers]]&lt;br /&gt;
[[Category:Security Researcher]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Saurik&amp;diff=45853</id>
		<title>User:Saurik</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Saurik&amp;diff=45853"/>
		<updated>2015-05-21T18:56:00Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
saurik (Jay Freeman, born on 27 November) is the creator of [[Cydia Application|Cydia]], [[WinterBoard]] and [[Mobile Substrate]]. He is a member of the [[iPhone Dev Team]]. He also has various other iOS-related projects such as [[Cydia Server|hosting SHSHs]], along with Cycript, Cydget, CyDialer, Cyueue, Cyntact, and Veency.&lt;br /&gt;
&lt;br /&gt;
Geohot has given ownership of this wiki to Saurik in May 2015.&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.saurik.com/ Website]&lt;br /&gt;
* [http://gitweb.saurik.com/ Code]&lt;br /&gt;
* [https://twitter.com/saurik Twitter]&lt;br /&gt;
[[Category:Hackers]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
	<entry>
		<id>https://www.theiphonewiki.com/w/index.php?title=User:Saurik&amp;diff=45852</id>
		<title>User:Saurik</title>
		<link rel="alternate" type="text/html" href="https://www.theiphonewiki.com/w/index.php?title=User:Saurik&amp;diff=45852"/>
		<updated>2015-05-21T18:55:38Z</updated>

		<summary type="html">&lt;p&gt;Dankzegriefer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{lowercase}}&lt;br /&gt;
saurik (Jay Freeman, born on 27 November) is the creator of [[Cydia Application|Cydia]], [[WinterBoard]] and [[Mobile Substrate]]. He is a member of the [[iPhone Dev Team]]. He also has various other iOS-related projects such as [[Cydia Server|hosting SHSHs]], along with Cycript, Cydget, CyDialer, Cyueue, Cyntact, and Veency.&lt;br /&gt;
geohot has given ownership of this wiki to Saurik in May 2015.&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.saurik.com/ Website]&lt;br /&gt;
* [http://gitweb.saurik.com/ Code]&lt;br /&gt;
* [https://twitter.com/saurik Twitter]&lt;br /&gt;
[[Category:Hackers]]&lt;/div&gt;</summary>
		<author><name>Dankzegriefer</name></author>
		
	</entry>
</feed>