-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSLCertificate.py
49 lines (42 loc) · 1.7 KB
/
SSLCertificate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import ssl
import socket
import datetime
import boto3
import os
import subprocess
client = boto3.client("ses", region_name="us-east-1")
print(f"\n-----------SSL Status Service Started-----------\n")
# ##opening file
# host = input("Enter Hostname: ")
with open('./Temp/Result_current.txt') as f:
host = f.readline().strip()
# port= input ("Enter Port (80, 8080, 443): ")
port='443'
try:
print(f"Checking certifcate for server {host}")
context = ssl.create_default_context()
with socket.create_connection((host, port)) as sock:
with context.wrap_socket(sock, server_hostname=host) as ssock:
certificate = ssock.getpeercert()
certExpires = datetime.datetime.strptime(
certificate["notAfter"], "%b %d %H:%M:%S %Y %Z"
)
daysToExpiration = (certExpires - datetime.datetime.now()).days
print(f"Expires on: {certExpires} in {daysToExpiration} days")
f = open("./SSLCert.txt", "a")
f.write(f"SSL Certificate expires on: {certExpires} in {daysToExpiration} days")
f.close()
except:
print(f"Error on connection to Server or incorrect port selected, {host}")
f = open("./SSLCert.txt", "a")
f.write("Error on connection to Server or incorrect port selected ")
f.close()
#Remove Temp File Save Output File
path_current="./SSLCert.txt"
movepath = "./Temp/SSLCert_OP.txt"
os.replace(path_current, movepath)
print(f"\n-----Scanning Finished-----\n")
#Run Next Script
rawpath = os.getcwd() + "\\ReverseDNS.py"
path = rawpath.replace('\\', '/')
subprocess.call(['python', path])