Questions tagged [certificate-expiry]
6 questions
85
votes
2 answers
What happens if my distribution certificate expires?
My certificate will expire in 4 days, and I've uploaded for submission new app version with the new certificate.
What happens if the old certificate expires? Will users be available do download my app with old certificate, or will Apple remove my…

Timur Mustafaev
- 4,869
- 9
- 63
- 109
2
votes
0 answers
How to keep the cookie alive forever in Selenium scripts?
To create cookies with selenium:
cookies.py
import time
import json
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
driver = webdriver.Chrome()
target = "xxx.yyy"
driver.get(target)
time.sleep(60)
with…

showkey
- 482
- 42
- 140
- 295
0
votes
1 answer
How do i get expiration date from private key on pem format that generated from certificate?
Hi i generate 2 file from the certificate
This one in .pem format, generated using
openssl pkcs12 -in {{key_pair_file}} -out {{file_name}}.pem -nocerts -nodes -password pass:test
This one in .cer format, generated using openssl pkcs12 -in…

ReyApr
- 225
- 4
- 8
0
votes
1 answer
Rails: Devise Session Expiry with SessionsController < Devise::SessionsController
The Ruby on Rails Security Guide on Security, under "2.9 Session Expiry" gives following example code:
class Session < ApplicationRecord
def self.sweep(time = 1.hour)
if time.is_a?(String)
time = time.split.inject { |count, unit|…

von spotz
- 875
- 7
- 17
0
votes
1 answer
TLS Artefacts expiration reminders on Mule 4 Run Time Fabric and containers
How do you do?
We use Mulesoft Mule 4 deployed on the RTF fabric cluster (2 RTF instances) We would like to set up reminders in order to prevent administrators before the expiration of the date of the certificates used to establish outbound TLS…

abtimo
- 1
- 1
0
votes
0 answers
Read SSL PEM generated file to get certificate expiry date
I'm using https://github.com/fszlin/certes to generate an SSL PEM file and private key, but throughout the process I can't seem to see where to get the certificates expiry date (or even if it's in there). I have found the order expiry date which is…

Stuart Palmer
- 191
- 1
- 1
- 11