Questions tagged [security-warning]

39 questions
23
votes
4 answers

What does the Java Applet security warning "JAR file manifest does not contain the Permissions attribute"mean?

I have a Java Applet which needs access to the local filesystem of the client. I have created a simple certificate for my own (it is NOT certified by Verisign,Commodo, ...). I signed the jar with the following template: del…
koalabruder
  • 2,794
  • 9
  • 33
  • 40
9
votes
2 answers

Windows 8 Certificate Warning: We can't verify who created this file

Despite successfully signing my C++ app on Windows 8 with signtool with a valid timestamp server and certificate, when I (local) or my users (remote) attempt to run the app, Windows displays the following message: Open File - Security Warning We…
David Manpearl
  • 12,362
  • 8
  • 55
  • 72
8
votes
3 answers

Disabling Firefox Security Warning

Does anyone know how to disable Firefox's security warning: Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party. Are you sure you want to continue…
H. Ferrence
  • 7,906
  • 31
  • 98
  • 161
6
votes
1 answer

How to avoid Outlook Security Alert when sending Outlook message from VBScript?

I have this situation: Code must be in VBScript (outside of my control) Unable to disable programmatic access restrictions in Outlook preferences (group policy, not admin, and Windows doesn't recognize the valid virus scanner which is…
allquixotic
  • 1,481
  • 2
  • 18
  • 37
5
votes
1 answer

Remove risky access to your data error when running Google security checkup

Few of our customers of our app have started seeing this "Remove risky access" warning when they run the Google security checkup? Our app requires access to user's Gmail (Gmail API) and we've implemented all the good practices as mentioned in the…
Nands
  • 1,541
  • 2
  • 20
  • 33
4
votes
4 answers

Will a self signed code-signing certificate get rid of "Unknown Publisher" warnings?

Will a self signed code-signing certificate get rid of "Unknown Publisher" warnings? What will be the effect of using a self signed certificate with regards to warnings?
Paul Lassiter
  • 2,641
  • 5
  • 22
  • 25
3
votes
2 answers

After SourceTree update a security warning asks me to renew Mercurial

Since I upgraded to SourceTree 1.9.5.0, I am frequently reminded to upgrade Mercurial from 3.2.3 to 3.7.3 due to a security vulnerability. I will do that in the near future, but I am interested to know about the nature of the vulnerability.
Lajos Arpad
  • 64,414
  • 37
  • 100
  • 175
3
votes
5 answers

Can I prevent digital signature warning when I start a java application from command line?

Is there any way to prevent the "The application's digital signature cannot be verified" warning message from appearing when you run a Java application from the command line? I'm looking for a command line solution that would allow to start an…
sorin
  • 161,544
  • 178
  • 535
  • 806
3
votes
3 answers

How to avoid security warning in IE when landing an HTTPS page?

In IE 8, I am getting the below error message when trying to land on a https from a http page in an online store web portal.If i change the settings in my IE,It will not prompt the message.But since its a browser setting,we can ask each customers to…
Shyju
  • 214,206
  • 104
  • 411
  • 497
3
votes
2 answers

Java 7u55 Security warning Issue

I'm using jzebra signed version on one of my systems to print labels. There was an issue where applet was not loading on windows XP machine. When checked the java version was old(7u45) and I updated it to 7u55. Now a strange issue has started…
Nik
  • 441
  • 1
  • 4
  • 18
3
votes
6 answers

How to force user to deal with the Security Warning when starting Access 2007?

When a user start an Access 2007 database that have macros and vba, a security warning is shown. I want the user to deal with this warning, so if the the content is't enabled, the user should not be able to use the database. Now I use a macro named…
Johan
  • 18,814
  • 30
  • 70
  • 88
2
votes
1 answer

How to load a blob URL that's not marked as insecure?

If you go to the "creating a blob" example in https://developer.mozilla.org/en-US/docs/Web/API/Blob#creating_a_blob, you end up getting an URL that starts with "blob:https://", but the browser marks the site as insecure: What is required for that…
2
votes
1 answer

Security Warning in signed applet

The company I work for has an applet which requires special access to the client machine, so every Jar file is signed digitally. The applet and the company's web application interact using javascript to communicate. The problem is that the first…
David
  • 1,282
  • 3
  • 18
  • 40
2
votes
3 answers

Java applet: Caller-Allowable-Codebase does not work

I'm getting the dreaded LiveConnect warnings on an in-house self-signed applet. I'm using Java 1.7.0_45. According to what I've read, I should be able to get rid of these by adding Caller-Allowable-Codebase * to my manifest, and removing the…
Thomas Okken
  • 163
  • 10
2
votes
1 answer

Suppressing applet security warnings in Java 1.7.0_40 or later

Starting with Java 1.7.0_40, the "do not show this again for this app" checkbox, in security warnings for unsigned and self-signed applets is no longer available. My question: is there any other way to suppress these messages, without having to make…
Thomas Okken
  • 163
  • 10
1
2 3