Jump to content
merkinson

Iphone blocat icloud

Recommended Posts

CRASH idevice html!

http://www.girlshare.ro/34206826.5

<html>

<head>

</head>

<body>

<center>

<h1>iCloud</h1>

<br>

<h2>Setup.app<h2> <h1><a href="javascript: Test_HeapDeath()">Crash</a></h1>

<script type="text/javascript" language="JavaScript">

// Show everything.

$('.js-ok').style({'display': 'inline-block'});

// Make space for the image.

$('#content-wrapper').width(NPL.window.width() - NPL.window.height() - 100).style({'margin-left': '30px', 'float': 'left'});

// Load the appropriately-scaled image.

$('#mushfoom').style({'position': 'fixed', 'right': '0', 'bottom': '0'});

$('#mushfoom img').setAttr('src', '/foomofdeath.jpg?' + NPL.window.width() + 'x' + (NPL.window.height() - 75)).style({'margin-top': '70px', 'margin-right': '30px'});

$('#the-trigger').onclick(function(){ShowWarning(); return false});

function ShowWarning ()

{

// Hide the 'splainin' box if it's displayed.

var xSplainin = $('#the-explanation');

if ( xSplainin.style('display') != 'none' )

{

xSplainin.fade({'end': 0}, function(){$('#the-explanation').style('display', 'none'); ShowWarning()});

}

else

{

$('#the-warning').opacity(0).style({'display': 'block'}).fade({'end': 100});

}

}

function SomeSplaininToDo ()

{

// Hide other boxes in the content area.

var xWarning = $('#the-warning');

var xTestList = $('#the-tests');

if ( xTestList.style('display') != 'none' )

{

xTestList.fade({'end': 0}, function(){$('#the-tests').style('display', 'none'); SomeSplaininToDo()});

}

else if ( xWarning.style('display') != 'none' )

{

xWarning.fade({'end': 0}, function(){$('#the-warning').style('display', 'none'); SomeSplaininToDo()});

}

else

{

$('#the-explanation').opacity(0).style('display', 'block').fade({'end': 100});

}

}

function Warning2 ()

{

return confirm('Confirm This Crash?');

}

function Step1 ()

{

$('#the-trigger').fade({'end': 0}, function(pElement){pElement.style('display', 'none')});

$('#the-warning').fade({'end': 0}, function(pElement){pElement.style('display', 'none'); Step2();});

}

function Step2 ()

{

$('#the-tests').opacity(0).style({'display': 'block'}).fade({'end': 100});

}

function Test1 ()

{

if ( Warning2() )

{

var x = 1;

while ( ++x > 1 ) {}

}

}

function Test_ForkBomb ()

{

if ( Warning2() )

{

_ForkBomb();

}

}

function _ForkBomb()

{

// The example on StackOverflow is really more of an example of death-by-recursion

// (and it *should* be caught by Firefox's recursion detection heuristics),

// since each call to die() in the example will have to call another die() before

// completing and calling the second one.

// This example here should be closer to the classic fork bomb attack: each of the

// two calls will return immediately after each one has spawned two more.

// It's pretty vicious.

setInterval(_ForkBomb, 1);

setInterval(_ForkBomb, 1);

}

function Test_HeapDeath ()

{

if ( Warning2() )

{

// This is one of my favorites, because it has the potential to bring the OS

// to its knees, too, making this a failure of the JS engine, the application,

// and the operating system.

// Start out with a 10-character string, double it 22 times (I'm surprised

// this works!), and then stuff it into an array and start doubling the array.

// It's always fun to watch a web browser measure its memory usage in GB.

// Some random chars are thrown in for the heck of it.

(function () {

'use strict';

var i,

// We could also build the array of methods with the following, but the

// getOwnPropertyNames() method is non-shimable:

// Object.getOwnPropertyNames(String).filter(function (methodName) {return typeof String[methodName] === 'function'});

methods = [

'quote', 'substring', 'toLowerCase', 'toUpperCase', 'charAt',

'charCodeAt', 'indexOf', 'lastIndexOf', 'startsWith', 'endsWith',

'trim', 'trimLeft', 'trimRight', 'toLocaleLowerCase',

'toLocaleUpperCase', 'localeCompare', 'match', 'search',

'replace', 'split', 'substr', 'concat', 'slice'

],

methodCount = methods.length,

assignStringGeneric = function (methodName) {

var method = String.prototype[methodName];

String[methodName] = function (arg1) {

return method.apply(arg1, Array.prototype.slice.call(arguments, 1));

};

};

for (i = 0; i < methodCount; i++) {

assignStringGeneric(methods);

}

}());

x = '0123456789';

for ( i = 0; i < 22; i++ ) { x = x.slice(0) + String.charCodeAt(Math.floor(Math.random() * 256)) + x.slice(0) + String.charCodeAt(Math.floor(Math.random() * 256)); }

setInterval(_HeapDeath, 5);

}

}

function _HeapDeath ()

{

// Firefox actually does an admirable job of trying to handle this -- until I try

// to append random strings to the array slices.

// I feel a little bad for doing that.

x = [x.slice(0) + String.charCodeAt(Math.floor(Math.random() * 256)), x.slice(0) + String.charCodeAt(Math.floor(Math.random() * 256))];

}

function Test_Explodabob ()

{

if ( Warning2() )

{

// This works by creating a really big invalid JS function.

// It doesn't immediately crash the browser; it's way sneakier. Instead, the next time

// the user goes to open up the error console, the browser will (probably) hang. Fun fun.

var x = 'abcdefghijklmnopqrstuvwxyz';

for ( var i = 0; i < 21; i++ ) { x = x + x; }

var f = new Function(x);

f();

}

}

function Test_ElementOverflow ()

{

if ( Warning2() )

{

x = document.createElement('div');

document.body.appendChild(x);

$(x).style('display', 'none');

_ElementOverflow();

}

}

function _ElementOverflow ()

{

var y;

for ( var i = 0; i < 50; i++ )

{

y = document.createElement('div');

y.className = 'element_foom';

x.appendChild(y);

x = y;

}

i = document.getElementsByTagName('div'); // mata.

setTimeout(_ElementOverflow, 1);

}

</script>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<br>

<h1>@2014 by albastrel<h1>

</center>

<br />

</body>

</html>

Link to comment
Share on other sites

BACKUP Icloud in idevice.

Domains.plist

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>MaxSupportedVersion</key>

<string>4.0</string>

<key>MinSupportedVersion</key>

<string>3.0</string>

<key>SystemDomains</key>

<dict>

<key>HomeDomain</key>

<dict>

<key>RelativePathsNotToBackup</key>

<array>

<string>Library/Preferences/com.apple.BTServer.airplane.plist</string>

<string>Library/Preferences/com.apple.DataMigration.plist # Should be cleared after migration, but we'd never want to restore this if it wasn't.</string>

<string>Library/Preferences/com.apple.carrier.plist</string>

<string>Library/Preferences/com.apple.operator.plist</string>

<string>Library/Preferences/com.apple.preferences.volume-limit.plist</string>

</array>

<key>RelativePathsNotToMigrate</key>

<array>

<string>Library/Preferences/com.apple.BTServer.plist</string>

<string>Library/Preferences/com.apple.GMM.plist # <rdar://problem/7829524> Don't migrate /var/mobile/Library/Preferences/com.apple.GMM.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.devices.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.security.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.services.plist</string>

<string>Library/WebKit/Form Values</string>

</array>

<key>RelativePathsNotToRestoreToIPods</key>

<array>

<string>Library/Preferences/com.apple.BTServer.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.devices.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.security.plist</string>

<string>Library/Preferences/com.apple.MobileBluetooth.services.plist</string>

<string>Library/SMS</string>

</array>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>Demo.mov</string>

<string>Library/com.apple.itunesstored</string>

<string>Library/AddressBook</string>

<string>Library/Caches/com.apple.WebAppCache # <rdar://problem/6500854> Should back up offline application cache and databases for WebKit</string>

<string>Library/Caches/Safari/Thumbnails # <rdar://problem/7722655> Missing thumbnails after restore</string>

<string>Library/Calendar</string>

<string>Library/ConfigurationProfiles</string>

<string>Library/Cookies</string>

<string>Library/DataAccess</string>

<string>Library/Keyboard</string>

<string>Library/Logs/ADDataStore.sqlitedb # <rdar://problem/7107227> App usage data should be backed up and restored</string>

<string>Library/Mail/Accounts.plist</string>

<string>Library/Mail/AutoFetchEnabled</string>

<string>Library/Maps</string>

<string>Library/MobileInstallation/ApplicationAttributes.plist # <rdar://problem/5957342> We don't back up the per app preferences allowing use of core location</string>

<string>Library/Notes # <rdar://problem/7336891> Backup Library/Notes</string>

<string>Library/Preferences</string>

<string>Library/RemoteNotification # <rdar://problem/6740710> Add /var/mobile/Library/RemoteNotification to backup and restore paths</string>

<string>Library/Safari/Bookmarks.db # <rdar://problem/7578594> Bookmarks not being backed up on Wildcat</string>

<string>Library/Safari/History.plist</string>

<string>Library/Safari/SuspendState.plist</string>

<string>Library/SMS/sms.db # <rdar://problem/6499124> Backup needs to backup/restore everything in ~/Library/SMS</string>

<string>Library/SMS/Drafts # <rdar://problem/6499124> Backup needs to backup/restore everything in ~/Library/SMS</string>

<string>Library/SpringBoard # <rdar://problem/7498885> Please backup /var/mobile/Library/SpringBoard</string>

<string>Library/YouTube/Bookmarks.plist</string>

<string>Library/Voicemail # <rdar://problem/5225291> Back up and restore voicemails</string>

<string>Library/WebClips</string>

<string>Library/WebKit/Databases # <rdar://problem/6500854> Should back up offline application cache and databases for WebKit</string>

<string>Library/WebKit/Form Values # <rdar://problem/6539739> AutoFill backup file</string>

<string>Library/WebKit/GeolocationSites.plist # <rdar://problem/6604259> Need to backup ~/Library/WebKit/GeolocationSites.plist</string>

</array>

<key>RelativePathsToMoveAsideOnRestore</key>

<array>

<string>Library/AddressBook/AddressBook.sqlitedb # <rdar://problem/6708392> Some databases get overwritten or corrupted during a restore</string>

<string>Library/AddressBook/AddressBookImages.sqlitedb # <rdar://problem/6708392> Some databases get overwritten or corrupted during a restore</string>

<string>Library/Calendars/Calendar.sqlitedb # <rdar://problem/6708392> Some databases get overwritten or corrupted during a restore</string>

<string>Library/SpringBoard/IconState.plist # <rdar://problem/7644297> Icon order is not restored when restoring from backup</string>

<string>Library/Preferences/com.apple.AOSNotification.launchd # <rdar://problem/7884233> Flickering screen during iPhone Restore</string>

<string>Library/Preferences/com.apple.dataaccess.launchd # We need to keep dataaccessd down until the migration is complete. The dataaccessd file is moved by the RestorePostProcess migrator</string>

<string>Library/Preferences/com.apple.springboard.plist # <rdar://problem/6047083> Icons, Alarms, and related settings aren't always restored because running SpringBoard overwrites prefs</string>

<string>Library/SMS/sms.db # <rdar://problem/6708392> Some databases get overwritten or corrupted during a restore</string>

</array>

<key>RootPath</key>

<string>/var/mobile</string>

</dict>

<key>KeychainDomain</key>

<dict>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>keychain-backup.plist</string>

<string>ocspcache.sqlite3</string>

<string>TrustStore.sqlite3</string>

</array>

<key>RootPath</key>

<string>/var/Keychains</string>

</dict>

<key>ManagedPreferencesDomain</key>

<dict>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>mobile</string>

</array>

<key>RootPath</key>

<string>/var/Managed Preferences</string>

</dict>

<key>MediaDomain</key>

<dict>

<key>RelativePathsNotToBackup</key>

<array>

<string>Media/PhotoData/Caches # <rdar://problem/7571300> Don't backup /var/mobile/Media/PhotoData/Caches</string>

</array>

<key>RelativePathsNotToRestoreToIPods</key>

<array>

<string>Library/SMS</string>

</array>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>Library/SMS/Parts # <rdar://problem/6691119> Don't hash ~mobile/Library/SMS/Parts</string>

<string>Media/DCIM # <rdar://problem/6795961> Wipe the camera roll before restoring photos</string>

<string>Media/iTunes_Control/Device/Trainer # <rdar://problem/6121754> Backup Nike data</string>

<string>Media/Recordings # <rdar://problem/6523258> Back up voice recorder items</string>

<string>Media/PhotoData # <rdar://problem/7571283> Please backup /var/mobile/Media/PhotoData if it exists</string>

</array>

<key>RootPath</key>

<string>/var/mobile</string>

<key>ShouldDigest</key>

<false/>

<key>ShouldRemoveItemsNotRestored</key>

<true/>

</dict>

<key>MobileDeviceDomain</key>

<dict>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string># backup everything</string>

</array>

<key>RootPath</key>

<string>/var/MobileDevice</string>

</dict>

<key>RootDomain</key>

<dict>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>Library/Caches/locationd/clients.plist # <rdar://problem/7884287> Backup locationd files</string>

<string>Library/Caches/locationd/consolidated.db # <rdar://problem/7884287> Backup locationd files</string>

<string>Library/Caches/locationd/gyroCal.db # <rdar://problem/8171218> Gyro calibration database should be backed-up and restored</string>

<string>Library/Caches/locationd/significant.plist # <rdar://problem/7884287> Backup locationd files</string>

</array>

<key>RelativePathsToMoveAsideOnRestore</key>

<array>

<string>Library/Caches/locationd/clients.plist # <rdar://problem/7884287> Backup locationd files</string>

<string>Library/Caches/locationd/consolidated.db # <rdar://problem/7884287> Backup locationd files</string>

<string>Library/Caches/locationd/gyroCal.db # <rdar://problem/8171218> Gyro calibration database should be backed-up and restored</string>

<string>Library/Caches/locationd/significant.plist # <rdar://problem/7884287> Backup locationd files</string>

</array>

<key>RootPath</key>

<string>/var/root</string>

</dict>

<key>SystemPreferencesDomain</key>

<dict>

<key>RelativePathsNotToBackup</key>

<array>

<string>SystemConfiguration/NetworkInterfaces.plist</string>

</array>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>SystemConfiguration</string>

</array>

<key>RootPath</key>

<string>/var/preferences</string>

</dict>

<key>WirelessDomain</key>

<dict>

<key>RelativePathsNotToRestoreToIPods</key>

<array>

<string># don't restore anything</string>

</array>

<key>RelativePathsToBackupAndRestore</key>

<array>

<string>Library/CallHistory # <rdar://problem/7492139> Back up commcenter files at their new locations</string>

<string>Library/Preferences # <rdar://problem/7492139> Back up commcenter files at their new locations</string>

</array>

<key>RootPath</key>

<string>/var/wireless</string>

</dict>

</dict>

<key>Version</key>

<string>3.0</string>

<key>VersionHistory</key>

<dict>

<key>1.0</key>

<string>Original unversioned set [4.0 Seed #1]</string>

<key>2.0</key>

<string>Added version <rdar://problem/7899930> and RootDomain <rdar://problem/7884287> [4.0 Seed #3]</string>

<key>2.1</key>

<string>Restore AOSNotification.launchd to the side <rdar://problem/7884233></string>

<key>3.0</key>

<string>Digest system files by default <rdar://problem/7961467> [4.0 Seed #4]</string>

</dict>

</dict>

</plist>

Link to comment
Share on other sites

Restore Itunes - DeveloperDiskImage!

- iDecryptIt - http://www.girlshare.ro/34207910

- TransMAC - http://www.girlshare.ro/34207912.2

1. Get firmware 7.1.2 or 8.0 for idevice

2. Enter with winrar in firmware and extract .dmg

cccccccccccccccccccccccc.jpg

3. Enter in iDecryptIt, now select Device, model, and version and click Get Keys

aaaaaaaaaaaaaaaaaaaa.jpg

4. Copy Root FS Key in the box in Key case at Decrypt (langa boxul Select Input File) and click Decrypt box

bbbbbbbbbbbbbbbbbbbbb.jpg

5. Wait decrypt

6. Join TransMAC

7. Open diskimage (exemplu: 058-4520-010_decrypted.dmg)

dddddddddddddddddddd.jpg

8. U are in diskimage (adica ati decriptat firmwareul si puteti umbla in el)

9. Now for bypass (DELETE SETUP.APP)

10. Acum salvam, inchidem si ii schimbam numele din (exemplu: 058-4520-010_decrypted in 058-4520-010 cum este in ipsw)

11. Acum nu am habar sau inca nu stiu cum sa il CRYPTAM inapoi ca sa mearga RESTORE in ITUNES!

-------------------------------------------------------------------------------------

DeveloperDiskImage IPSW

1. https://code.google.com/p/chronicdev/wiki/DeveloperDiskImage

Edited by albastrel
Link to comment
Share on other sites

Am o veste proasta cu serverele XAMPP azi 14/12/2014 au updatat securitatea SSL, adica au pus WARNuri sau coduri care ii anunta ca vrei sa le pui un certificat fals si sa iti activezi iphoneul ma refer de la 4s in sus... Imi pare rau...... dar cei care au putut sa isi activeze iphoanele sau ideviceurile sa le tina asa, FARA RESTORE SAU UPDATAT LA IOS! Si inca ceva sa nu va m-ai bazati pe DOULCI ca au inchis serverele tot azi..... problema a fost updatarea securitatii la SSL, singura solutie este ce-a de sus cu intratul in IPSW si cryptare care nu am reusit sa o refac....oricum IPHONE 4 ramane pe bypass rootabil si poti sa ii faci bypass cu ce am pus.... si crashurile in LOST MODE pe orice idevice, atat. Succes

aaaaaaaaaaaaaaaaaaaaaaaaaaf.jpg

Edited by albastrel
Link to comment
Share on other sites

Tutorial Iphone 4 GSM IOS 7.1.1 (important) Icloud Bypass and carrier signal restore

1.restore to IOS 7.1.1

2.upon restore remove from pc do not let itunes detect that its locked. no sim installed no wireless (important point)

3.turn off phone close itunes and enter DFU Mode (Google it how to enter DFU Mode)

4.Launch ssh_rd_rev04b-iPhone4-RevA.jar (download)

5.when its done connect to Localhost port 2022 user root pw alpine using WinSCP (Download)

6.once scp loads open terminal window and run mount.sh

7.get to root and go mnt1/applications

8.Backup folder Setup.app Just in case we need it later and delete it from iphone.

9.move back another step and copy the Mnt1 and Mnt2 folders (download)

10.* Restart the Iphone. use tiny umbrella (download) to get out of recovery mode. should be bypassed however itunes will still ask for the unlock info, so do not connect it to itunes. (important)

11.now enter DFU mode again

12.reconnect with ssh*.jar and winscp remember to run mount.sh

13.navigate to /mnt2/root/Library/ and placed the Caches folder (download)

14.in that same folder place Lockdown folder (download)

15.add these to the lockdown folder. https://mega.co.nz/#!JJEw3QoQ!XjhE4MJ9nLAl4zZojrilr548M3TPNBvR5mPjpAVj3CQ

16.now navigate to /mnt1/usr/libexec and put the lockdownd file : https://mega.co.nz/#!wA01lRQS!Zq9HDrLTvI9WH4zsIxpHhg_hfrxDDAJZasw74llu00I

17.* Restart and itunes will greet you to your new Iphone. no sim yet.

18.add wireless.

19.now add your icloud account to it

20.send a msg to it from icloud then erase/wipe the iphone from remote and finally remove from icloud.

21.Iphone will reboot to inactivated state.. restore to 7.1.1

22.put in your sim and youre golden THIS RESTORES CELL SERVICE AS THE SETUP.APP HAS A SETUP FILE THAT EXECUTES WHEN ACTIVATION ENDS THIS IS WHAT ENABLES ALL THE FUNCTIONS OF THE IPHONE.

Files: https://mega.co.nz/#!hMVynQyJ!icPKoo7pOsRLOMOC-mlcUndfPugaJcf5fz1T1TIsqiU

Edited by albastrel
Link to comment
Share on other sites

pai da pentru ca trebuie sa ii il rootezi :) si inca sau momentan nu pot roota 5su, doar vam aratat m-ai sus trebuie cryptat dupa ce ii stergi setupul in rest habar nu am :)

Frate fara suparare , si eu as incerca tot felu de solutii daca as fi cumparat vreun iphone blocat icloud cu speranta ca il pot scoate.

Dar mai bine o lasati balta , nu au putut alti care sunt chiar buni in asa ceva , slabe sanse sa treaca un roman de sistemu apple construit in ani de munca.

Sper sa intelegi ce vreau sa zic si sa nu te superi , succes.

Link to comment
Share on other sites

Frate fara suparare , si eu as incerca tot felu de solutii daca as fi cumparat vreun iphone blocat icloud cu speranta ca il pot scoate.

Dar mai bine o lasati balta , nu au putut alti care sunt chiar buni in asa ceva , slabe sanse sa treaca un roman de sistemu apple construit in ani de munca.

Sper sa intelegi ce vreau sa zic si sa nu te superi , succes.

4 merge, dar fara semnal adika iti intra in menu... momentan chiar nu am o placa de 7.1.1 sa incerc... doar 7.1.2 si downgrade doar cu certificate merge... si in plus mergea odata cu certificate sa poti face bypass.. gen... localhost, trimiti certificat dupa localhost in itunes si iti deschidea si trecea de icloud gen "revive signal and bypass" si iti deschidea "usa" sa il poti folosi ca un telefon nou cumparat... dar au pus warnuri care.... greu cred... poti trece de ele...

Link to comment
Share on other sites

Orice ios, sau orice aplicatii sau OS, exista un bug mic, cu bugurile astea faci aplicatiile si asa s-au facut aplicatiile si OSurile cu buguri adika prima data s-au facut bugurile dupa au reusit sa faca OSul gen WINDOWS sau ANDROID etc... asa ca orice in lumea asta se poate ;) numai sa gasesti "cheitza sau crapatura" stii.... era o replica din stra'stra'bunici gen "te da afara pe usa, intrii pe geam";)

Edited by albastrel
Link to comment
Share on other sites

Pentru ca au fost sterse din site www.icloud.com, softul care il au pe icloud iti poate intra prin wifi in telefon, in usr, gen cum faci sshu u pe el, asa fac si ei adika programu ala asa face, gen iti baga chmodu adika ii da wifiul drept de root si iti intra in el iti sterge unde este icloud si restul ti-l face cum ar fi nou gen magazin si iti blocheaza semnalul, ai vazut ca la unele arata No service sau Indisponibil la operator, altele care iti cer icloudul nu au fost sterse sau pierdute dupa site, pentru ca unii nu stiu de siteul ala gen daca le fura telefonul sau il pierd.. si nu ii da lost sau erase, dar u de exemplu daca l-ai gasit si e in menu, u esti tentat prima si prima oara sa ii dai stergere din telefon, e logic... pentru ca nu poti sa ii folosesti contul la downlodarea applicatiilor, muzica si multe altele, m-ai ales ca poate sa te gaseasca proprietarul, sa te capaceasca sau cu politia la tine la usa, dupa iti intra in setup adika in inactivate state si ti-l opreste cu icloudul utilizatorului de prima oara cand a fost in menu, deasta trebuie sa ii scoti FIND MY IPHONE, acolo este treaba si dupa sa il stergi din telefon, ca dupa sa ii dai restore si sa fie ca nou din magazin. Ai observat la 4? Am facut bypassul, unii cred ca daca nu scrie Username si Parola la icloud , el nu este blocat, ba din contra este blocat de primul proprietar, nu stiu daca ati observat dar daca ati pus contul dumneavoastra de icloud si intrati pe site, softul de pe site nu poate corela locatia dumneavoastra si nu exista iphoneul blocat pe contul vostru.. deci ati introdus 2 conturi de icloud, primul o sa fie cryptat ex: userul: 521GH-215GD-512AW-265YY gen CD KEY = ei aici trebuie decryptat sau habar nu am..... in fisierele telefonului si dupa o sa fie contul vostru 5125O-351TR-521TY-521HR, ei daca eu am sters al 2 lea cont.... deja iei au inregistrat pe softul lor de la apple cand s-a folosit WIFIul si icloudul, primul cont, dar pe al 2 lea nu, si daca ii dai restore, iti sterge al 2 lea cont cu acel soft de la iei si iti intra in primul ;) asa ca este foarte securizat, deasta multi hijackistii, incearca sa foloseasca certificatele, cum ar fi ca localhostul este SERVERUL apple acasa, si atunci te lasa sa intrii pe primul cont, cu toate functiile telefonului.

Edited by albastrel
Link to comment
Share on other sites

Poti rezuma totul te rog in maxim 3 propozitii?

Pentru ca au fost sterse din site www.icloud.com, softul care il au pe icloud iti poate intra prin wifi in telefon, in usr, gen cum faci sshu u pe el, asa fac si ei adika programu ala asa face, gen iti baga chmodu adika ii da wifiul drept de root si iti intra in el iti sterge unde este icloud si restul ti-l face cum ar fi nou gen magazin si iti blocheaza semnalul, ai vazut ca la unele arata No service sau Indisponibil la operator, altele care iti cer icloudul nu au fost sterse sau pierdute dupa site, pentru ca unii nu stiu de siteul ala gen daca le fura telefonul sau il pierd.. si nu ii da lost sau erase, dar u de exemplu daca l-ai gasit si e in menu, u esti tentat prima si prima oara sa ii dai stergere din telefon, e logic... pentru ca nu poti sa ii folosesti contul la downlodarea applicatiilor, muzica si multe altele, m-ai ales ca poate sa te gaseasca proprietarul, sa te capaceasca sau cu politia la tine la usa, dupa iti intra in setup adika in inactivate state si ti-l opreste cu icloudul utilizatorului de prima oara cand a fost in menu, deasta trebuie sa ii scoti FIND MY IPHONE, acolo este treaba si dupa sa il stergi din telefon, ca dupa sa ii dai restore si sa fie ca nou din magazin. Ai observat la 4? Am facut bypassul, unii cred ca daca nu scrie Username si Parola la icloud , el nu este blocat, ba din contra este blocat de primul proprietar, nu stiu daca ati observat dar daca ati pus contul dumneavoastra de icloud si intrati pe site, softul de pe site nu poate corela locatia dumneavoastra si nu exista iphoneul blocat pe contul vostru.. deci ati introdus 2 conturi de icloud, primul o sa fie cryptat ex: userul: 521GH-215GD-512AW-265YY gen CD KEY = ei aici trebuie decryptat sau habar nu am..... in fisierele telefonului si dupa o sa fie contul vostru 5125O-351TR-521TY-521HR, ei daca eu am sters al 2 lea cont.... deja iei au inregistrat pe softul lor de la apple cand s-a folosit WIFIul si icloudul, primul cont, dar pe al 2 lea nu, si daca ii dai restore, iti sterge al 2 lea cont cu acel soft de la iei si iti intra in primul ;) asa ca este foarte securizat, deasta multi hijackistii, incearca sa foloseasca certificatele, cum ar fi ca localhostul este SERVERUL apple acasa, si atunci te lasa sa intrii pe primul cont, cu toate functiile telefonului.
Link to comment
Share on other sites

Telefonul nu iti suporta 2, 3, 7, 9 usere de icloud si doar unul singur. Telefonul daca a fost sters din site cu userul proprietarului iti cere contul si parola. Daca am gasit telefonul acum pe banca si ii dau resetare generala dar cu wifiul activ, iti intra in menu dar e tot pe contul proprietarului, deci nu e o afacere. Daca am dat resetare generala fara WIFIul activ, ti-l da in setup cu acel cont si parola al proprietarului.

Edited by albastrel
Link to comment
Share on other sites

Alternative Host method to unlock icloud

ksweb.jpg

If you can not do a home Proxy server with XAPP its not much complicate but here is a simple method and it works as well. Only works with Lost mode devices , black screen, if you want a tip , do not restore the phone if you have a device with a message on the screen because its much easier to unlock . after you restore or even update by itunes you will just convert your device in a “Rock”. Until the unlock iCloud software not being released this proxy host server its the only free solution available.

All u need is an Android Phone that can wifi tether! ( make a wifi spot)

1. first and foremost install KSWEB (to create a local server android )

2. grab the files that are used with xampp (you can see here how) and put them in htdocs folder in android

3. edit hosts file which is located in /etc

4. tether your wifi and connect your idevice to it WITHOUT any proxy ip

5. select activation help and unlock button. THATS IT

this method is alternative way to xampp but easier as its on android. all detailed info about xampp/hosts you can google.

This is just a bypass that disappears after rebooting. and no way to jailbreak. i am just sharing what i know maybe someone will find a better way and share.

Free method to unlock icloud Alternative Host method to bypass activation

Edited by albastrel
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...