SSL insecure objects - html

On my page https://ol-shop.at/index.php?route=account/login it seems to be that there are insecure objects. Could someone please help me, taking a look on the source code. I don't know which url or object could be insecure. Thanks.

Perhaps http://ol-shop.at/image/secure_site2.gif?
This source:
TrustLogo("http://ol-shop.at/image/secure_site2.gif", "SC4", "none");

Related

browser network tab resource limit

I do not speak English well. Understand me.
I have a question. For resources on the Network tab,.
During the test, if the transferred and resources shown in the picture exceed 50GB, the network err is displayed. No more response can be received.
Please let me know if there is any documentation on this. I can't find
Thanks in advance.
Try below. Network.setDataSizeLimitsForTest argument could work for your needs.
Resource

Keyrock FIWARE method GET and POST

I have keyrock of fiware in my own laptop though docker.
When I do in my browser htp://localhost:8000 , this link redirect to a login website, so it's okay.
When I put htp://localhost:8000/sign_up this link redirect to a register website, so it's okay also.
But then thing is, If I want to do that though GET and POST, how can I do?
I installed Postman in my laptop but, when I put GET http://localhost:8000 everything is okay.
But when I put GET htp://localhost:8000/v3/users if I want list users, doesn't work.
the last I readed in this page : https://developer.openstack.org/api-ref/identity/v3/#users
Could you help me, please?
Thank you very much,
Best Regards.
As stated in the link you put in your question:
"A user with no assigned roles has no access to OpenStack resources."
The right port for your request is 5000 (keystone) instead of 8000 (horizon): http://localhost:5000/v3/users
So, to do what you want, you have to assign some specific role to the user you are using to access the list of users and, besides, I think you have to pass a valid token (X-Auth-Token header) in the request headers.
I hope it can help you.
I gave you a reply here that I think is a more detailed version of the same question. I hope this helps you. Otherwise, we can follow it in that question.
Best regards

HTML5 geolocation demo not working

I'm using this example to test geolocation API http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_geolocation_error
But, I always get Location information is unavailable. message. I tested it on different browsers, same problem. I have geolocation enabled in browser.
Also, I tried uploading this to a local server (XAMPP), but problem remains (same error code).
What am I doing wrong here, its taking me hours now?...I appreciate any help on this, thank you.
EDIT: When I try to locate myself using this service http://www.hostip.info/index.html its giving me error message ... actually we haven't a clue.. When I type in some random IP address, works perfect. Whats going on here?

bungie.net stats api

Has anyone tried accessing bungie.net reach stats api (statistics from Halo Matchmaking)?
As described here http://www.bungie.net/fanclub/statsapi/Group/Resources/Article.aspx?cid=545064
I can't seem to get any data returned, for example if i use this (with correct API key and gamertag values of course) ignore the first 2 asterisks ...
**http://www.bungie.net/api/reach/reachapijson.svc/player/details/byplaylist/MyIdentifierAPIkey/Gamertag
I don't receive a response - but no errors either, am i doing something wrong?
looking to use this for a Titanium (appcelerator) app eventually.
Any help or advice welcome, thanks in advance.
Unfortunately the API is not yet live to the public. I asked in a Private Message. They didn't say when it would be live.
In the Docs that Achronos posted, he put spaces in the URL's, I'm not sure if those are supposed to be there or not, so I tried it with the spaces and I got a 403 Forbidden error page. When I remove all the spaces, I get an error page that says:
Request Error
The server encountered an error processing the request. See server logs for more details.
I kinda can't check the server logs though... Bungie did say they were having some issues with the site though, so this might be a biproduct of that. I want them to get it working soon though, I wanna see just what it can do!

Trying to send an HTTP request over sockets

I'm having trouble sending out a simple HTTP request using Actionscript 3's Socket() object. My onConnect listener is below:
function sConnect(e:Event):void {
trace('connected');
s.writeUTFBytes('GET /outernet/client/rss/reddit-feeds HTTP/1.1\r\n');
s.writeUTFBytes('Host: 208.43.71.50:8080\r\n');
s.writeUTFBytes('Connection: Keep-alive\r\n');
s.flush();
}
Using a packet sniffer, I can see the request does indeed get sent to the server, but the packet sniffer doesn't identify the protocol as HTTP like it does with other HTTP services. When I run this, the server just eventually disconnects me. I have tried to connect to other simple Apache Servers and just get a malformed request error.
What am I missing here?
You have to write another "\r\n" to the stream before the flush to tell the HTTP server that you're finished sending the headers.
Turns out I wasn't sending a blank line to the HTTP server after my request. The following minor tweak from the original works:
function sConnect(e:Event):void {
trace('connected');
s.writeUTFBytes('GET /outernet/client/rss/reddit-feeds HTTP/1.1\r\n');
s.writeUTFBytes('Host: 208.43.71.50:8080\r\n');
s.writeUTFBytes('Connection: Keep-alive\r\n\r\n');
s.flush();
}
Note the extra \r\n after the last writeUTFBytes. Thanks anyway Brian.
Edit: Thanks Graeme.
Instead of using UTF, try with ANSI/ASCII. The encoding may be the cause of the issue.
I just wasted a lot of time tracking down what is apparently a serious bug in some combinations of Flash 10 and Linux with writeMultiByte(). I would be very dubious about using writeMultiByte().
I hope this helps you.
Maybe wrong, 'ascii' encoding not supported (see http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/charset-codes.html) - use 'us-ascii'