self-signed

What is easy way to create and use a Self-Signed Certification for a Telegram Webhook?

半世苍凉 提交于 2019-12-08 03:09:53
问题 System info: Server Win Server 2012 Web Server: IIS 8.5 Project platform: ASP.NET MVC Webhook Path: https://webhook.MYDOMAIN.com/api/webhookaction // I use my domain name instead of MYDOMAIN I used the following way to create a Self-Signed Certification to use for a Telegram Webhook but finally telegram return SSL error to me, do you know an easier way to success? A) I Created a Self Signed Certificate by the following OpenSSL command instead of the Wildcard SSL openssl req -newkey rsa:2048

How to self-sign an applet with NetBeans?

我只是一个虾纸丫 提交于 2019-12-08 02:46:11
问题 In the previous months I developed a sandbox applet for an academic project. Due to the Java 1.7.51 security restrictions to applets, I have been trying to self-sign my applet with the hope that it can comply or overcome JRE's requisites for applets. I'm using NetBeans and I have taken as a point of departure some links that show how to self-sign a jar file. Unfortunately, I haven't been able to get it working. I have tried to add the following instructions on the build.xml file: <target name

Create & run secure (https) nodejs express app with self-signed certificates - Segmentation fault

£可爱£侵袭症+ 提交于 2019-12-08 01:45:03
问题 Following this guide https://git.coolaj86.com/coolaj86/ssl-root-cas.js/src/branch/master/Painless-Self-Signed-Certificates-in-node.js.md, I've created a Root CA and Signed Certificate with the following script: make-certs.sh #!/bin/bash FQDN=`hostname` # make directories to work from rm -rf certs mkdir -p certs/{server,client,ca,tmp} # Create your very own Root Certificate Authority openssl genrsa \ -out certs/ca/my-root-ca.key.pem \ 2048 # Self-sign your Root Certificate Authority # Since

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

拈花ヽ惹草 提交于 2019-12-07 18:35:29
问题 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? 回答1: You will still get warnings like untrusted signing authority when using self signed certificates. You usually just self sign on your own servers to test SSL. You don't want to self sign SSL on a production server. 回答2: No, a self-signed won't work for that. You'll have to get a code signing cert from a real Ca, see http:

Android application with SSL

坚强是说给别人听的谎言 提交于 2019-12-07 07:22:39
问题 I know that this particular topic was asked many times, but unfortunately in my case none of them are working. For past few days I was trying to get it to functional state, but I failed every time, so I finally come here to ask. I have a webservice on server with self-signed certificate. I can access wsdl file if I enter address into browser. Browser just remind me, that there is some issues with cert. and if I hit continue, everything works. Sadly I know very little about SSL, because its

CORS request did not succeed on Firefox but works on Chrome

我只是一个虾纸丫 提交于 2019-12-07 05:31:42
问题 I'm making CORS requests from https://169.254.128.2:8443 to APIs served on https://169.254.128.2:8444 by lighttpd server. Lighttpd has CORS enabled with the following response headers but the OPTIONS request does not go through on Firefox. setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" (tried https://169.254.128.2:8443 too), "Access-Control-Allow-Headers" => "accept, origin, x-requested-with, content-type, x-transmission-session-id, x-ida-auth-token, content-disposition",

Signed Java Applet Throws Security Exception on Connect to a Webservice

橙三吉。 提交于 2019-12-07 05:01:26
I have an java applet running on tomcat 5.5. It is signed ( -selfcert). I still get an java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader) Exception, when my Applet tries to connect to a webservice (already in this line): ws_locator = new My_WebserviceLocator(ws_adress + "?wsdl", new javax.xml.namespace.QName("http://impl.webservice", "My_Webservice")); Since there are some similar questions here, an i read them: Yes, the applet is signed. I checked it with -verify. Tomcat security exception, may be, but i have added to catalina.policy: grant

SSL Localhost Privacy error

岁酱吖の 提交于 2019-12-07 04:41:07
问题 I setup ssl on localhost (wamp), I made the ssl crt with GnuWIn32. When I try to login with fb in Chrome I get the following message: URL: https://localhost/ServerSide/fb-callback.php?code=.....#_=_ Error: Your connection is not private. Attackers might be trying to steal your information from localhost (for example, passwords, messages, or credit cards). NET::ERR_CERT_INVALID. localhost normally uses encryption to protect your information. When Chrome tried to connect to localhost this time,

Create & run secure (https) nodejs express app with self-signed certificates - Segmentation fault

こ雲淡風輕ζ 提交于 2019-12-06 14:12:32
Following this guide https://git.coolaj86.com/coolaj86/ssl-root-cas.js/src/branch/master/Painless-Self-Signed-Certificates-in-node.js.md , I've created a Root CA and Signed Certificate with the following script: make-certs.sh #!/bin/bash FQDN=`hostname` # make directories to work from rm -rf certs mkdir -p certs/{server,client,ca,tmp} # Create your very own Root Certificate Authority openssl genrsa \ -out certs/ca/my-root-ca.key.pem \ 2048 # Self-sign your Root Certificate Authority # Since this is private, the details can be as bogus as you like openssl req \ -x509 \ -new \ -nodes \ -key

How to self-sign an applet with NetBeans?

假装没事ソ 提交于 2019-12-06 09:28:11
In the previous months I developed a sandbox applet for an academic project. Due to the Java 1.7.51 security restrictions to applets, I have been trying to self-sign my applet with the hope that it can comply or overcome JRE's requisites for applets. I'm using NetBeans and I have taken as a point of departure some links that show how to self-sign a jar file. Unfortunately, I haven't been able to get it working. I have tried to add the following instructions on the build.xml file: <target name="-post-jar" depends="signing_procedure"> </target> <target name="signing_procedure" depends=""> <echo