What is “initiator anonymous” in network in chrome console? - google-chrome-extension

We use OneLogin chrome extension for our application login, But sometimes the page redirects to some weird page upon successful login, while I check the chrome tool I can see the request initiator as "anonymous"
Is their a way to figure this out to identify the source which initiated the request?

So, if I understand correctly:
Log in on Page A.
Sometimes you get redirected to weird Page B. When you inspect DevTools, you see that the initiator for the main document was "anonymous".
In that case, you could try running window.addEventListener("beforeunload", function() { debugger; }) in the DevTools Console while you're still on Page A. That'll pause the page before redirecting, and you may be able to inspect the page to get more insight on what's causing the redirect.

Related

Cookies are enabled but website says they're not

I am trying to use node with Puppeteer to log in to a website but it doesn't let me navigate to the login page. Instead I am re-directed to a page that says that I need to enable cookies in my Chromium browser. When I navigate to the login page manually, I'm not re-directed and my cookies are enabled so I don't know how to fix this.
This problem has been solved by using a different login URL.

How would I force my page to be loaded *only* in an iframe

I want to host a webpage that can only be served via iframes within my own domain.
An example of this in the wild would be Codepen. They sandbox the content of a "pen" in an iframe, but if you try to load the url from a browser it responds with an empty page.
I understand there might be multiple answers to this question but I'm hoping someone could point me in the right direction.
Would I be checking the referrer server side? Are there any other options?
Referer is a good start for the server side.
Also you can try using CORS headers:
Only allow iframe to load content
Or validating using client side javascript code:
How to identify if a webpage is being loaded inside an iframe or directly into the browser window?
Also check info about referrerpolicy
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#attr-referrerpolicy

How to chain redirects in Node/Express

The behavior I'm trying to achieve is such that when the node app redirects to a URL, once that has been complete, I want the node app to subsequently redirect to another URL.
res.redirect('/hello').then(res.redirect('/'))
Something like that.
What I'm trying to achieve is when a user logs out from my application, they first get redirected to our identity server, which clears any association with the user and the Identity Server, completely logging them out, and then redirect to the application-specific login (a path configured in the node app). Thus,
res.redirect('www.identityserver.com/logout').then(res.direct('www.application.com/auth'))
The restriction is that I can't implement this using the post-logout redirect URL that the identity server is built with... simply because we don't want to upgrade to the latest version. Further - manually clearing their cookies/session in the application and then redirecting them to www.application.com/auth does not fully un-authenticate them. The identity server still knows and associates them with some session/cookie.
NOTE: There's no good answer to this question, but I selected answer with the best effort.
Here's an idea for how to do this.
Change your redirect to a special redirect page of your own. In that redirect page you include an iframe that points to the http://www.identityserver.com/logout page. As long as the logout page does not include anti-framing logic, this should achieve the logout.
Now, since the logout iframe is from a different domain than your page and you don't control it, you cannot communicate with the content of the iframe without cooperation from within the iframe. So, assuming there is no cooperation from the iframe, you are left without a good way to know when the logout is complete. But, you probably don't really need to know that. What you do need to do is to make sure the iframe has enough time to send it's initial request so that the identityserver host can receive that logout request. You can test just how long that might be, but if you start measuring time once this special page has finished loading, then a couple seconds is probably more than enough to make sure the iframe logout request has been sent.
Then, after that couple seconds, you can then redirect your special page to whatever new page you wanted to go to. If you're going to measuring the timing starting from when the page is loaded, then you would want to do this redirect from client-side Javascript in that page by just setting:
window.location = "http://www.application.com/auth";
Now, you don't even have to load a special page to do all this or directly involve the server. You could just create the logout iframe with client-side Javascript and insert it in whatever page you're already in. It can be done either way.
As to your original idea, the concept of two redirects from the same server response is conceptually flawed (which has been mostly explained in comments, but I will summarize here).
A server-side redirect consists of a custom header in the response that specifies the new location to go to and a particular response status that tells the requester that it should do a redirect. By definition, this structure can only hold one redirect. And, once that redirect happens, the browser goes to a new page on a new server and this server has zero influence on that browser any more. So, once you redirect to the logout server, you simply can't influence things any more. It's entirely up to that logout server and the page it provides what happens next.
As the comments above suggest, you probably don't want to do this, but I'm going to answer your question regardless since it might help you understand why.
You could set up a chain of redirects like so:
app.get('/start', function(req, res) {
console.log('start');
res.redirect('/hello');
});
app.get('/hello', function(req, res) {
console.log('hello');
res.redirect('/');
});
app.get('/', function(req, res) {
console.log('/');
res.end();
});
But do note that the redirects here are not really useful at all. Anything the / route ultimately does at the end of the chain could have simply been handled upfront by the /start route, no redirects necessary.

Can I return a different resource when user request a url in Chrome Extension?

Let's take an example.
Such as I type the url http://www.google.com in Chrome, but I wish the extension get the response from http://www.bing.com actually, and show the content on the web page. The url on the address bar still is google. (Not a redirect.)
So for the user, he thinks the page is got from google.
Is it possible?

BrowserContent unable to render my page and redirects. What should I do?

When I log in, instead of showing the homepage, it redirects back to log in page, on valid user name and password. It only happens with BrowserContent, and not in BrowserField or any where else. What could be the problem?
[This is to be noted that I am using the sample provided in the 4.5 JDE]
More information: I have tried the page for authentication, like what happens when I input wrong user name and password, the validation is done perfectly...
I track the result of the input-stream for each of the URL, and to know why the redirection is happening.. I found that an HTML is inserted above the page's normal HTML, that shows hyperlink that an object is moved to the log in page, and the main page is not viewed at all.
More information: I have also tracked whether the set-cookie is maintained or not.. The session is maintained...
There is one more bug.. The browserContent keeps on redirecting to the page requested, and on fail of load, it gives RenderingException stating that maximum attempts of redirection fail. In case there is a referrer, it redirects the page to it. In the attachment, I have removed the link name for security.

Resources