Search results for

ASWebAuthenticationSession cookie

1,295 results found

Post

Replies

Boosts

Views

Activity

Reply to can't load web contents in wkwebview
There is now a (limited) cookie management available, but still no support for protocol handlers, which is probably the biggest issue now. For many tasks the ability to have access to the network requests is essential (for example for filter, for supporting file downloads etc), so support for protocol handlers is required..
Topic: UI Frameworks SubTopic: UIKit Tags:
Jan ’16
Need Resources: Kernel and SpoghtlightNetHelper Unauthorized System Access
To Whom It May Concern:I apparently have a self propagating virus that was introduced to my network by purchase of a used Mac computer from Amazon.com on approximately December 24, 2015. That is when I first started noticing erratic behavior on my machines. I have clean formatted and reinstalled OS from computers on an isolated network that was not infected. As soon as I connect the newly reinstalled OS iMacs to the infected network they become reinfected on first boot. I've spent something like 40 labor hours on this so far and I can't afford anymore resource allocation to this issue until there are some steps to cure the system.This activity on my computer appears to be a nasty virus. From what I can tell, it tries injecting itself in every executable it can locate. It trys to obtain the icloud login credentials, it attempts to obtain administrator credentials, and on one computer it appears to have secured and stolen my credentials to completely hijack the computer. Once it hijacks the computer it deletes
0
0
2.3k
Jan ’16
Need Resources: Kernel and SpoghtlightNetHelper Unauthorized System Access
To Whom It May Concern:I apparently have a self propagating virus that was introduced to my network by purchase of a used Mac computer from Amazon.com on approximately December 24, 2015. That is when I first started noticing erratic behavior on my machines. I have clean formatted and reinstalled OS from computers on an isolated network that was not infected. As soon as I connect the newly reinstalled OS iMacs to the infected network they become reinfected on first boot. I've spent something like 40 labor hours on this so far and I can't afford anymore resource allocation to this issue until there are some steps to cure the system.This activity on my computer appears to be a nasty virus. From what I can tell, it tries injecting itself in every executable it can locate. It trys to obtain the icloud login credentials, it attempts to obtain administrator credentials, and on one computer it appears to have secured and stolen my credentials to completely hijack the computer. Once it hijacks the computer it deletes
0
0
1.4k
Jan ’16
Help Me: SpotlightNetHelper Hijacks System is this a Virus?
To Whom It May Concern:I apparently have a self propagating virus that was introduced to my network by purchase of a used Mac computer from Amazon.com on approximately December 24, 2015. That is when I first started noticing erratic behavior on my machines. I have clean formatted and reinstalled OS from computers on an isolated network that was not infected. As soon as I connect the newly reinstalled OS iMacs to the infected network they become reinfected on first boot. I've spent something like 40 labor hours on this so far and I can't afford anymore resource allocation to this issue until there are some steps to cure the system.This activity on my computer appears to be a nasty virus. From what I can tell, it tries injecting itself in every executable it can locate. It trys to obtain the icloud login credentials, it attempts to obtain administrator credentials, and on one computer it appears to have secured and stolen my credentials to completely hijack the computer. Once it hijacks the computer it deletes
2
0
6.6k
Jan ’16
Help Me: SpotlightNetHelper Hijacks System is this a Virus?
To Whom It May Concern:I apparently have a self propagating virus that was introduced to my network by purchase of a used Mac computer from Amazon.com on approximately December 24, 2015. That is when I first started noticing erratic behavior on my machines. I have clean formatted and reinstalled OS from computers on an isolated network that was not infected. As soon as I connect the newly reinstalled OS iMacs to the infected network they become reinfected on first boot. I've spent something like 40 labor hours on this so far and I can't afford anymore resource allocation to this issue until there are some steps to cure the system.This activity on my computer appears to be a nasty virus. From what I can tell, it tries injecting itself in every executable it can locate. It trys to obtain the icloud login credentials, it attempts to obtain administrator credentials, and on one computer it appears to have secured and stolen my credentials to completely hijack the computer. Once it hijacks the computer it deletes
2
0
5.2k
Jan ’16
Protected url opening in AVPlayerViewController - TV OS
Can anyone please help that how to pass cookies in protected url to view mp4 file in TV OS. I am unable to view the protected url using below code in TV OS.TV OS level cookies is also not used in below case.let url = NSURL(string: link) let player = AVPlayer(URL: url!) let playerController = AVPlayerViewController()playerController.player = playerself.superview!.addSubview(playerController.view)playerController.view.frame = (self.superview?.frame)!player.play()Please help i am stuck with this.Thanks
0
0
310
Jan ’16
No codesigning identities (i.e. certificate and private key pairs) ...
Ever since I joined more than 1 team, I am experiencing signing issues.From my own personal team, I am able to sign my own projects ok, but when trying to upload or validate even those, I am getting:Xcode 6 App Store submission fails with “Your account already has a valid iOS distribution certificate”For the other teams, that I am on, and in one case an admin, I get this when I just try to build an archive in XCode:Code Sign error: No codesigning identities found: No codesigning identities (i.e. certificate and private key pairs) that match the provisioning profile specified in your build settings (“Otezla PsO”) were found.Even using Airsign, to resign apps, it has never worked to resign an app. 1. In order to support othe teams, I am suspecting that my keytool does not have the proper passwords in it for the certs, how can I verify that (for all teams) ?2. How does one manage multiple teams properly without these issues ?Thanks - payment will be made with cookies.
1
0
4.1k
Jan ’16
NSData nil when using NSURLConnection sendSynchronousRequest on iOS8
We have been having an issue with iOS8 where the block of code below is not always populating the NSData object once the sendSynchronousRequest is complete (This fails about 30% of the time) the result is that the NSData to nil.NSURLRequest * urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:webStringURL]];NSURLResponse * response = nil;NSError * error = nil;NSData * data = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&response error:&error];NSString *dataStr= [NSString stringWithUTF8String:[data bytes]];The failed and successful responses are identical returning this response in both scenarios:<NSHTTPURLResponse: 0x16584880> { URL: https://my.url.com/post Cache-Control = no-store,no-cache,max-age=0,must-revalidate; Connection = Keep-Alive; Content-Length = 4; Content-Type = text/html; charset=ISO8859_1; Date = Thu, 14 Jan 2016 16:57:07 GMT; Expires = Thu, 01 Jan 1970 00:00:01 GMT; Keep-Alive = timeout=5, max=100; Pragma = no-cache; Server = Apache; Set-Cookie
1
0
567
Jan ’16
Where does WKWebView store it's cookies?
Our app is using UIWebView and WKWebView side by side, and we are having an issue with keeping cookies in sync. I'm using NSHTTPCookieStorage and overriding the Cookie header on the requests before they leave for the wire on WKWebView, and then syncing anything set in the response via Set-Cookie. Occasionally, we are loosing a few cookies. I'd like to view the cookies that WebKit has for debugging purposes. I can easily see what is in NSHTTPCookieStorage, but not the individual cookies used in WKWebView. From my searching, I've only seen ways to retrive the types of records that are stored, but not to inspect the actual contents.In the simulator environment, I can see some cookies in /Library/Cookies/ but these seem to be from NSHTTPCookieStorage land. While, the contents of Library/WebKit/<my.app.name>/WebsiteData/* directories are all empty. Any tips?Thanks much!
Topic: Safari & Web SubTopic: General Tags:
5
0
4.1k
Jan ’16
Clearing cookies in SFSafariViewController?
I am using SFSafariViewController to authenticate against a website (SAML idP) and retaining my session using a cookie. I opted to use SFSafariViewController because my users could log in to the site using Safari or another app's instance of SFVC to achieve single sign on because as I understand it, the cookie store between native Safari and instances of SFSafariViewController are more or less shared. However, clearing the cookies in Safari settings in the settings app doesn't clear the cookies in my app's instance of SFVC. I have also tried logging out of the site in Safari but the cookie / session is still retained in my app's instance of SFVC.Is this expected behavior from SFVC?Thanks,Lucas
Topic: UI Frameworks SubTopic: UIKit Tags:
5
0
11k
Jan ’16
how to delete cookies as my app has to show uiwebview refreshing every 60 secs should work for 365 days without memory crash.if i delete cookies in webviewdidfinidhload , interative buttons in the webpage not working and it showing error . where is the ri
app functionality - webview with smart book buttons and settings page to change the room. After 3 days of continuously booking the room in webpage of webview, app became unresponsive.Please any body help..
Topic: Safari & Web SubTopic: General Tags:
0
0
254
Feb ’16
Reply to ATS blocks connection although requirements are met
Note the text of the error: ATS is blocking an HTTP request, not an HTTPS request. Something in your app is issuing an HTTP request and that’s what’s causing this problem.As to where the HTTP request is coming from, I suspect it’s this redirect.$ curl -D /dev/stderr https://pages.jumio.com HTTP/1.0 302 Found Date: Tue, 02 Feb 2016 11:21:16 GMT Server: Apache Location: http://jumio.com Vary: Accept-Encoding Content-Length: 87 Connection: Keep-Alive Content-Type: text/html Set-Cookie: BIGipServersj04web-app_https=2634547210.47873.0000; path=/ …Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Feb ’16
Reply to HELP!!! Invitation of People to 'Your Team' not working!
I've just solved it by entering the invitation code manually. Those are the steps to do follow:Go to your invitations list.Click on the pending invitationGet the invitationDisplayId parameter from the url. It should look like https://developer.apple.com/membercenter/index.action#invitationdetail?invitationDisplayId=XXXXXXXXXClear the caches and cookies and go to this link.Enter the invitation code on this page.
Feb ’16
Access and Modify browser cookies using safari extension
Hi,I have been developing safari Extesnion and facing a Issue which has blocked me.I need to access safari browser cookies using javascript.Like in chrome we have an API:chrome.cookies API, which help us to play with all the cookies in the browser.chrome.cookie.set , set the cookies in the browserchrome.cookie.get , set the cookies in the browserand so on.In Mozilla also we could use nsIcookieManager for all this. unfortunately , I am not able to find any such thing in safari, I have been though the links related to safari extesnion and found document.cookies , but it is document specific , it does not provide all cookies of browser, but only of the tab which is openend.I din't found any solution anywhere and Hope I could get the perfect answer here.(I am using safari verison 9.0)Thanks in advance.
0
0
1.8k
Mar ’16
Reply to safari 9 delete cookie issue
Hi dian,I am using safari 9, and found that document.cookies is document specific, if I do document.cookies, I get only the cookies of the tab , in which I am working.I am also a bit stuck here that how to get all the cookies available in the browser.I am not sure but may be you are not able to delete cookies because of this same reason.You may have solved this Issue , as it is almost a year old, If yes , Can you Please post your answer.
Topic: Safari & Web SubTopic: General Tags:
Mar ’16