ios.cfw.guide Open in urlscan Pro
2606:4700:3031::6815:3543  Public Scan

Submitted URL: http://ios.cfw.guide/assets/js/if_jailbreaksapp_signed.js
Effective URL: https://ios.cfw.guide/assets/js/if_jailbreaksapp_signed.js
Submission: On March 21 via manual from CA — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

function waitForElm(selector){return new Promise(resolve=>{if(document.querySelector(selector)){return resolve(document.querySelector(selector));}
const observer=new MutationObserver(mutations=>{if(document.querySelector(selector)){resolve(document.querySelector(selector));observer.disconnect();}});observer.observe(document.body,{childList:true,subtree:true});});}
waitForElm('#ifJailbreaksAppSigned').then(function(elm){let hideIf=elm.style;hideIf.display="none";fetch("https://api.jailbreaks.app/status").then(res=>res.json()).then(body=>{if(body.status=="Signed"){hideIf.display="block";}});});