Compare commits
10 Commits
670eadac8c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 2cd7cd545a | |||
| 5baba9ac08 | |||
| 47c55ccfdc | |||
| f2d02216a5 | |||
| 26aab46c59 | |||
| d7d0060e07 | |||
| d9145ec7db | |||
| 209dae74d8 | |||
| e92b88f121 | |||
| f050940b24 |
Generated
+3
@@ -1,4 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Black">
|
||||
<option name="sdkName" value="Python 3.9 (server-info) (2)" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (server-info) (2)" project-jdk-type="Python SDK" />
|
||||
</project>
|
||||
@@ -1,48 +1,66 @@
|
||||
import subprocess
|
||||
import csv
|
||||
from datetime import datetime
|
||||
from Controller import mysql_connect
|
||||
import requests
|
||||
from Controller import create_service
|
||||
import socket
|
||||
import random
|
||||
import time
|
||||
|
||||
def request(function,variable):
|
||||
|
||||
####
|
||||
####
|
||||
#### --- RUN AS SINGEL SERVICE --- ####
|
||||
####
|
||||
####
|
||||
|
||||
def request_post(function,variable):
|
||||
url = (f"http://api.stines.de:8001/{function}")
|
||||
response = requests.post(url,json = variable,headers={'access_token':'^YWUbG7yX*V!tV^KBSd*2c&vdN3wV9a2i7f3hfGFMBYFxi6#mMiJGiaA5KEHE%B*miK%qb7rQ67gmcYP@gqmux8'})
|
||||
return response
|
||||
|
||||
def request_get(function,variable):
|
||||
url = (f"http://api.stines.de:8001/{function}")
|
||||
response = requests.get(url,headers={'access_token':'^YWUbG7yX*V!tV^KBSd*2c&vdN3wV9a2i7f3hfGFMBYFxi6#mMiJGiaA5KEHE%B*miK%qb7rQ67gmcYP@gqmux8'})
|
||||
return response
|
||||
|
||||
create_service.addservice("REPORTS-AD")
|
||||
|
||||
def adcontroller (ip,name):
|
||||
# command = ["powershell", "-Command",
|
||||
# "Get-ADUser -Filter * -Properties * | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'users.csv'"]
|
||||
# subprocess.run(command)
|
||||
# # CSV-Datei einlesen und Feldnamen auslesen
|
||||
# with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||
# reader = csv.DictReader(file)
|
||||
# fieldnames = reader.fieldnames
|
||||
#
|
||||
# # Tabelle erstellen, falls sie noch nicht existiert
|
||||
# table_name = "Active-Directory-User"
|
||||
# create_table_query = f"CREATE TABLE IF NOT EXISTS `{table_name}` (id INT AUTO_INCREMENT PRIMARY KEY, importdate BIGINT(11), "
|
||||
# for field in fieldnames:
|
||||
# create_table_query += f"`{field}` TEXT, "
|
||||
# create_table_query = create_table_query.rstrip(", ") + ")"
|
||||
# request("dbset", {"query": create_table_query, 'dbname': name})
|
||||
#
|
||||
# # Daten aus der CSV-Datei in die Tabelle einfügen
|
||||
# with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||
# reader = csv.reader(file)
|
||||
# next(reader) # Überspringe die erste Zeile (Feldnamen)
|
||||
# for row in reader:
|
||||
# row = [cell if cell.strip() else "-" for cell in row]
|
||||
# unix_time = int(datetime.now().timestamp())
|
||||
# print(unix_time)
|
||||
# row = [unix_time] + row
|
||||
# insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldnames)}`) VALUES (%s, {', '.join(['%s'] * len(fieldnames))})"
|
||||
# print(request("add_ad_user", {"query": insert_query, 'dbname': name, 'entry': row}).text)
|
||||
# # mysql_connect.add_user(insert_query, name, row)
|
||||
#
|
||||
# command = ["powershell", "-Command",
|
||||
# "Get-ADGroupMember -Identity G-RDP-User | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'group.csv'"]
|
||||
# subprocess.run(command)
|
||||
command = ["powershell", "-Command",
|
||||
" Get-ADUser -Filter * -Properties * | Select-Object *, extensionAttribute1, extensionAttribute2 | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'users.csv'"]
|
||||
subprocess.run(command)
|
||||
# CSV-Datei einlesen und Feldnamen auslesen
|
||||
with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||
reader = csv.DictReader(file)
|
||||
fieldnames = reader.fieldnames
|
||||
#
|
||||
# unwanted_columns = ["PropertyNames", "AddedProperties","RemovedProperties","ModifiedProperties","PropertyCount"]
|
||||
# fieldnames = [col for col in fieldnames if col not in unwanted_columns]
|
||||
# Tabelle erstellen, falls sie noch nicht existiert
|
||||
table_name = "Active-Directory-User"
|
||||
create_table_query = f"CREATE TABLE IF NOT EXISTS `{table_name}` (id INT AUTO_INCREMENT PRIMARY KEY, importdate BIGINT(11), "
|
||||
for field in fieldnames:
|
||||
create_table_query += f"`{field}` TEXT, "
|
||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||
request_post("dbset", {"query": create_table_query, 'dbname': name})
|
||||
|
||||
# Daten aus der CSV-Datei in die Tabelle einfügen
|
||||
with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||
reader = csv.reader(file)
|
||||
next(reader) # Überspringe die erste Zeile (Feldnamen)
|
||||
for row in reader:
|
||||
row = [cell if cell.strip() else "-" for cell in row]
|
||||
unix_time = int(datetime.now().timestamp())
|
||||
row = [unix_time] + row
|
||||
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldnames)}`) VALUES (%s, {', '.join(['%s'] * len(fieldnames))})"
|
||||
# print(insert_query)
|
||||
request_post("ad/adduser", {"query": insert_query, 'dbname': name, 'entry': row})
|
||||
# mysql_connect.add_user(insert_query, name, row)
|
||||
|
||||
command = ["powershell", "-Command",
|
||||
"Get-ADGroupMember -Identity G-RDP-User | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'group.csv'"]
|
||||
subprocess.run(command)
|
||||
|
||||
# CSV-Datei einlesen und Feldnamen auslesen
|
||||
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
||||
@@ -53,7 +71,7 @@ def adcontroller (ip,name):
|
||||
for field in fieldnames:
|
||||
create_table_query += f"`{field}` TEXT, "
|
||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||
request("dbset", {"query": create_table_query, 'dbname': name})
|
||||
request_post("dbset", {"query": create_table_query, 'dbname': name})
|
||||
|
||||
# Daten aus der CSV-Datei in die Tabelle aktualisieren oder einfügen
|
||||
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
||||
@@ -62,14 +80,12 @@ def adcontroller (ip,name):
|
||||
sam_account_name = row["SamAccountName"]
|
||||
|
||||
# Abfrage, um die ID für den Benutzernamen zu erhalten
|
||||
query_id = f"SELECT id FROM `{table_name}` WHERE SamAccountName = %s"
|
||||
query_id = f"SELECT id FROM `{table_name}` WHERE SamAccountName = '{sam_account_name}'"
|
||||
|
||||
result = request("get_ad_user", {"query": query_id, 'dbname': name}).text
|
||||
print(result)
|
||||
# result = mysql_connect.get_user(query_id, name, (sam_account_name,))
|
||||
result = request_post("ad/getuserid", {"query": query_id, 'dbname': name}).text
|
||||
|
||||
if result:
|
||||
user_id = result[0]
|
||||
if result != "false":
|
||||
user_id = result
|
||||
print(user_id)
|
||||
update_query = f"UPDATE `{table_name}` SET "
|
||||
for field in fieldnames:
|
||||
@@ -78,14 +94,13 @@ def adcontroller (ip,name):
|
||||
update_query = update_query.rstrip(", ")
|
||||
update_query += ", `importdate` = %s" # Importdate als Unix-Timestamp aktualisieren
|
||||
update_query += " WHERE id = %s"
|
||||
|
||||
row_data = [row[field] for field in fieldnames if field != "SamAccountName"]
|
||||
unix_time = int(datetime.now().timestamp())
|
||||
row_data = row_data + [unix_time]
|
||||
row_data.append(user_id)
|
||||
print(row_data)
|
||||
mysql_connect.add_user(update_query, name, row_data)
|
||||
print(request_post("ad/adduser",{"query": update_query, "dbname":name, "entry":row_data}).text)
|
||||
else:
|
||||
print("false in side else")
|
||||
insert_query = f"INSERT INTO `{table_name}` ("
|
||||
insert_query += ", ".join(fieldnames) # Spaltennamen in die INSERT-Abfrage einbeziehen
|
||||
insert_query += ", `importdate`) VALUES ("
|
||||
@@ -95,8 +110,38 @@ def adcontroller (ip,name):
|
||||
unix_time = int(datetime.now().timestamp())
|
||||
row_data = row_data + [unix_time]
|
||||
print(row_data)
|
||||
mysql_connect.add_user(insert_query, name, row_data)
|
||||
# connection.commit()
|
||||
request_post("ad/adduser",{"query": insert_query, "dbname":name, "entry":row_data})
|
||||
|
||||
def get_local_ip():
|
||||
try:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.connect(("8.8.8.8", 80))
|
||||
local_ip = s.getsockname()[0]
|
||||
s.close()
|
||||
return local_ip
|
||||
except Exception as e:
|
||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||
return None
|
||||
|
||||
adcontroller("172.18.1.6","tnp-Invest-GmbH")
|
||||
service_time = f"23:{str(random.randint(1, 59)).zfill(2)}" ## ADD Random Time
|
||||
|
||||
while True:
|
||||
current_time = datetime.now().strftime("%H:%M")
|
||||
try:
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(request_get("gettime",{}).text + "\n")
|
||||
except Exception as e:
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(f"{current_time}No Connection to Server!" + "\n")
|
||||
if current_time == service_time:
|
||||
ip = get_local_ip()
|
||||
database = request_post("info/getdatabase",{"ip":ip}).text.replace('"',"")
|
||||
adcontroller(ip,database)
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(f"{current_time} - Sleep for {22*3600}" + "\n")
|
||||
time.sleep(22*3600)
|
||||
time.sleep(60)
|
||||
|
||||
ip = get_local_ip()
|
||||
database = request_post("info/getdatabase",{"ip":ip}).text.replace('"',"")
|
||||
adcontroller(ip,database)
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
import os
|
||||
import shutil
|
||||
import requests
|
||||
import zipfile
|
||||
import time
|
||||
|
||||
def addservice(service):
|
||||
path = f"C:\Scripte\{service}"
|
||||
if not os.path.isfile(f"{path}\.{service}"):
|
||||
main_folder = f"{path}"
|
||||
try:
|
||||
os.mkdir("C:\Scripte")
|
||||
os.mkdir(main_folder)
|
||||
except:
|
||||
print("Folder exist")
|
||||
shutil.copy(f"{service}.exe",main_folder)
|
||||
response = requests.get("https://nssm.cc/release/nssm-2.24.zip", stream=True)
|
||||
with open('C:\Scripte\\nssm.zip', 'wb') as file:
|
||||
for chunk in response.iter_content(chunk_size=8192):
|
||||
file.write(chunk)
|
||||
|
||||
# Entpacken der ZIP-Datei
|
||||
with zipfile.ZipFile('C:\Scripte\\nssm.zip', 'r') as zip_ref:
|
||||
zip_ref.extractall('C:\Scripte\\nssm')
|
||||
|
||||
shutil.move("C:\Scripte\\nssm\\nssm-2.24\win64\\nssm.exe",f"{main_folder}\\Windows_Dienst_Builder.exe")
|
||||
os.system(f"{main_folder}\\Windows_Dienst_Builder.exe install STI-{service} {main_folder}\\{service}.exe")
|
||||
open(f"{main_folder}\.{service}", 'a').close()
|
||||
time.sleep(2)
|
||||
print("Remove not Used Files")
|
||||
shutil.rmtree('C:\Scripte\\nssm')
|
||||
os.remove('C:\Scripte\\nssm.zip')
|
||||
@@ -1,12 +1,27 @@
|
||||
import subprocess
|
||||
import csv
|
||||
from datetime import datetime
|
||||
from Controller import mysql_connect
|
||||
from Controller import create_service
|
||||
import requests
|
||||
import socket
|
||||
import time
|
||||
import random
|
||||
|
||||
# create_service.addservice("REPORTS-EX")
|
||||
|
||||
def exchange (ip,name):
|
||||
def request_post(function,variable):
|
||||
url = (f"http://api.stines.de:8001/{function}")
|
||||
response = requests.post(url,json = variable,headers={'access_token':'^YWUbG7yX*V!tV^KBSd*2c&vdN3wV9a2i7f3hfGFMBYFxi6#mMiJGiaA5KEHE%B*miK%qb7rQ67gmcYP@gqmux8'})
|
||||
return response
|
||||
|
||||
exchange_commands = "Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn; Get-Mailbox | Select-Object PSComputerName, RunspaceId, PSShowComputerName, Database, UseDatabaseRetentionDefaults, RetainDeletedItemsUntilBackup, IsHierarchyReady, IsHierarchySyncEnabled,RetentionPolicy, ExchangeGuid, AdminDisplayVersion, ExchangeUserAccountControl, IsMailboxEnabled,ProhibitSendQuota, ProhibitSendReceiveQuota, RecoverableItemsQuota, RecoverableItemsWarningQuota,CalendarLoggingQuota, IsResource, IsLinked, IsShared, IsRootPublicFolderMailbox, LinkedMasterAccount, ResetPasswordOnNextLogon,ResourceType, RoomMailboxAccountEnabled, SamAccountName, ServerLegacyDN, UseDatabaseQuotaDefaults,IssueWarningQuota, RulesQuota, UserPrincipalName, RoleAssignmentPolicy, EffectivePublicFolderMailbox, SharingPolicy,ArchiveQuota, ArchiveWarningQuota, DisabledMailboxLocations, CalendarVersionStoreDisabled, AuditEnabled,AuditLogAgeLimit, WhenMailboxCreated, AccountDisabled, Alias, OrganizationalUnit, DisplayName,LegacyExchangeDN, MaxSendSize, MaxReceiveSize, EmailAddressPolicyEnabled, PrimarySmtpAddress,RecipientType, RecipientTypeDetails, WindowsEmailAddress, Identity, IsValid, ExchangeVersion,DistinguishedName, Guid, ObjectCategory, WhenChanged, WhenCreated, WhenChangedUTC, WhenCreatedUTC,OrganizationId, Id, OriginatingServer | Export-Csv -Path 'exuser.csv' -NoTypeInformation -Encoding UTF8"
|
||||
def request_get(function,variable):
|
||||
url = (f"http://api.stines.de:8001/{function}")
|
||||
response = requests.get(url,headers={'access_token':'^YWUbG7yX*V!tV^KBSd*2c&vdN3wV9a2i7f3hfGFMBYFxi6#mMiJGiaA5KEHE%B*miK%qb7rQ67gmcYP@gqmux8'})
|
||||
return response
|
||||
|
||||
def exchange(ip,name):
|
||||
|
||||
exchange_commands = "Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn; Get-Mailbox | Select-Object PSComputerName, RunspaceId, PSShowComputerName, Database, UseDatabaseRetentionDefaults, RetainDeletedItemsUntilBackup, IsHierarchyReady, IsHierarchySyncEnabled,RetentionPolicy, ExchangeGuid, AdminDisplayVersion, ExchangeUserAccountControl, IsMailboxEnabled,ProhibitSendQuota, ProhibitSendReceiveQuota, RecoverableItemsQuota, RecoverableItemsWarningQuota,CalendarLoggingQuota, IsResource, IsLinked, IsShared, IsRootPublicFolderMailbox, LinkedMasterAccount, ResetPasswordOnNextLogon,ResourceType, RoomMailboxAccountEnabled, SamAccountName, ServerLegacyDN, UseDatabaseQuotaDefaults,IssueWarningQuota, RulesQuota, UserPrincipalName, RoleAssignmentPolicy, EffectivePublicFolderMailbox, SharingPolicy,ArchiveQuota, ArchiveWarningQuota, DisabledMailboxLocations, CalendarVersionStoreDisabled, AuditEnabled,AuditLogAgeLimit, WhenMailboxCreated, AccountDisabled, Alias, OrganizationalUnit, DisplayName,LegacyExchangeDN, MaxSendSize, MaxReceiveSize, EmailAddressPolicyEnabled, PrimarySmtpAddress,RecipientType, RecipientTypeDetails, WindowsEmailAddress, Identity, IsValid, ExchangeVersion,DistinguishedName, Guid, ObjectCategory, WhenChanged, WhenCreated, WhenChangedUTC, WhenCreatedUTC,OrganizationId, Id, OriginatingServer,CustomAttribute2 | Export-Csv -Path 'exuser.csv' -NoTypeInformation -Encoding UTF8"
|
||||
|
||||
# PowerShell als Subprozess ausführen
|
||||
process = subprocess.Popen(["powershell", "-Command", exchange_commands], stdout=subprocess.PIPE, shell=True)
|
||||
@@ -29,9 +44,7 @@ def exchange (ip,name):
|
||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||
create_table_query += " ROW_FORMAT=DYNAMIC"
|
||||
row_length = len(create_table_query)
|
||||
print(row_length)
|
||||
print(create_table_query)
|
||||
mysql_connect.create_database(create_table_query, name)
|
||||
request_post("dbset",{"query":create_table_query, "dbname":name})
|
||||
|
||||
with open("exuser.csv", "r", encoding='utf-8-sig') as file:
|
||||
reader = csv.reader(file)
|
||||
@@ -47,4 +60,37 @@ def exchange (ip,name):
|
||||
|
||||
# Führe das Einfüge-Query aus
|
||||
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldnames)}`) VALUES (%s, {', '.join(['%s'] * len(fieldnames))})"
|
||||
mysql_connect.add_user(insert_query, name, row)
|
||||
request_post("ex/adduser",{"query":insert_query, "dbname":name, "entry":row})
|
||||
|
||||
def get_local_ip():
|
||||
try:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.connect(("8.8.8.8", 80))
|
||||
local_ip = s.getsockname()[0]
|
||||
s.close()
|
||||
return local_ip
|
||||
except Exception as e:
|
||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||
return None
|
||||
|
||||
service_time = f"23:{str(random.randint(1, 59)).zfill(2)}" ## ADD Random Time
|
||||
|
||||
ip = get_local_ip()
|
||||
exchange(ip,"tnp-Invest-GmbH")
|
||||
|
||||
while True:
|
||||
current_time = datetime.now().strftime("%H:%M")
|
||||
try:
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(request_get("gettime",{}).text + "\n")
|
||||
except Exception as e:
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(f"{current_time}No Connection to Server!" + "\n")
|
||||
if current_time == service_time:
|
||||
ip = get_local_ip()
|
||||
database = request_post("info/getdatabase",{"ip":ip}).text.replace('"',"")
|
||||
exchange(ip,database)
|
||||
with open ("log.txt","a") as datei:
|
||||
datei.writelines(f"{current_time} - Sleep for {22*3600}" + "\n")
|
||||
time.sleep(22*3600)
|
||||
time.sleep(60)
|
||||
@@ -0,0 +1,35 @@
|
||||
"PSComputerName","RunspaceId","PSShowComputerName","Database","UseDatabaseRetentionDefaults","RetainDeletedItemsUntilBackup","IsHierarchyReady","IsHierarchySyncEnabled","RetentionPolicy","ExchangeGuid","AdminDisplayVersion","ExchangeUserAccountControl","IsMailboxEnabled","ProhibitSendQuota","ProhibitSendReceiveQuota","RecoverableItemsQuota","RecoverableItemsWarningQuota","CalendarLoggingQuota","IsResource","IsLinked","IsShared","IsRootPublicFolderMailbox","LinkedMasterAccount","ResetPasswordOnNextLogon","ResourceType","RoomMailboxAccountEnabled","SamAccountName","ServerLegacyDN","UseDatabaseQuotaDefaults","IssueWarningQuota","RulesQuota","UserPrincipalName","RoleAssignmentPolicy","EffectivePublicFolderMailbox","SharingPolicy","ArchiveQuota","ArchiveWarningQuota","DisabledMailboxLocations","CalendarVersionStoreDisabled","AuditEnabled","AuditLogAgeLimit","WhenMailboxCreated","AccountDisabled","Alias","OrganizationalUnit","DisplayName","LegacyExchangeDN","MaxSendSize","MaxReceiveSize","EmailAddressPolicyEnabled","PrimarySmtpAddress","RecipientType","RecipientTypeDetails","WindowsEmailAddress","Identity","IsValid","ExchangeVersion","DistinguishedName","Guid","ObjectCategory","WhenChanged","WhenCreated","WhenChangedUTC","WhenCreatedUTC","OrganizationId","Id","OriginatingServer"
|
||||
,,,"EXDB02","False","True","True","True",,"c6ce82ee-675f-4bb0-9861-5b584858beaf","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"Islambouli","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","abdalrahman.Islambouli@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","16.12.2021 13:45:20","False","abdalrahman.Islambouli","tnp-gruppe.de/TNP Benutzer","Abdalrahman Islambouli","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=c31ac76d971342ca9d580b06642a3a88-Abdalrahman I","Unlimited","Unlimited","True","abdalrahman.Islambouli@tnp-gruppe.de","UserMailbox","UserMailbox","abdalrahman.Islambouli@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Abdalrahman Islambouli","True","0.20 (15.0.0.0)","CN=Abdalrahman Islambouli,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","c3e294c2-ae05-43ee-9bd0-9b9a227fe65c","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 08:25:44","16.12.2021 10:32:03","21.08.2023 06:25:44","16.12.2021 09:32:03","","tnp-gruppe.de/TNP Benutzer/Abdalrahman Islambouli","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB03","True","False","True","True",,"55c64923-1d4c-4c34-a3f4-e4b8044a5267","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"abrechnung","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","abrechnung@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","01.07.2023 10:32:00","False","abrechnung","tnp-gruppe.de/TNP Benutzer","Abrechnung Cura Saale","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=ac17e441735c4a76b7dcd088a491c7bc-Abrechnung C","Unlimited","Unlimited","False","abrechnung@cura-saale.de","UserMailbox","UserMailbox","abrechnung@cura-saale.de","tnp-gruppe.de/TNP Benutzer/Abrechnung Cura Saale","True","0.20 (15.0.0.0)","CN=Abrechnung Cura Saale,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","5722c4c2-4bb0-4d4c-bc0e-6c4029d891cc","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 12:40:52","01.07.2023 10:32:00","21.08.2023 10:40:52","01.07.2023 08:32:00","","tnp-gruppe.de/TNP Benutzer/Abrechnung Cura Saale","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB03","True","False","True","True",,"d7793575-0997-415e-8b01-76bb2cce9caa","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"ad-test-user","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","ad-test-user@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","05.01.2022 11:41:24","False","ad-test-user","tnp-gruppe.de/TNP Benutzer","Admin-Test-User (Service-Account)","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=abe4b44607544519a7cd7e2115b0dfc2-Admin-Test-Us","Unlimited","Unlimited","True","ad-test-user@tnp-gruppe.de","UserMailbox","UserMailbox","ad-test-user@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Admin-Test-User","True","0.20 (15.0.0.0)","CN=Admin-Test-User,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","f48f294d-f644-46e1-b701-f843985e0251","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 11:38:36","29.12.2021 09:45:19","21.08.2023 09:38:36","29.12.2021 08:45:19","","tnp-gruppe.de/TNP Benutzer/Admin-Test-User","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"4ef853ab-55fb-46ca-87e9-3829e0ced9ef","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"alarmaufschaltungen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","alarmaufschaltungen@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:49:36","False","alarmaufschaltungen","tnp-gruppe.de/TNP Benutzer","Alarmaufschaltungen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=c377925340ee4e3e8fc8720ed9a826de-Alarmaufschal","Unlimited","Unlimited","True","alarmaufschaltungen@tnp-gruppe.de","UserMailbox","SharedMailbox","alarmaufschaltungen@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Alarmaufschaltungen","True","0.20 (15.0.0.0)","CN=Alarmaufschaltungen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","bc1839fa-1ec9-41ed-a899-d69f70b7ef9b","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:24","19.12.2021 18:49:36","18.07.2023 09:45:24","19.12.2021 17:49:36","","tnp-gruppe.de/TNP Benutzer/Alarmaufschaltungen","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"ac510090-51e0-472e-939f-58db3b3472b2","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","True","False","False","False","NT-AUTORITÄT\SELBST","False","Room","False","Besprechungsraum.Gro","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","Besprechungsraum.Gross@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","17.12.2021 08:51:16","True","Besprechungsraum.Gross","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Besprechungsraum Gross","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=ae6ee20090cf427bafae3db9a233f74d-Besprechungsr","Unlimited","Unlimited","True","Besprechungsraum.Gross@tnp-gruppe.de","UserMailbox","RoomMailbox","Besprechungsraum.Gross@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Gross","True","0.20 (15.0.0.0)","CN=Besprechungsraum Gross,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","aee56efa-c39d-4a6d-9b7b-55e8642569f8","tnp-gruppe.de/Configuration/Schema/Person","27.01.2023 07:08:11","17.12.2021 08:51:16","27.01.2023 06:08:11","17.12.2021 07:51:16","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Gross","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"2c106f15-e9cc-4667-b54b-e035a9e33d46","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","True","False","False","False","NT-AUTORITÄT\SELBST","False","Room","False","Besprechungsraum.Kle","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","Besprechungsraum.Klein@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","17.12.2021 08:50:11","True","Besprechungsraum.Klein","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Besprechungsraum Klein","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=3e427550ddb44c6e9f4c8b1d5e87df4d-Besprechungsr","Unlimited","Unlimited","True","Besprechungsraum.Klein@tnp-gruppe.de","UserMailbox","RoomMailbox","Besprechungsraum.Klein@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Klein","True","0.20 (15.0.0.0)","CN=Besprechungsraum Klein,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","56bb0fc8-13ea-4697-b72d-d45c22c7126a","tnp-gruppe.de/Configuration/Schema/Person","27.01.2023 07:08:11","17.12.2021 08:50:12","27.01.2023 06:08:11","17.12.2021 07:50:12","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Klein","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"c0d0702c-a92e-4481-a6e6-04fef5aa83e4","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"bewerbung","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","bewerbung@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:50:19","False","bewerbung","tnp-gruppe.de/TNP Benutzer","Bewerbung","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=833330aa0c4a43b0a692ea7a6f8af98b-Bewerbung","Unlimited","Unlimited","True","bewerbung@tnp-gruppe.de","UserMailbox","SharedMailbox","bewerbung@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Bewerbung","True","0.20 (15.0.0.0)","CN=Bewerbung,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","474bd513-c4fe-4069-afa3-8ce6e0ee4cb4","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:32","19.12.2021 18:50:19","18.07.2023 09:45:32","19.12.2021 17:50:19","","tnp-gruppe.de/TNP Benutzer/Bewerbung","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"f7e48f99-558c-4c01-b077-d262a89de986","Version 15.2 (Build 1118.7)","AccountDisabled","True","50 GB (53,687,091,200 bytes)","50 GB (53,687,091,200 bytes)","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","True",,,"SM_c1c534425b4249cfb","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","False","Unlimited","256 KB (262,144 bytes)","DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","True","False","90.00:00:00","02.09.2021 13:28:50","True","DiscoverySearchMailbox{D919BA05-46A6-415f-80AD-7E09334BB852}","tnp-gruppe.de/Users","Discoverysuchpostfach","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=6ca4161e4fdf4359a7e03131009cdc8d-DiscoverySear","100 MB (104,857,600 bytes)","100 MB (104,857,600 bytes)","True","DiscoverySearchMailbox{D919BA05-46A6-415f-80AD-7E09334BB852}@tnp-gruppe.de","UserMailbox","DiscoveryMailbox","DiscoverySearchMailbox{D919BA05-46A6-415f-80AD-7E09334BB852}@tnp-gruppe.de","tnp-gruppe.de/Users/DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}","True","0.20 (15.0.0.0)","CN=DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852},CN=Users,DC=tnp-gruppe,DC=de","db5cd41e-6ea5-4784-9a88-d5e17c02c7b8","tnp-gruppe.de/Configuration/Schema/Person","27.01.2023 07:08:12","02.09.2021 12:44:00","27.01.2023 06:08:12","02.09.2021 10:44:00","","tnp-gruppe.de/Users/DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"4cae2de7-7fbf-4107-b223-917858884660","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"eva-maria.lehmann","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","eva-maria.lehmann@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","16.12.2021 13:46:33","False","eva-maria.lehmann","tnp-gruppe.de/TNP Benutzer","Eva-Maria Lehmann","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=73d87fcca2c945ce99ad376fbaf22d80-Eva-Maria Leh","Unlimited","Unlimited","True","eva-maria.lehmann@tnp-gruppe.de","UserMailbox","UserMailbox","eva-maria.lehmann@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Eva-Maria Lehmann","True","0.20 (15.0.0.0)","CN=Eva-Maria Lehmann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","bf7c0205-b0c9-48e5-97f6-bbc009758560","tnp-gruppe.de/Configuration/Schema/Person","20.08.2023 12:46:22","16.12.2021 10:21:40","20.08.2023 10:46:22","16.12.2021 09:21:40","","tnp-gruppe.de/TNP Benutzer/Eva-Maria Lehmann","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"e6aad670-a194-47cf-ae8c-5b9dcf7e13b8","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"exadmin","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","exadmin@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","02.09.2021 13:28:29","False","exadmin","tnp-gruppe.de/TNP Admins","Exchange Admin (Service-Account)","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=eb91f54c1ad34eaca235f9497704cc75-Exchange Admi","Unlimited","Unlimited","True","exadmin@tnp-gruppe.de","UserMailbox","UserMailbox","exadmin@tnp-gruppe.de","tnp-gruppe.de/TNP Admins/Exchange Admin","True","0.20 (15.0.0.0)","CN=Exchange Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de","15664eee-b2b8-4477-b301-b7b02e254fcd","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 11:39:13","02.09.2021 11:54:38","21.08.2023 09:39:13","02.09.2021 09:54:38","","tnp-gruppe.de/TNP Admins/Exchange Admin","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"30ce8d8a-4734-4f11-a158-99639fb1e55d","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"info","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","info@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:50:55","False","info","tnp-gruppe.de/TNP Benutzer","Info","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=07a34de9fdc54635af23f05ecdbe1e19-Info","Unlimited","Unlimited","True","info@tnp-gruppe.de","UserMailbox","SharedMailbox","info@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Info","True","0.20 (15.0.0.0)","CN=Info,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","5d46e10a-38cf-46ef-8673-bf7d4c0b4c9f","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:36","19.12.2021 18:50:55","18.07.2023 09:45:36","19.12.2021 17:50:55","","tnp-gruppe.de/TNP Benutzer/Info","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Journal","True","False","True","True",,"2f71af03-7112-48ed-b94e-95a3cbd597a8","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"Info1","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","Info1@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","25.04.2023 12:36:59","True","Info","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Info Cura-Saale","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=66fe84c085c644fd902aa4a9619f7da2-Info Cura-Saa","Unlimited","Unlimited","False","info@cura-saale.de","UserMailbox","SharedMailbox","info@cura-saale.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Info Cura-Saale","True","0.20 (15.0.0.0)","CN=Info Cura-Saale,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","238165cc-0ebd-49f0-a3c3-8045fda6cf3c","tnp-gruppe.de/Configuration/Schema/Person","23.08.2023 09:52:19","25.04.2023 12:36:59","23.08.2023 07:52:19","25.04.2023 10:36:59","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Info Cura-Saale","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Treu","True","False","True","True",,"404a6e24-0f4a-4d30-aa69-5cec5135e8b1","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"jan.treu","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","False","Unlimited","256 KB (262,144 bytes)","jan.treu@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:45","False","jan.treu","tnp-gruppe.de/TNP Benutzer","Jan Treu","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=f1891a5ff36b45849d8a521425f13e7f-Jan Treu","Unlimited","Unlimited","True","jan.treu@tnp-gruppe.de","UserMailbox","UserMailbox","jan.treu@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Jan Treu","True","0.20 (15.0.0.0)","CN=Jan Treu,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","079ec7f2-a3b1-4182-a862-953bcd3c0c0a","tnp-gruppe.de/Configuration/Schema/Person","16.08.2023 05:42:47","01.09.2021 13:15:06","16.08.2023 03:42:47","01.09.2021 11:15:06","","tnp-gruppe.de/TNP Benutzer/Jan Treu","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Journal","True","False","True","True","Journal","60f4ea76-2969-4b0e-a114-4cc1f6a67658","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"Journal","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","False","Unlimited","256 KB (262,144 bytes)","Journal@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","28.12.2021 08:21:04","False","Journal","tnp-gruppe.de/TNP Benutzer","Journal (Service-Account)","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=9cc4b159ddd741bbb8ceca2870f96e95-Journal","Unlimited","Unlimited","True","Journal@tnp-gruppe.de","UserMailbox","UserMailbox","Journal@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Journal","True","0.20 (15.0.0.0)","CN=Journal,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","4ef34f53-8822-47e0-899b-9146fc182d00","tnp-gruppe.de/Configuration/Schema/Person","16.08.2023 13:43:06","28.12.2021 08:21:04","16.08.2023 11:43:06","28.12.2021 07:21:04","","tnp-gruppe.de/TNP Benutzer/Journal","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"8d8ebfc5-d28f-468d-8689-152b4ebd41f7","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"julia.weiske","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","julia.weiske@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:46","False","julia.weiske","tnp-gruppe.de/TNP Benutzer","Julia Weiske","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=0ada655ec9df4da3b648ce3521566784-Julia Weiske","Unlimited","Unlimited","True","julia.weiske@tnp-gruppe.de","UserMailbox","UserMailbox","julia.weiske@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Julia Weiske","True","0.20 (15.0.0.0)","CN=Julia Weiske,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","f4dc59c5-f55d-47ce-b24d-909a998af89b","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 09:54:59","01.09.2021 13:18:14","21.08.2023 07:54:59","01.09.2021 11:18:14","","tnp-gruppe.de/TNP Benutzer/Julia Weiske","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"0d7924ad-e8a9-460b-8ab3-b200ea0d7f0b","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"kati.guckel","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","kati.guckel@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:46","False","kati.guckel","tnp-gruppe.de/TNP Benutzer","Kati Guckel","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=f7d1ad6207ca41689bb1694583ab5eec-Kati Guckel","Unlimited","Unlimited","True","kati.guckel@tnp-gruppe.de","UserMailbox","UserMailbox","kati.guckel@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Kati Guckel","True","0.20 (15.0.0.0)","CN=Kati Guckel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","590757b8-d4e8-45ba-9094-a965a7be7008","tnp-gruppe.de/Configuration/Schema/Person","17.08.2023 06:27:45","01.09.2021 13:18:30","17.08.2023 04:27:45","01.09.2021 11:18:30","","tnp-gruppe.de/TNP Benutzer/Kati Guckel","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"5869fdd0-be28-4022-b7cd-29d273fc33c5","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","True","False","False","False","NT-AUTORITÄT\SELBST","False","Equipment",,"Laptop.Lenovo.weiß","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","Laptop.Lenovo.weiß@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","17.12.2021 08:52:23","True","Laptop.Lenovo.weiß","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Laptop Lenovo weiß","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=user0d1c0d0f","Unlimited","Unlimited","True","Laptop.Lenovo.weiss@tnp-gruppe.de","UserMailbox","EquipmentMailbox","Laptop.Lenovo.weiss@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Laptop Lenovo weiß","True","0.20 (15.0.0.0)","CN=Laptop Lenovo weiß,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","801cee3c-7b25-4c04-9176-157ac8c2bac3","tnp-gruppe.de/Configuration/Schema/Person","27.01.2023 07:08:12","17.12.2021 08:52:23","27.01.2023 06:08:12","17.12.2021 07:52:23","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Laptop Lenovo weiß","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"45b144f0-c0ea-4abf-9a22-3202c252cb1c","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"lizenzen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","lizenzen@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:51:32","False","lizenzen","tnp-gruppe.de/TNP Benutzer","Lizenzen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=786866eb912640cfa860b15f6c3ae267-Lizenzen","Unlimited","Unlimited","True","lizenzen@tnp-gruppe.de","UserMailbox","SharedMailbox","lizenzen@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Lizenzen","True","0.20 (15.0.0.0)","CN=Lizenzen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","5e3692fe-5629-49d9-9df0-fc38f81cf1c6","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:48","19.12.2021 18:51:32","18.07.2023 09:45:48","19.12.2021 17:51:32","","tnp-gruppe.de/TNP Benutzer/Lizenzen","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"61e67392-c36a-4528-afdd-9d542f8b0689","Version 15.2 (Build 1118.7)","None","True","5 GB (5,368,709,120 bytes)","5 GB (5,368,709,120 bytes)","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"maike.hinrichs","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","False","4 GB (4,294,967,296 bytes)","256 KB (262,144 bytes)","maike.hinrichs@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","16.12.2021 13:46:41","False","maike.hinrichs","tnp-gruppe.de/TNP Benutzer","Maike Hinrichs","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5d13043c3ae041abb9050a0e66f3d860-Maike Hinrich","Unlimited","Unlimited","True","Maike.Hinrichs@tnp-gruppe.de","UserMailbox","UserMailbox","Maike.Hinrichs@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Maike Hinrichs","True","0.20 (15.0.0.0)","CN=Maike Hinrichs,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","cfe67a05-06d0-443b-8bbd-73d0d81aadf5","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 06:55:16","16.12.2021 10:33:26","21.08.2023 04:55:16","16.12.2021 09:33:26","","tnp-gruppe.de/TNP Benutzer/Maike Hinrichs","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"a5b6be53-aca1-4ed7-b9b2-9f46ee3f53e1","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"manuela.blecha","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","manuela.blecha@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","17.10.2022 10:39:41","False","manuela.blecha","tnp-gruppe.de/TNP Benutzer","Manuela Blecha","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=14f6d13688ee4836b19be8ec52574c8a-Manuela Blech","Unlimited","Unlimited","True","manuela.blecha@tnp-gruppe.de","UserMailbox","UserMailbox","manuela.blecha@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Manuela Blecha","True","0.20 (15.0.0.0)","CN=Manuela Blecha,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","2ddbc19a-42b7-48ed-bb9d-5a7eb503cfe6","tnp-gruppe.de/Configuration/Schema/Person","14.08.2023 08:19:50","17.10.2022 10:30:04","14.08.2023 06:19:50","17.10.2022 08:30:04","","tnp-gruppe.de/TNP Benutzer/Manuela Blecha","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"2f40b591-d88c-4911-b53a-0d8a64dfacd4","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"batura","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","nathalie.batura-senebier@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:47","False","nathalie.batura-senebier","tnp-gruppe.de/TNP Benutzer","Nathalie Batura-Senebier","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=ffe0a972e28d4ee390fdf0eb7e0d2ce1-Nathalie Batu","Unlimited","Unlimited","True","nathalie.batura-senebier@tnp-gruppe.de","UserMailbox","UserMailbox","nathalie.batura-senebier@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Nathalie Batura-Senebier","True","0.20 (15.0.0.0)","CN=Nathalie Batura-Senebier,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","e021d98f-aa51-4b3f-8db4-c5b790ca2b8c","tnp-gruppe.de/Configuration/Schema/Person","18.08.2023 05:41:19","01.09.2021 13:18:49","18.08.2023 03:41:19","01.09.2021 11:18:49","","tnp-gruppe.de/TNP Benutzer/Nathalie Batura-Senebier","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Journal","True","False","True","True",,"465204b7-e369-43a6-a43b-ca7c234384fc","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"oliver.klöcker","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","oliver.klöcker@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","25.04.2023 12:35:30","False","oliver.klöcker","tnp-gruppe.de/TNP Benutzer","Oliver Klöcker","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=userecf48e41","Unlimited","Unlimited","False","verwaltung@cura-saale.de","UserMailbox","UserMailbox","verwaltung@cura-saale.de","tnp-gruppe.de/TNP Benutzer/Oliver Klöcker","True","0.20 (15.0.0.0)","CN=Oliver Klöcker,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","232094a2-831a-4ad2-8836-e59a8546fb82","tnp-gruppe.de/Configuration/Schema/Person","17.08.2023 03:11:11","25.04.2023 12:35:05","17.08.2023 01:11:11","25.04.2023 10:35:05","","tnp-gruppe.de/TNP Benutzer/Oliver Klöcker","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB03","True","False","True","True",,"9439fc82-18fc-4277-be94-e0356d1263b2","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"paula.wagner","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","paula.wagner@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","30.03.2023 12:37:40","False","paula.wagner","tnp-gruppe.de/TNP Benutzer","Paula Wagner","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=8a8c5675a7c44a21a36236647161153a-Paula Wagner","Unlimited","Unlimited","True","paula.wagner@tnp-gruppe.de","UserMailbox","UserMailbox","paula.wagner@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Paula Wagner","True","0.20 (15.0.0.0)","CN=Paula Wagner,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","2a75206d-facc-48d4-9f96-62a767afdf40","tnp-gruppe.de/Configuration/Schema/Person","17.08.2023 13:48:06","30.03.2023 12:16:56","17.08.2023 11:48:06","30.03.2023 10:16:56","","tnp-gruppe.de/TNP Benutzer/Paula Wagner","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB03","True","False","True","True",,"5944045f-4d5b-484e-82af-f8f0f14118a7","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"pdl","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","pdl@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","27.06.2023 22:46:54","False","pdl","tnp-gruppe.de/TNP Benutzer","PDL Cura-Saale","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=2f593dac669442079d730962e91f867d-PDL Cura-Saal","Unlimited","Unlimited","False","pdl@cura-saale.de","UserMailbox","UserMailbox","pdl@cura-saale.de","tnp-gruppe.de/TNP Benutzer/PDL Cura-Saale","True","0.20 (15.0.0.0)","CN=PDL Cura-Saale,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","ced1504e-99c8-4b30-bc5b-994cd702659e","tnp-gruppe.de/Configuration/Schema/Person","23.08.2023 09:52:55","27.06.2023 22:46:54","23.08.2023 07:52:55","27.06.2023 20:46:54","","tnp-gruppe.de/TNP Benutzer/PDL Cura-Saale","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Eisel-Schubert","True","False","True","True",,"78e16c1e-fd8b-4cb9-9cc9-9ba7a769cb76","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"petra.schubert","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","petra.schubert@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:47","False","petra.schubert","tnp-gruppe.de/TNP Benutzer","Petra Schubert","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5d541de98b504e0181b0e3a1a9f0df1f-Petra Schuber","Unlimited","Unlimited","True","petra.schubert@tnp-gruppe.de","UserMailbox","UserMailbox","petra.schubert@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Petra Schubert","True","0.20 (15.0.0.0)","CN=Petra Schubert,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","c037b750-44d5-4137-a2f1-3a5fd3e29308","tnp-gruppe.de/Configuration/Schema/Person","17.08.2023 09:06:50","01.09.2021 13:19:05","17.08.2023 07:06:50","01.09.2021 11:19:05","","tnp-gruppe.de/TNP Benutzer/Petra Schubert","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"01f8c4c2-3532-4463-ada3-c2da85f2f896","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"rechnungen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","rechnungen@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:52:11","False","rechnungen","tnp-gruppe.de/TNP Benutzer","Rechnungen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=2248503457c142708328479dbd203ef1-Rechnungen","Unlimited","Unlimited","True","rechnungen@tnp-gruppe.de","UserMailbox","SharedMailbox","rechnungen@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Rechnungen","True","0.20 (15.0.0.0)","CN=Rechnungen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","839ef884-61b4-4281-9804-f487d13308aa","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:48","19.12.2021 18:52:11","18.07.2023 09:45:48","19.12.2021 17:52:11","","tnp-gruppe.de/TNP Benutzer/Rechnungen","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"2d3713d6-36c2-4a73-8712-e0c0380ea72e","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"sekretariat","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","sekretariat@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:52:51","True","sekretariat","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Sekretariat TNP AG","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=a2ac4698674142d7afcd0b12046ca7b7-Sekretariat T","Unlimited","Unlimited","True","sekretariat@tnp-gruppe.de","UserMailbox","SharedMailbox","sekretariat@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Sekretariat TNP AG","True","0.20 (15.0.0.0)","CN=Sekretariat TNP AG,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","d6f84d3f-119e-4ea7-8163-6989a66b63ad","tnp-gruppe.de/Configuration/Schema/Person","01.02.2023 15:43:32","19.12.2021 18:52:51","01.02.2023 14:43:32","19.12.2021 17:52:51","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Sekretariat TNP AG","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"abc7d4e3-7988-4e20-a7f5-1b89e31c3390","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","True","False","False","False","NT-AUTORITÄT\SELBST","False","Equipment",,"Surface.Book.3","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","Surface.Book.3@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","17.12.2021 08:53:01","True","Surface.Book.3","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Surface Book 3","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=507de11682d947a2a301c79069bf6a57-Surface Book","Unlimited","Unlimited","True","Surface.Book.3@tnp-gruppe.de","UserMailbox","EquipmentMailbox","Surface.Book.3@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Surface Book 3","True","0.20 (15.0.0.0)","CN=Surface Book 3,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","f54e484c-177d-49bc-9594-5e6c3dd05c86","tnp-gruppe.de/Configuration/Schema/Person","01.02.2023 11:45:48","17.12.2021 08:53:01","01.02.2023 10:45:48","17.12.2021 07:53:01","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Surface Book 3","TNPAD01.tnp-gruppe.de"
|
||||
,,,"Eisel-Schubert","True","False","True","True",,"6539d723-2471-4118-8097-1d056348e0ba","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"susanne.eisel","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","susanne.eisel@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:47","False","susanne.eisel","tnp-gruppe.de/TNP Benutzer","Susanne Eisel","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=407d2bab0a89436f90d8437d8236e171-Susanne Eisel","Unlimited","Unlimited","True","susanne.eisel@tnp-gruppe.de","UserMailbox","UserMailbox","susanne.eisel@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Susanne Eisel","True","0.20 (15.0.0.0)","CN=Susanne Eisel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","2e7c23fa-da52-463d-8bf2-914b95abeabf","tnp-gruppe.de/Configuration/Schema/Person","21.08.2023 07:36:33","01.09.2021 13:19:38","21.08.2023 05:36:33","01.09.2021 11:19:38","","tnp-gruppe.de/TNP Benutzer/Susanne Eisel","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"1a2db4c4-6ed2-4ef8-9669-bff4b6b54b49","Version 15.2 (Build 1118.7)","AccountDisabled","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"TermineundFristen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","TermineundFristen@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:53:38","True","TermineundFristen","tnp-gruppe.de/Exchange-Öffentliche-Postfächer","Termine & Fristen","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=f81257f838d745e1afbb6b2190385279-Termine & Fri","Unlimited","Unlimited","True","TermineundFristen@tnp-gruppe.de","UserMailbox","SharedMailbox","TermineundFristen@tnp-gruppe.de","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Termine & Fristen","True","0.20 (15.0.0.0)","CN=Termine & Fristen,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de","fc13d333-2adb-43a1-b7c1-b18a8d27984f","tnp-gruppe.de/Configuration/Schema/Person","01.02.2023 11:45:48","19.12.2021 18:53:38","01.02.2023 10:45:48","19.12.2021 17:53:38","","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Termine & Fristen","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"8b671d00-4bdf-43fc-859a-ffc7c2fe4b35","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"rdpadmin","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","rdpadmin@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:42:06","False","test","tnp-gruppe.de/TNP Admins","RDP Admin (Service-Account)","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=183210daf0c94cf6a8390fe12b73a9b6-RDP Admin","Unlimited","Unlimited","True","test@tnp-gruppe.de","UserMailbox","UserMailbox","test@tnp-gruppe.de","tnp-gruppe.de/TNP Admins/RDP Admin","True","0.20 (15.0.0.0)","CN=RDP Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de","c0eec35e-923d-4d2c-b7e6-8d56720355bc","tnp-gruppe.de/Configuration/Schema/Person","23.08.2023 14:00:03","03.09.2021 11:35:43","23.08.2023 12:00:03","03.09.2021 09:35:43","","tnp-gruppe.de/TNP Admins/RDP Admin","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"7f451b10-e19c-4598-b5f9-ad3c3bdcfc31","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"tobias.zander","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","tobias.zander@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:40:48","False","tobias.zander","tnp-gruppe.de/TNP Benutzer","Tobias Zander","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=48eeb3c7f6e34ef49137e251a2ca33f8-Tobias Zander","Unlimited","Unlimited","True","tobias.zander@tnp-gruppe.de","UserMailbox","UserMailbox","tobias.zander@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Tobias Zander","True","0.20 (15.0.0.0)","CN=Tobias Zander,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","2e05a40a-6fb7-44be-9516-b5c151c415ee","tnp-gruppe.de/Configuration/Schema/Person","22.08.2023 18:55:19","01.09.2021 13:19:56","22.08.2023 16:55:19","01.09.2021 11:19:56","","tnp-gruppe.de/TNP Benutzer/Tobias Zander","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"f69b6cf2-03bd-42f9-a49d-0845d18f6fc7","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","False","False","","False",,,"volker.neumann","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","volker.neumann@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","29.11.2021 10:38:33","False","volker.neumann","tnp-gruppe.de/TNP Benutzer","Volker Neumann","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=295efc762fad43729e4347355c4f6b14-Volker Neuman","Unlimited","Unlimited","True","volker.neumann@tnp-gruppe.de","UserMailbox","UserMailbox","volker.neumann@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Volker Neumann","True","0.20 (15.0.0.0)","CN=Volker Neumann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","891e1491-0eac-4006-9fd8-960dec8d5266","tnp-gruppe.de/Configuration/Schema/Person","14.08.2023 14:09:26","01.09.2021 13:08:32","14.08.2023 12:09:26","01.09.2021 11:08:32","","tnp-gruppe.de/TNP Benutzer/Volker Neumann","TNPAD01.tnp-gruppe.de"
|
||||
,,,"EXDB02","False","True","True","True",,"4710ff94-5864-4bb6-9248-be788734a17f","Version 15.2 (Build 1118.7)","None","True","Unlimited","Unlimited","30 GB (32,212,254,720 bytes)","20 GB (21,474,836,480 bytes)","6 GB (6,442,450,944 bytes)","False","False","True","False","NT-AUTORITÄT\SELBST","False",,,"zahlungsverkehr","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=TNPEX01","True","Unlimited","256 KB (262,144 bytes)","zahlungsverkehr@tnp-gruppe.de","Default Role Assignment Policy","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Standardfreigaberichtlinie","100 GB (107,374,182,400 bytes)","90 GB (96,636,764,160 bytes)","False","False","False","90.00:00:00","19.12.2021 18:54:08","False","zahlungsverkehr","tnp-gruppe.de/TNP Benutzer","Zahlungsverkehr","/o=TNP Gruppe/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=e131de09b6014968b153e21c8d2c498e-Zahlungsverke","Unlimited","Unlimited","True","zahlungsverkehr@tnp-gruppe.de","UserMailbox","SharedMailbox","zahlungsverkehr@tnp-gruppe.de","tnp-gruppe.de/TNP Benutzer/Zahlungsverkehr","True","0.20 (15.0.0.0)","CN=Zahlungsverkehr,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","9c85b960-24cb-41e4-bf34-595762ffd60d","tnp-gruppe.de/Configuration/Schema/Person","18.07.2023 11:45:48","19.12.2021 18:54:08","18.07.2023 09:45:48","19.12.2021 17:54:08","","tnp-gruppe.de/TNP Benutzer/Zahlungsverkehr","TNPAD01.tnp-gruppe.de"
|
||||
|
@@ -1,24 +0,0 @@
|
||||
"distinguishedName","name","objectClass","objectGUID","SamAccountName","SID"
|
||||
"CN=Nathalie Batura-Senebier,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Nathalie Batura-Senebier","user","e021d98f-aa51-4b3f-8db4-c5b790ca2b8c","batura","S-1-5-21-4196924754-1305228144-1931124329-1111"
|
||||
"CN=RDP Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de","RDP Admin","user","c0eec35e-923d-4d2c-b7e6-8d56720355bc","rdpadmin","S-1-5-21-4196924754-1305228144-1931124329-1164"
|
||||
"CN=Johannes Wimmer,OU=Deaktivierte User,DC=tnp-gruppe,DC=de","Johannes Wimmer","user","2b107489-dbab-4dfb-a9ac-4e81d78c1850","johannnes.wimmer","S-1-5-21-4196924754-1305228144-1931124329-2620"
|
||||
"CN=Alex Bondarenko,OU=Deaktivierte User,DC=tnp-gruppe,DC=de","Alex Bondarenko","user","b89bd5b7-223d-41b4-ae1f-b8457e1d3d20","alex.bondarenko","S-1-5-21-4196924754-1305228144-1931124329-2670"
|
||||
"CN=Rita Hofmann,OU=Deaktivierte User,DC=tnp-gruppe,DC=de","Rita Hofmann","user","7de5af49-3e36-44ab-a345-1012cdef0b0a","rita.hofmann","S-1-5-21-4196924754-1305228144-1931124329-3108"
|
||||
"CN=Diana Eichelberger,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Diana Eichelberger","user","d2e1db66-7f66-4660-bbf1-4831cf743d93","diana.eichelberger","S-1-5-21-4196924754-1305228144-1931124329-4138"
|
||||
"CN=Milena Jovanovic,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Milena Jovanovic","user","3acacb97-c208-4446-a9f5-33787c7d4b70","milena.jovanovic","S-1-5-21-4196924754-1305228144-1931124329-4141"
|
||||
"CN=Maximilian Wirth,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Maximilian Wirth","user","53311b2b-0c03-470a-98b9-054064a99584","maximilian.wirth","S-1-5-21-4196924754-1305228144-1931124329-4144"
|
||||
"CN=Volker Neumann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Volker Neumann","user","891e1491-0eac-4006-9fd8-960dec8d5266","volker.neumann","S-1-5-21-4196924754-1305228144-1931124329-1106"
|
||||
"CN=Jan Treu,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Jan Treu","user","079ec7f2-a3b1-4182-a862-953bcd3c0c0a","jan.treu","S-1-5-21-4196924754-1305228144-1931124329-1107"
|
||||
"CN=Julia Weiske,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Julia Weiske","user","f4dc59c5-f55d-47ce-b24d-909a998af89b","julia.weiske","S-1-5-21-4196924754-1305228144-1931124329-1109"
|
||||
"CN=Kati Guckel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Kati Guckel","user","590757b8-d4e8-45ba-9094-a965a7be7008","kati.guckel","S-1-5-21-4196924754-1305228144-1931124329-1110"
|
||||
"CN=Petra Schubert,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Petra Schubert","user","c037b750-44d5-4137-a2f1-3a5fd3e29308","petra.schubert","S-1-5-21-4196924754-1305228144-1931124329-1112"
|
||||
"CN=Susanne Eisel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Susanne Eisel","user","2e7c23fa-da52-463d-8bf2-914b95abeabf","susanne.eisel","S-1-5-21-4196924754-1305228144-1931124329-1114"
|
||||
"CN=Tobias Zander,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Tobias Zander","user","2e05a40a-6fb7-44be-9516-b5c151c415ee","tobias.zander","S-1-5-21-4196924754-1305228144-1931124329-1115"
|
||||
"CN=Eva-Maria Lehmann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Eva-Maria Lehmann","user","bf7c0205-b0c9-48e5-97f6-bbc009758560","eva-maria.lehmann","S-1-5-21-4196924754-1305228144-1931124329-2611"
|
||||
"CN=Abdalrahman Islambouli,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Abdalrahman Islambouli","user","c3e294c2-ae05-43ee-9bd0-9b9a227fe65c","Islambouli","S-1-5-21-4196924754-1305228144-1931124329-2619"
|
||||
"CN=Maike Hinrichs,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Maike Hinrichs","user","cfe67a05-06d0-443b-8bbd-73d0d81aadf5","maike.hinrichs","S-1-5-21-4196924754-1305228144-1931124329-2622"
|
||||
"CN=Admin-Test-User,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Admin-Test-User","user","f48f294d-f644-46e1-b701-f843985e0251","ad-test-user","S-1-5-21-4196924754-1305228144-1931124329-2668"
|
||||
"CN=Manuela Blecha,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Manuela Blecha","user","2ddbc19a-42b7-48ed-bb9d-5a7eb503cfe6","manuela.blecha","S-1-5-21-4196924754-1305228144-1931124329-4103"
|
||||
"CN=Paula Wagner,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Paula Wagner","user","2a75206d-facc-48d4-9f96-62a767afdf40","paula.wagner","S-1-5-21-4196924754-1305228144-1931124329-4125"
|
||||
"CN=Oliver Klöcker,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Oliver Klöcker","user","232094a2-831a-4ad2-8836-e59a8546fb82","oliver.klöcker","S-1-5-21-4196924754-1305228144-1931124329-4128"
|
||||
"CN=Winz Sabine,OU=TNP Benutzer,DC=tnp-gruppe,DC=de","Winz Sabine","user","3efc64e9-3f06-4722-ad47-6596feb9ffc0","winz.sabine","S-1-5-21-4196924754-1305228144-1931124329-4145"
|
||||
|
@@ -0,0 +1,2 @@
|
||||
"Current Time from API-Server http://api.stines.de is 2023-08-24 09:16:51.100681"
|
||||
"Current Time from API-Server http://api.stines.de is 2023-08-24 09:17:22.116785"
|
||||
+140
-3
@@ -1,4 +1,141 @@
|
||||
import datetime
|
||||
import subprocess
|
||||
import socket
|
||||
import os
|
||||
import psutil
|
||||
import math
|
||||
import cpuinfo
|
||||
from multiprocessing import freeze_support
|
||||
import requests
|
||||
import platform
|
||||
import wmi
|
||||
import win32serviceutil
|
||||
|
||||
# ssh_tunnel.server_start()
|
||||
# set_system_info("172.19.1.5")
|
||||
# ssh_tunnel.server_stop()
|
||||
def request(function,variable):
|
||||
url = (f"http://api.stines.de:8001/{function}")
|
||||
response = requests.post(url,json = variable,headers={'access_token':'^YWUbG7yX*V!tV^KBSd*2c&vdN3wV9a2i7f3hfGFMBYFxi6#mMiJGiaA5KEHE%B*miK%qb7rQ67gmcYP@gqmux8'})
|
||||
return response
|
||||
|
||||
def getdabase():
|
||||
return request("getdatabase",{'ipadress':get_local_ip()})
|
||||
|
||||
def server_exist(hostname):
|
||||
return request("info/getserver",{'name': hostname, 'dbase': getdabase()})
|
||||
|
||||
def get_cpu_brand():
|
||||
freeze_support()
|
||||
return cpuinfo.get_cpu_info()['brand_raw']
|
||||
|
||||
def splacores(cpu):
|
||||
freeze_support()
|
||||
requests = request("cpu_info",{'name':cpu})
|
||||
return requests.json()[0][0]
|
||||
|
||||
def get_cpu_core():
|
||||
freeze_support()
|
||||
return os.cpu_count()
|
||||
|
||||
def get_ram_info():
|
||||
freeze_support()
|
||||
ram_info = psutil.virtual_memory()
|
||||
total_ram = ram_info.total / (1024 ** 3) # In Gigabytes
|
||||
return math.ceil(total_ram)
|
||||
|
||||
def get_total_hdd(function):
|
||||
freeze_support()
|
||||
space = 0
|
||||
disk_partitions = psutil.disk_partitions()
|
||||
for partition in disk_partitions:
|
||||
partition_info = psutil.disk_usage(partition.mountpoint)
|
||||
if function == "free":
|
||||
space += round(partition_info.free / (1024 ** 3), 2)
|
||||
elif function == "used":
|
||||
space += round(partition_info.used / (1024 ** 3), 2)
|
||||
elif function == "total":
|
||||
space += round(partition_info.total / (1024 ** 3), 2)
|
||||
return math.ceil(space)
|
||||
|
||||
def get_winver():
|
||||
freeze_support()
|
||||
return platform.platform()
|
||||
|
||||
|
||||
def get_total_hdd(function):
|
||||
freeze_support()
|
||||
space = 0
|
||||
disk_partitions = psutil.disk_partitions()
|
||||
for partition in disk_partitions:
|
||||
partition_info = psutil.disk_usage(partition.mountpoint)
|
||||
if function == "free":
|
||||
space += round(partition_info.free / (1024 ** 3), 2)
|
||||
elif function == "used":
|
||||
space += round(partition_info.used / (1024 ** 3), 2)
|
||||
elif function == "total":
|
||||
space += round(partition_info.total / (1024 ** 3), 2)
|
||||
return math.ceil(space)
|
||||
|
||||
|
||||
def get_local_ip():
|
||||
try:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.connect(("8.8.8.8", 80))
|
||||
local_ip = s.getsockname()[0]
|
||||
s.close()
|
||||
return local_ip
|
||||
except Exception as e:
|
||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||
return None
|
||||
|
||||
def get_mainboard_info():
|
||||
c = wmi.WMI()
|
||||
for board in c.Win32_BaseBoard():
|
||||
return board.Product
|
||||
|
||||
def lastboot():
|
||||
lastboot = psutil.boot_time()
|
||||
lastboot = datetime.datetime.fromtimestamp(lastboot).strftime("%d.%m.%Y %H:%M ")
|
||||
return lastboot
|
||||
|
||||
|
||||
def find_service():
|
||||
services = ["MSExchangeTransport","NTDS","RDMS"]
|
||||
service_len = len(services)
|
||||
for index, i in enumerate(services):
|
||||
try:
|
||||
services = win32serviceutil.QueryServiceStatus(i)
|
||||
return True
|
||||
except:
|
||||
if index == service_len - 1:
|
||||
return "Software"
|
||||
else:
|
||||
continue
|
||||
|
||||
def get_windows_updates():
|
||||
c = wmi.WMI()
|
||||
updates = c.Win32_QuickFixEngineering()
|
||||
update_string = []
|
||||
for update in updates:
|
||||
update_string.append(f"KB-Artikel: {update.HotFixID} - Beschreibung: {update.Description}")
|
||||
return update_string
|
||||
|
||||
## GET HOSTNAME
|
||||
hostname = socket.gethostname()
|
||||
|
||||
## GET CURRENT DATE
|
||||
date = datetime.datetime.now()
|
||||
|
||||
## GET CPU BRAND (only 1 run)
|
||||
cpu = get_cpu_brand()
|
||||
|
||||
## GET VOLUME SPACE
|
||||
spacefree = str(get_total_hdd("free")).replace("['","").replace("]","").replace("'","")
|
||||
spaceused = str(get_total_hdd("used")).replace("['","").replace("]","").replace("'","")
|
||||
spacetotal = str(get_total_hdd("total")).replace("['","").replace("]","").replace("'","")
|
||||
|
||||
|
||||
request('systeminfo_add', {'createdate':date,'updatedate': date, 'lastboot': lastboot(), 'hostname': hostname,
|
||||
'ipaddress': get_local_ip(), 'winver': get_winver(), 'services': find_service(),
|
||||
'mainboard': get_mainboard_info(), 'cpu': splacores(cpu), 'realcores': get_cpu_core(),
|
||||
'splacores': splacores(cpu), 'ram': str(get_ram_info())
|
||||
, 'spacetotal': spacetotal, 'spaceused': spaceused,
|
||||
'spacefree': spacefree, 'winupdate': get_windows_updates()})
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
import os
|
||||
from multiprocessing import freeze_support
|
||||
import cpuinfo
|
||||
import psutil
|
||||
import math
|
||||
import platform
|
||||
import socket
|
||||
|
||||
|
||||
def get_local_ip():
|
||||
try:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.connect(("8.8.8.8", 80))
|
||||
local_ip = s.getsockname()[0]
|
||||
s.close()
|
||||
return local_ip
|
||||
except Exception as e:
|
||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||
return None
|
||||
@@ -1,81 +0,0 @@
|
||||
"AccountExpirationDate","accountExpires","AccountLockoutTime","AccountNotDelegated","adminCount","AllowReversiblePasswordEncryption","AuthenticationPolicy","AuthenticationPolicySilo","BadLogonCount","badPasswordTime","badPwdCount","CannotChangePassword","CanonicalName","Certificates","City","CN","codePage","Company","CompoundIdentitySupported","Country","countryCode","Created","createTimeStamp","Deleted","Department","Description","DisplayName","DistinguishedName","Division","DoesNotRequirePreAuth","dSCorePropagationData","EmailAddress","EmployeeID","EmployeeNumber","Enabled","Fax","GivenName","HomeDirectory","HomedirRequired","HomeDrive","HomePage","HomePhone","Initials","instanceType","isCriticalSystemObject","isDeleted","KerberosEncryptionType","LastBadPasswordAttempt","LastKnownParent","lastLogoff","lastLogon","LastLogonDate","lastLogonTimestamp","LockedOut","logonCount","LogonWorkstations","Manager","MemberOf","MNSLogonAccount","MobilePhone","Modified","modifyTimeStamp","msDS-User-Account-Control-Computed","msTSExpireDate","msTSLicenseVersion","msTSLicenseVersion2","msTSLicenseVersion3","msTSManagingLS","Name","nTSecurityDescriptor","ObjectCategory","ObjectClass","ObjectGUID","objectSid","Office","OfficePhone","Organization","OtherName","PasswordExpired","PasswordLastSet","PasswordNeverExpires","PasswordNotRequired","POBox","PostalCode","PrimaryGroup","primaryGroupID","PrincipalsAllowedToDelegateToAccount","ProfilePath","ProtectedFromAccidentalDeletion","pwdLastSet","SamAccountName","sAMAccountType","ScriptPath","sDRightsEffective","ServicePrincipalNames","SID","SIDHistory","SmartcardLogonRequired","State","StreetAddress","Surname","Title","TrustedForDelegation","TrustedToAuthForDelegation","UseDESKeyOnly","userAccountControl","userCertificate","UserPrincipalName","uSNChanged","uSNCreated","whenChanged","whenCreated"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133326615010470756","0","False","tnp-gruppe.de/Users/Administrator","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Administrator","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 12:25:15","01.09.2021 12:25:15",,,"Vordefiniertes Konto für die Verwaltung des Computers bzw. der Domäne",,"CN=Administrator,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","01.07.2023 07:05:01",,"0","133365168002991137","04.08.2023 22:00:00","133356528007737003","False","642",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"04.08.2023 22:00:00","04.08.2023 22:00:00","0","27.08.2023 00:06:00","655361","7","C50-10.01-S","00429-00000-91895-AT310","Administrator","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","ea05f483-0943-4551-a98b-76ad82e26d72","S-1-5-21-4196924754-1305228144-1931124329-500",,,,,"False","24.08.2021 16:29:59","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132742889997236910","Administrator","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-500","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"4573431","8196","04.08.2023 22:00:00","01.09.2021 12:25:15"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","2","133212134993392811","2","False","tnp-gruppe.de/Users/Gast","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Gast","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 12:25:16","01.09.2021 12:25:16",,,"Vordefiniertes Konto für Gastzugriff auf den Computer bzw. die Domäne",,"CN=Gast,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"False",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","18.02.2023 18:04:59",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.09.2021 12:25:16","01.09.2021 12:25:16","0",,,,,,"Gast","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","204707ce-03a3-46a0-b024-5db57b6c19b4","S-1-5-21-4196924754-1305228144-1931124329-501",,,,,"False",,"True","True",,,"CN=Domänen-Gäste,CN=Users,DC=tnp-gruppe,DC=de","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","Gast","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-501","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66082","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"8197","8197","01.09.2021 12:25:16","01.09.2021 12:25:16"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/krbtgt","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"krbtgt","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 12:28:23","01.09.2021 12:28:23",,,"Dienstkonto des Schlüsselverteilungscenters",,"CN=krbtgt,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"False",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.05.2022 17:57:19","07.05.2022 17:57:19","8388608",,,,,,"krbtgt","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","863ef8fe-c219-4253-a79b-7966a3e1f21d","S-1-5-21-4196924754-1305228144-1931124329-502",,,,,"True","01.09.2021 12:28:23","False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132749657037396609","krbtgt","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-502","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"1578622","12324","07.05.2022 17:57:19","01.09.2021 12:28:23"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133354314353275502","0","False","tnp-gruppe.de/TNP Benutzer/Volker Neumann","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Volker Neumann","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:08:32","01.09.2021 13:08:32",,,"RDS-User, Mailbox","Volker Neumann","CN=Volker Neumann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","volker.neumann@tnp-gruppe.de",,,"True",,"Volker",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","02.08.2023 08:30:35",,"0","133365816763249264","14.08.2023 14:09:26","133364885665214574","False","2068",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"14.08.2023 14:09:26","14.08.2023 14:09:26","0",,,,,,"Volker Neumann","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","891e1491-0eac-4006-9fd8-960dec8d5266","S-1-5-21-4196924754-1305228144-1931124329-1106",,,,,"False","20.12.2021 12:43:44","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844742249004834","volker.neumann","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1106","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Neumann",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","volker.neumann@tnp-gruppe.de","4628240","12817","14.08.2023 14:09:26","01.09.2021 13:08:32"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133365791424732896","0","False","tnp-gruppe.de/TNP Benutzer/Jan Treu","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Jan Treu","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:15:06","01.09.2021 13:15:06",,,"RDS-User, Mailbox","Jan Treu","CN=Jan Treu,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","jan.treu@tnp-gruppe.de",,,"True",,"Jan",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.08.2023 15:19:02",,"0","133365801656341718","06.08.2023 04:45:40","133357635404949847","False","3607",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"06.08.2023 04:45:40","06.08.2023 04:45:40","0","05.02.2022 13:39:39","655361","7","C50-10.01-S","00433-00000-72615-AT292","Jan Treu","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","079ec7f2-a3b1-4182-a862-953bcd3c0c0a","S-1-5-21-4196924754-1305228144-1931124329-1107",,,,,"False","20.12.2021 13:31:02","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844770625193710","jan.treu","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1107","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Treu",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","jan.treu@tnp-gruppe.de","4580580","12834","06.08.2023 04:45:40","01.09.2021 13:15:06"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133285878925581097","0","False","tnp-gruppe.de/TNP Benutzer/Julia Weiske","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Julia Weiske","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:18:14","01.09.2021 13:18:14",,,"RDS-User, Mailbox","Julia Weiske","CN=Julia Weiske,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","julia.weiske@tnp-gruppe.de",,,"True",,"Julia",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.05.2023 03:31:32",,"0","133365732579111420","10.08.2023 12:50:25","133361382258937989","False","1158",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 12:50:25","10.08.2023 12:50:25","0",,,,,,"Julia Weiske","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f4dc59c5-f55d-47ce-b24d-909a998af89b","S-1-5-21-4196924754-1305228144-1931124329-1109",,,,,"False","24.01.2022 10:43:25","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132874910050048521","julia.weiske","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1109","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Weiske",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","julia.weiske@tnp-gruppe.de","4605392","12850","10.08.2023 12:50:25","01.09.2021 13:18:14"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133342326712270796","0","False","tnp-gruppe.de/TNP Benutzer/Kati Guckel","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Kati Guckel","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:18:30","01.09.2021 13:18:30",,,"RDS-User, Mailbox","Kati Guckel","CN=Kati Guckel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","kati.guckel@tnp-gruppe.de",,,"True",,"Kati",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","19.07.2023 11:31:11",,"0","133365477546511609","07.08.2023 06:27:44","133358560646619690","False","1168",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 06:27:44","07.08.2023 06:27:44","0",,,,,,"Kati Guckel","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","590757b8-d4e8-45ba-9094-a965a7be7008","S-1-5-21-4196924754-1305228144-1931124329-1110",,,,,"False","29.12.2021 07:46:38","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132852339988393931","kati.guckel","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1110","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Guckel",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","kati.guckel@tnp-gruppe.de","4586721","12858","07.08.2023 06:27:44","01.09.2021 13:18:30"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133317404203721120","0","False","tnp-gruppe.de/TNP Benutzer/Nathalie Batura-Senebier","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Nathalie Batura-Senebier","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:18:49","01.09.2021 13:18:49",,,"RDS-User, Mailbox","Nathalie Batura-Senebier","CN=Nathalie Batura-Senebier,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","nathalie.batura-senebier@tnp-gruppe.de",,,"True",,"Nathalie",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","20.06.2023 15:13:40",,"0","133365588090442811","07.08.2023 09:50:09","133358682096733953","False","3548",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 09:50:09","07.08.2023 09:50:09","0",,,,,,"Nathalie Batura-Senebier","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","e021d98f-aa51-4b3f-8db4-c5b790ca2b8c","S-1-5-21-4196924754-1305228144-1931124329-1111",,,,,"False","20.12.2021 10:02:37","True","False",,,"CN=Daten-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844645577195062","batura","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1111","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Batura-Senebier",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","nathalie.batura-senebier@tnp-gruppe.de","4587494","12866","07.08.2023 09:50:09","01.09.2021 13:18:49"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133362121156706502","0","False","tnp-gruppe.de/TNP Benutzer/Petra Schubert","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Petra Schubert","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:19:05","01.09.2021 13:19:05",,,"RDS-User, Mailbox","Petra Schubert","CN=Petra Schubert,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","petra.schubert@tnp-gruppe.de",,,"True",,"Petra",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","11.08.2023 09:21:55",,"0","133365566423974063","07.08.2023 09:03:07","133358653875499288","False","1451",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 09:03:07","07.08.2023 09:03:07","0",,,,,,"Petra Schubert","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","c037b750-44d5-4137-a2f1-3a5fd3e29308","S-1-5-21-4196924754-1305228144-1931124329-1112",,,,,"False","20.12.2021 09:07:31","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844612511101294","petra.schubert","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1112","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Schubert",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","petra.schubert@tnp-gruppe.de","4587317","12874","07.08.2023 09:03:07","01.09.2021 13:19:05"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","17","133365791654664364","17","False","tnp-gruppe.de/TNP Benutzer/Susanne Eisel","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Susanne Eisel","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:19:38","01.09.2021 13:19:38",,,"RDS-User, Mailbox","Susanne Eisel","CN=Susanne Eisel,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","susanne.eisel@tnp-gruppe.de",,,"True",,"Susanne",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.08.2023 15:19:25",,"0","133350115284934412","24.07.2023 07:28:48","133346501288254287","False","1981",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 07:28:48","24.07.2023 07:28:48","0",,,,,,"Susanne Eisel","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2e7c23fa-da52-463d-8bf2-914b95abeabf","S-1-5-21-4196924754-1305228144-1931124329-1114",,,,,"False","20.05.2022 10:19:25","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132975083655305526","susanne.eisel","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1114","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Eisel",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","susanne.eisel@tnp-gruppe.de","4506811","12890","24.07.2023 07:28:48","01.09.2021 13:19:38"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133303971995833949","0","False","tnp-gruppe.de/TNP Benutzer/Tobias Zander","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Tobias Zander","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.09.2021 13:19:56","01.09.2021 13:19:56",,,"RDS-User, Mailbox","Tobias Zander","CN=Tobias Zander,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","tobias.zander@tnp-gruppe.de",,,"True",,"Tobias",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","05.06.2023 02:06:39",,"0","133365768007009490","12.08.2023 18:46:32","133363323929114740","False","862",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"12.08.2023 18:46:32","12.08.2023 18:46:32","0",,,,,,"Tobias Zander","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2e05a40a-6fb7-44be-9516-b5c151c415ee","S-1-5-21-4196924754-1305228144-1931124329-1115",,,,,"False","04.01.2022 13:48:43","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132857741230316981","tobias.zander","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1115","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Zander",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","tobias.zander@tnp-gruppe.de","4618082","12898","12.08.2023 18:46:32","01.09.2021 13:19:56"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133193255339036518","0","False","tnp-gruppe.de/TNP Admins/Exchange Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Exchange Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 11:54:38","02.09.2021 11:54:38",,,,"Exchange Admin (Service-Account)","CN=Exchange Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","exadmin@tnp-gruppe.de",,,"True",,"Exchange",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","27.01.2023 21:38:53",,"0","133365854907916786","10.08.2023 11:09:18","133361321583856458","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 11:09:18","10.08.2023 11:09:18","0","14.01.2022 17:19:19","655361","7","C50-10.01-S","00433-00000-72615-AT292","Exchange Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","15664eee-b2b8-4477-b301-b7b02e254fcd","S-1-5-21-4196924754-1305228144-1931124329-1121",,,,,"False","31.05.2022 11:36:50","True","False",,,"CN=Domänen-Admins,CN=Users,DC=tnp-gruppe,DC=de","512","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132984634104268290","exadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1121","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","exadmin@tnp-gruppe.de","4604997","16627","10.08.2023 11:09:18","02.09.2021 11:54:38"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/Exchange Online-ApplicationAccount","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Exchange Online-ApplicationAccount","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:43:53","02.09.2021 12:43:53",,,,,"CN=Exchange Online-ApplicationAccount,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.12.2021 12:32:56","19.12.2021 12:32:56","8388608",,,,,,"Exchange Online-ApplicationAccount","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","42766b6f-852e-45f7-8799-bfe856e38214","S-1-5-21-4196924754-1305228144-1931124329-1141",,,,,"True",,"False","True",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","$L31000-T5SBGIFTRL0T","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1141","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","546","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Exchange_Online-ApplicationAccount@tnp-gruppe.de","121441","27324","19.12.2021 12:32:56","02.09.2021 12:43:53"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:00","02.09.2021 12:44:00",,,,"Microsoft Exchange-Genehmigungs-Assistent","CN=SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.04.2023 21:38:37","27.04.2023 21:38:37","8388608",,,,,,"SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","ec9ccd86-7818-4ead-875d-aa4fa713e1bc","S-1-5-21-4196924754-1305228144-1931124329-1142",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_e1cc9f02745b48f79","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1142","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"MSExchApproval 1f05a927-3be2-4fb9-aa03-b59fe3b56f4c",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{1f05a927-be13-4560-beb3-724c6f6253df}@tnp-gruppe.de","3999714","27418","27.04.2023 21:38:37","02.09.2021 12:44:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:00","02.09.2021 12:44:00",,,,"Microsoft Exchange","CN=SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:11","27.01.2023 07:08:11","8388608",,,,,,"SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","1448b157-dbf0-4bd2-8c3f-e2419b7105f9","S-1-5-21-4196924754-1305228144-1931124329-1143",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_4b07d33492b24bb3b","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1143","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"SystemMailbox bb558c35-97f1-4cb9-8ff7-d53741dc928c",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{bb558c35-97f1-4cb9-8ff7-d53741dc928c}@tnp-gruppe.de","3469210","27423","27.01.2023 07:08:11","02.09.2021 12:44:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:00","02.09.2021 12:44:00",,,,"Microsoft Exchange","CN=SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:12","27.01.2023 07:08:12","8388608",,,,,,"SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f4755612-71e6-412f-9710-42551150b645","S-1-5-21-4196924754-1305228144-1931124329-1144",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_1c28028cb896447ea","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1144","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"MsExchDiscovery e0dc1c29-89c3-4034-b678-e6c29d823ed9",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{e0dc1c29-89c3-4034-b678-e6c29d823ed9}@tnp-gruppe.de","3469228","27428","27.01.2023 07:08:12","02.09.2021 12:44:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:00","02.09.2021 12:44:00",,,,"Discoverysuchpostfach","CN=DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","DiscoverySearchMailbox{D919BA05-46A6-415f-80AD-7E09334BB852}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:12","27.01.2023 07:08:12","8388608",,,,,,"DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","db5cd41e-6ea5-4784-9a88-d5e17c02c7b8","S-1-5-21-4196924754-1305228144-1931124329-1145",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_c1c534425b4249cfb","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1145","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"MsExchDiscoveryMailbox D919BA05-46A6-415f-80AD-7E09334BB852",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","DiscoverySearchMailbox {D919BA05-46A6-415f-80AD-7E09334BB852}@tnp-gruppe.de","3469219","27433","27.01.2023 07:08:12","02.09.2021 12:44:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/Migration.8f3e7716-2011-43e4-96b1-aba62d229136","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Migration.8f3e7716-2011-43e4-96b1-aba62d229136","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:01","02.09.2021 12:44:01",,,,"Microsoft Exchange Migration","CN=Migration.8f3e7716-2011-43e4-96b1-aba62d229136,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Migration.8f3e7716-2011-43e4-96b1-aba62d229136@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.04.2023 21:38:38","27.04.2023 21:38:38","8388608",,,,,,"Migration.8f3e7716-2011-43e4-96b1-aba62d229136","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","bae66b63-9a2c-4c7f-9c5c-288afa8be643","S-1-5-21-4196924754-1305228144-1931124329-1146",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_aac5c6fbccbd4ab39","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1146","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Migration.8f3e7716-2011-43e4-96b1-aba62d229136",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Migration.8f3e7716-2011-43e4-96b1-aba62d229136@tnp-gruppe.de","3999718","27438","27.04.2023 21:38:38","02.09.2021 12:44:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:01","02.09.2021 12:44:01",,,,"Microsoft Exchange Federation Mailbox","CN=FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:12","27.01.2023 07:08:12","8388608",,,,,,"FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3f88ea23-100a-470e-abe2-cd1f53c2aaf4","S-1-5-21-4196924754-1305228144-1931124329-1147",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_308b6907612d4bfbb","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1147","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042@tnp-gruppe.de","3469213","27443","27.01.2023 07:08:12","02.09.2021 12:44:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:01","02.09.2021 12:44:01",,,,"E4E Encryption Store - Active","CN=SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:11","27.01.2023 07:08:11","8388608",,,,,,"SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","d16e9f03-1173-4b52-8c9f-e61472de922f","S-1-5-21-4196924754-1305228144-1931124329-1148",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_30f293a7be8b4fc9b","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1148","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{D0E409A0-AF9B-4720-92FE-AAC869B0D201}@tnp-gruppe.de","3469204","27448","27.01.2023 07:08:11","02.09.2021 12:44:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:01","02.09.2021 12:44:01",,,,"Microsoft Exchange","CN=SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:11","27.01.2023 07:08:11","8388608",,,,,,"SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3fcaa868-92cb-4b6f-8d93-587d39f5d288","S-1-5-21-4196924754-1305228144-1931124329-1149",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_1d2cbd3b4ac844f8a","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1149","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{2CE34405-31BE-455D-89D7-A7C7DA7A0DAA}@tnp-gruppe.de","3469207","27453","27.01.2023 07:08:11","02.09.2021 12:44:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.09.2021 12:44:02","02.09.2021 12:44:02",,,,"SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}","CN=SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9},CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.04.2023 21:38:37","27.04.2023 21:38:37","8388608",,,,,,"SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","cde594a1-e394-4e46-a7a2-5a181bfc2e1b","S-1-5-21-4196924754-1305228144-1931124329-1150",,,,,"True",,"False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","SM_770818779efa44b2b","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1150","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"SystemMailbox 8cc370d3-822a-4ab8-a926-bb94bd0641a9",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","SystemMailbox{8cc370d3-822a-4ab8-a926-bb94bd0641a9}@tnp-gruppe.de","3999716","27461","27.04.2023 21:38:37","02.09.2021 12:44:02"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133052048727330745","0","False","tnp-gruppe.de/TNP Admins/RDP Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"RDP Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","03.09.2021 11:35:43","03.09.2021 11:35:43",,,"Service-Account","RDP Admin (Service-Account)","CN=RDP Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","test@tnp-gruppe.de",,,"True",,"RDP",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","17.08.2022 12:14:32",,"0","133365852033794351","13.08.2023 14:00:03","133364016033477966","False","15921",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 11:56:39","15.08.2023 11:56:39","0","14.10.2023 12:56:39","655361","7","C50-10.01-S","00429-00000-91895-AT310","RDP Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","c0eec35e-923d-4d2c-b7e6-8d56720355bc","S-1-5-21-4196924754-1305228144-1931124329-1164",,,,,"False","21.12.2021 13:47:30","True","False",,,"CN=Daten-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132845644503158081","rdpadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1164","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rdpadmin@tnp-gruppe.de","4633424","29226","15.08.2023 11:56:39","03.09.2021 11:35:43"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","132941178526338216","1","True","tnp-gruppe.de/TNP Admins/Samba Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Samba Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","09.09.2021 08:31:19","09.09.2021 08:31:19",,,,"Samba Admin","CN=Samba Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Samba",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","11.04.2022 04:30:52",,"0","132817934076883127","18.11.2021 20:08:07","132817360877048678","False","12",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.12.2021 12:32:58","19.12.2021 12:32:58","0",,,,,,"Samba Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","c8e9c03a-1481-42fb-8bbf-599c08b93fa2","S-1-5-21-4196924754-1305228144-1931124329-1165",,,,,"False","18.11.2021 20:08:46","True","False",,,"CN=Daten-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132817361266579781","smbadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1165","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","smbadmin@tnp-gruppe.de","121444","30667","19.12.2021 12:32:58","09.09.2021 08:31:19"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/TNP Admins/SMTP Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"SMTP Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","09.09.2021 08:32:18","09.09.2021 08:32:18",,,,"SMTP Admin","CN=SMTP Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"SMTP",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.12.2021 12:32:57","19.12.2021 12:32:57","0",,,,,,"SMTP Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","cc9f8100-8b03-4380-831d-b7ded75274ce","S-1-5-21-4196924754-1305228144-1931124329-1166",,,,,"False","09.09.2021 08:32:18","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132756427383232009","smtpadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1166","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","smtpadmin@tnp-gruppe.de","121442","30675","19.12.2021 12:32:57","09.09.2021 08:32:18"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/TNP Admins/AD-Controller","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"AD-Controller","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.11.2021 20:31:59","02.11.2021 20:31:59",,,,"AD-Controller","CN=AD-Controller,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"AD-Controller",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365851394752715","13.08.2023 20:48:13","133364260935344045","False","932",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"13.08.2023 20:48:13","13.08.2023 20:48:13","0","13.01.2022 17:01:55","655361","7","C50-10.01-S","00433-00000-72615-AT292","AD-Controller","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","1bab18a6-6074-44df-a4fb-83068cbf4ac8","S-1-5-21-4196924754-1305228144-1931124329-1601",,,,,"False","03.01.2022 08:24:05","True","False",,,"CN=Domänen-Admins,CN=Users,DC=tnp-gruppe,DC=de","512","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132856682459848196","ad.admin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1601","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ad.admin@tnp-gruppe.de","4624185","53333","13.08.2023 20:48:13","02.11.2021 20:31:59"
|
||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133029079435167434","0","False","tnp-gruppe.de/TNP Admins/APP Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"APP Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.11.2021 20:32:27","02.11.2021 20:32:27",,,,"APP Admin","CN=APP Admin,OU=TNP Admins,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sebastianserfling@stines.de",,,"True",,"APP",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","21.07.2022 22:12:23",,"0","133362435907959782","04.08.2023 13:20:42","133356216424974422","False","637",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"04.08.2023 13:20:42","04.08.2023 13:20:42","0",,,,,,"APP Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3f3acad2-b360-462e-ad7c-7e6fa76ec705","S-1-5-21-4196924754-1305228144-1931124329-1602",,,,,"False","02.11.2021 20:32:27","True","False",,,"CN=Domänen-Admins,CN=Users,DC=tnp-gruppe,DC=de","512","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132803551477659198","app.admin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-1602","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","app.admin@tnp-gruppe.de","4571413","53342","04.08.2023 13:20:42","02.11.2021 20:32:27"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","132827431095227549","0","True","tnp-gruppe.de/TNP Benutzer/LDAP-Search","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"LDAP-Search","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.11.2021 11:45:48","30.11.2021 11:45:48",,,"Service-Account","LDAP-Search","CN=LDAP-Search,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"LDAP-Search",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.11.2021 11:51:49",,"0","132827431600540029","10.04.2023 05:21:34","133255704942984349","False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.06.2023 16:53:33","19.06.2023 16:53:33","0",,,,,,"LDAP-Search","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","0c008f6d-dd6e-4329-beb2-035048b655f5","S-1-5-21-4196924754-1305228144-1931124329-2105",,,,,"False","20.12.2021 07:32:43","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844555633662053","ldapsearch","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2105","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ldapsearch@tnp-gruppe.de","4300356","90431","19.06.2023 16:53:33","30.11.2021 11:45:48"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133353256255998213","0","False","tnp-gruppe.de/TNP Benutzer/Eva-Maria Lehmann","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Eva-Maria Lehmann","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","16.12.2021 10:21:40","16.12.2021 10:21:40",,,"RDS-User, Mailbox","Eva-Maria Lehmann","CN=Eva-Maria Lehmann,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","eva-maria.lehmann@tnp-gruppe.de",,,"True",,"Eva-Maria",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","01.08.2023 03:07:05",,"0","133365822607458677","10.08.2023 12:11:33","133361358937276519","False","16988",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 12:11:33","10.08.2023 12:11:33","0",,,,,,"Eva-Maria Lehmann","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","bf7c0205-b0c9-48e5-97f6-bbc009758560","S-1-5-21-4196924754-1305228144-1931124329-2611",,,,,"False","20.12.2021 13:25:27","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844767273318690","eva-maria.lehmann","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2611","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Lehmann",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","eva-maria.lehmann@tnp-gruppe.de","4605240","116053","10.08.2023 12:11:33","16.12.2021 10:21:40"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","43","133350081974749675","43","False","tnp-gruppe.de/TNP Benutzer/Abdalrahman Islambouli","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Abdalrahman Islambouli","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","16.12.2021 10:32:03","16.12.2021 10:32:03",,,"RDS-User, Mailbox","Abdalrahman Islambouli","CN=Abdalrahman Islambouli,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abdalrahman.Islambouli@tnp-gruppe.de",,,"True",,"Abdalrahman",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","28.07.2023 10:56:37",,"0","133349443434152264","27.07.2023 17:11:46","133349443062886382","False","621",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.07.2023 17:11:46","27.07.2023 17:11:46","0",,,,,,"Abdalrahman Islambouli","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","c3e294c2-ae05-43ee-9bd0-9b9a227fe65c","S-1-5-21-4196924754-1305228144-1931124329-2619",,,,,"False","23.12.2021 12:08:18","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132847312985117707","Islambouli","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2619","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Islambouli",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abdalrahman.Islambouli@tnp-gruppe.de","4526634","116176","27.07.2023 17:11:46","16.12.2021 10:32:03"
|
||||
"19.06.2022 00:00:00","133000632000000000",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Deaktivierte User/Johannes Wimmer","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Johannes Wimmer","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","16.12.2021 10:32:32","16.12.2021 10:32:32",,,"Disbaled 19.06.2022","Johannes Wimmer (disable)","CN=Johannes Wimmer,OU=Deaktivierte User,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","johannes.wimmer@tnp-gruppe.de",,,"False",,"Johannes",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","132843992988665441","19.12.2021 15:54:22","132843992621321720","False","1",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 15:17:30","18.07.2023 15:17:30","8388608",,,,,,"Johannes Wimmer","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2b107489-dbab-4dfb-a9ac-4e81d78c1850","S-1-5-21-4196924754-1305228144-1931124329-2620",,,,,"True","20.12.2021 07:32:43","False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844555630380804","johannnes.wimmer","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2620","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Wimmer",,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","johannnes.wimmer@tnp-gruppe.de","4474500","116184","18.07.2023 15:17:30","16.12.2021 10:32:32"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133342503610443896","0","False","tnp-gruppe.de/TNP Benutzer/Maike Hinrichs","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Maike Hinrichs","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","16.12.2021 10:33:26","16.12.2021 10:33:26",,,"RDS-User, Mailbox","Maike Hinrichs","CN=Maike Hinrichs,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Maike.Hinrichs@tnp-gruppe.de",,,"True",,"Maike",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","19.07.2023 16:26:01",,"0","133365710267805573","10.08.2023 09:02:44","133361245642314984","False","3481",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 09:02:44","10.08.2023 09:02:44","0",,,,,,"Maike Hinrichs","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","cfe67a05-06d0-443b-8bbd-73d0d81aadf5","S-1-5-21-4196924754-1305228144-1931124329-2622",,,,,"False","20.12.2021 07:32:43","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844555635224594","maike.hinrichs","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2622","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Hinrichs",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","maike.hinrichs@tnp-gruppe.de","4604474","116201","10.08.2023 09:02:44","16.12.2021 10:33:26"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","2","133353180142278980","2","True","tnp-gruppe.de/TNP Benutzer/Scanner","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Scanner","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","16.12.2021 20:49:00","16.12.2021 20:49:00",,,"Service-Account","Scanner (Drucker User)","CN=Scanner,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Scanner",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","01.08.2023 01:00:14",,"0","133316465906603131","03.08.2023 15:37:21","133355434419454272","False","68",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"03.08.2023 15:37:21","03.08.2023 15:37:21","0",,,,,,"Scanner","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","82ac0682-f3e7-47dc-a8e7-f9fe2d7da041","S-1-5-21-4196924754-1305228144-1931124329-2640",,,,,"False","06.03.2022 08:25:36","True","False",,,"CN=Daten-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132910251363278583","scanner","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2640","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","scanner@tnp-gruppe.de","4566317","117079","03.08.2023 15:37:21","16.12.2021 20:49:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Klein","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Besprechungsraum Klein","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.12.2021 08:50:12","17.12.2021 08:50:12",,,,"Besprechungsraum Klein","CN=Besprechungsraum Klein,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Besprechungsraum.Klein@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:11","27.01.2023 07:08:11","0",,,,,,"Besprechungsraum Klein","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","56bb0fc8-13ea-4697-b72d-d45c22c7126a","S-1-5-21-4196924754-1305228144-1931124329-2643",,,,,"False","17.12.2021 08:50:14","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132842010145605756","Besprechungsraum.Kle","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2643","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Besprechungsraum.Klein@tnp-gruppe.de","3469201","118037","27.01.2023 07:08:11","17.12.2021 08:50:12"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Besprechungsraum Gross","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Besprechungsraum Gross","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.12.2021 08:51:16","17.12.2021 08:51:16",,,,"Besprechungsraum Gross","CN=Besprechungsraum Gross,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Besprechungsraum.Gross@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:11","27.01.2023 07:08:11","0",,,,,,"Besprechungsraum Gross","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","aee56efa-c39d-4a6d-9b7b-55e8642569f8","S-1-5-21-4196924754-1305228144-1931124329-2644",,,,,"False","17.12.2021 08:51:18","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132842010785605908","Besprechungsraum.Gro","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2644","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Besprechungsraum.Gross@tnp-gruppe.de","3469198","118045","27.01.2023 07:08:11","17.12.2021 08:51:16"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Laptop Lenovo weiß","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Laptop Lenovo weiß","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.12.2021 08:52:23","17.12.2021 08:52:23",,,,"Laptop Lenovo weiß","CN=Laptop Lenovo weiß,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Laptop.Lenovo.weiss@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.01.2023 07:08:12","27.01.2023 07:08:12","0",,,,,,"Laptop Lenovo weiß","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","801cee3c-7b25-4c04-9176-157ac8c2bac3","S-1-5-21-4196924754-1305228144-1931124329-2645",,,,,"False","17.12.2021 08:52:24","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132842011445605704","Laptop.Lenovo.weiß","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2645","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Laptop.Lenovo.weiß@tnp-gruppe.de","3469222","118054","27.01.2023 07:08:12","17.12.2021 08:52:23"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Surface Book 3","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Surface Book 3","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.12.2021 08:53:01","17.12.2021 08:53:01",,,,"Surface Book 3","CN=Surface Book 3,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Surface.Book.3@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 11:45:48","01.02.2023 11:45:48","0",,,,,,"Surface Book 3","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f54e484c-177d-49bc-9594-5e6c3dd05c86","S-1-5-21-4196924754-1305228144-1931124329-2646",,,,,"False","17.12.2021 08:53:01","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132842011813887021","Surface.Book.3","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2646","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Surface.Book.3@tnp-gruppe.de","3497770","118063","01.02.2023 11:45:48","17.12.2021 08:53:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/tnp AG","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"tnp AG","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.12.2021 09:03:14","17.12.2021 09:03:14",,,,"tnp AG","CN=tnp AG,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","tnpAG@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.04.2023 21:25:27","27.04.2023 21:25:27","0",,,,,,"tnp AG","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","56d56dfb-3851-4725-9433-f90ef727c555","S-1-5-21-4196924754-1305228144-1931124329-2647",,,,,"False","25.02.2022 11:18:44","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132902579248170462","PFbb55d9b871af434091","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2647","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","G986b417b80144444a0c4e750ae1e0e5b@tnp-gruppe.de","3999660","118079","27.04.2023 21:25:27","17.12.2021 09:03:14"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/MSOL_48fd5929cd5c","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"MSOL_48fd5929cd5c","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 11:47:12","19.12.2021 11:47:12",,,"Account created by Microsoft Azure Active Directory Connect with installation identifier 48fd5929cd5c42f59d7b55ce2a55b11d running on computer TNPAD01 configured to synchronize to tenant stines.de. This account must have directory replication permissions in the local Active Directory and write permission on certain attributes to enable Hybrid Deployment.",,"CN=MSOL_48fd5929cd5c,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365859159160354","11.08.2023 23:46:24","133362639848870287","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"11.08.2023 23:46:24","11.08.2023 23:46:24","0",,,,,,"MSOL_48fd5929cd5c","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","013c267a-4fe4-48f4-8987-b7f5253ac7cb","S-1-5-21-4196924754-1305228144-1931124329-2655",,,,,"False","19.12.2021 11:47:12","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132843844328510439","MSOL_48fd5929cd5c","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2655","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"4613719","121351","11.08.2023 23:46:24","19.12.2021 11:47:12"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133285880180981322","1","False","tnp-gruppe.de/TNP Benutzer/Alarmaufschaltungen","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Alarmaufschaltungen","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:49:36","19.12.2021 18:49:36",,,"Postfach","Alarmaufschaltungen","CN=Alarmaufschaltungen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","alarmaufschaltungen@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.05.2023 03:33:38",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:24","18.07.2023 11:45:24","0",,,,,,"Alarmaufschaltungen","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","bc1839fa-1ec9-41ed-a899-d69f70b7ef9b","S-1-5-21-4196924754-1305228144-1931124329-2656",,,,,"False","20.12.2021 07:32:42","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844555625849604","alarmaufschaltungen","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2656","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","alarmaufschaltungen@tnp-gruppe.de","4473614","122031","18.07.2023 11:45:24","19.12.2021 18:49:36"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133279868248489910","1","False","tnp-gruppe.de/TNP Benutzer/Bewerbung","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Bewerbung","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:50:19","19.12.2021 18:50:19",,,"Postfach","Bewerbung","CN=Bewerbung,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","bewerbung@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","08.05.2023 04:33:44",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:32","18.07.2023 11:45:32","0",,,,,,"Bewerbung","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","474bd513-c4fe-4069-afa3-8ce6e0ee4cb4","S-1-5-21-4196924754-1305228144-1931124329-2657",,,,,"False","21.12.2021 13:22:49","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132845629694095644","bewerbung","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2657","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","bewerbung@tnp-gruppe.de","4473615","122042","18.07.2023 11:45:32","19.12.2021 18:50:19"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","54","133350087555241664","54","False","tnp-gruppe.de/TNP Benutzer/Info","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Info","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:50:55","19.12.2021 18:50:55",,,"Postfach","Info","CN=Info,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","info@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","28.07.2023 11:05:55",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:36","18.07.2023 11:45:36","0",,,,,,"Info","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","5d46e10a-38cf-46ef-8673-bf7d4c0b4c9f","S-1-5-21-4196924754-1305228144-1931124329-2658",,,,,"False","21.12.2021 13:23:02","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132845629826283146","info","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2658","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","info@tnp-gruppe.de","4473616","122062","18.07.2023 11:45:36","19.12.2021 18:50:55"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","132884735511846546","0","True","tnp-gruppe.de/TNP Benutzer/Lizenzen","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Lizenzen","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:51:32","19.12.2021 18:51:32",,,"Postfach","Lizenzen","CN=Lizenzen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","lizenzen@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","04.02.2022 19:39:11",,"0","0","22.05.2023 05:21:16","133291992764317036","False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:48","18.07.2023 11:45:48","0",,,,,,"Lizenzen","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","5e3692fe-5629-49d9-9df0-fc38f81cf1c6","S-1-5-21-4196924754-1305228144-1931124329-2659",,,,,"False","21.02.2022 20:43:23","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132899462033489950","lizenzen","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2659","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","lizenzen@tnp-gruppe.de","4473617","122081","18.07.2023 11:45:48","19.12.2021 18:51:32"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","17","133365792911406062","17","False","tnp-gruppe.de/TNP Benutzer/Rechnungen","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Rechnungen","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:52:11","19.12.2021 18:52:11",,,"Postfach","Rechnungen","CN=Rechnungen,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rechnungen@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.08.2023 15:21:31",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:48","18.07.2023 11:45:48","0",,,,,,"Rechnungen","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","839ef884-61b4-4281-9804-f487d13308aa","S-1-5-21-4196924754-1305228144-1931124329-2660",,,,,"False","21.12.2021 13:23:15","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132845629955970625","rechnungen","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2660","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rechnungen@tnp-gruppe.de","4473618","122096","18.07.2023 11:45:48","19.12.2021 18:52:11"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133291991463371547","1","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Sekretariat TNP AG","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Sekretariat TNP AG","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:52:51","19.12.2021 18:52:51",,,,"Sekretariat TNP AG","CN=Sekretariat TNP AG,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sekretariat@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","22.05.2023 05:19:06",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 15:43:32","01.02.2023 15:43:32","0",,,,,,"Sekretariat TNP AG","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","d6f84d3f-119e-4ea7-8163-6989a66b63ad","S-1-5-21-4196924754-1305228144-1931124329-2661",,,,,"False","19.12.2021 18:52:51","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844099718821606","sekretariat","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2661","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sekretariat@tnp-gruppe.de","3498779","122119","01.02.2023 15:43:32","19.12.2021 18:52:51"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Termine & Fristen","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Termine & Fristen","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:53:38","19.12.2021 18:53:38",,,,"Termine & Fristen","CN=Termine & Fristen,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","TermineundFristen@tnp-gruppe.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 11:45:48","01.02.2023 11:45:48","0",,,,,,"Termine & Fristen","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","fc13d333-2adb-43a1-b7c1-b18a8d27984f","S-1-5-21-4196924754-1305228144-1931124329-2662",,,,,"False","19.12.2021 18:53:39","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132844100192259113","TermineundFristen","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2662","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","TermineundFristen@tnp-gruppe.de","3497773","122134","01.02.2023 11:45:48","19.12.2021 18:53:38"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133285881481905281","1","False","tnp-gruppe.de/TNP Benutzer/Zahlungsverkehr","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Zahlungsverkehr","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.12.2021 18:54:08","19.12.2021 18:54:08",,,"Postfach","Zahlungsverkehr","CN=Zahlungsverkehr,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","zahlungsverkehr@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.05.2023 03:35:48",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:45:48","18.07.2023 11:45:48","0",,,,,,"Zahlungsverkehr","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","9c85b960-24cb-41e4-bf34-595762ffd60d","S-1-5-21-4196924754-1305228144-1931124329-2663",,,,,"False","21.12.2021 13:23:29","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132845630095033093","zahlungsverkehr","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2663","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","zahlungsverkehr@tnp-gruppe.de","4473619","122153","18.07.2023 11:45:48","19.12.2021 18:54:08"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133318352960495276","0","False","tnp-gruppe.de/TNP Benutzer/Journal","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Journal","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","28.12.2021 08:21:04","28.12.2021 08:21:04",,,"Service-Account","Journal (Service-Account)","CN=Journal,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Journal@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","21.06.2023 17:34:56",,"0","133365829255338050","06.08.2023 13:30:08","133357950084998939","False","25146",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"06.08.2023 13:30:08","06.08.2023 13:30:08","0",,,,,,"Journal","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","4ef34f53-8822-47e0-899b-9146fc182d00","S-1-5-21-4196924754-1305228144-1931124329-2667",,,,,"False","10.02.2022 12:27:29","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132889660492870863","Journal","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2667","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Journal@tnp-gruppe.de","4582604","187690","06.08.2023 13:30:08","28.12.2021 08:21:04"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133304276108469635","0","False","tnp-gruppe.de/TNP Benutzer/Admin-Test-User","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Admin-Test-User","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","29.12.2021 09:45:19","29.12.2021 09:45:19",,,"Service-Account","Admin-Test-User (Service-Account)","CN=Admin-Test-User,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ad-test-user@tnp-gruppe.de",,,"True",,"Admin-Test-User",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","05.06.2023 10:33:30",,"0","133365827815495936","08.08.2023 12:42:11","133359649313437229","False","6824",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"08.08.2023 12:42:11","08.08.2023 12:42:11","0",,,,,,"Admin-Test-User","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f48f294d-f644-46e1-b701-f843985e0251","S-1-5-21-4196924754-1305228144-1931124329-2668",,,,,"False","08.09.2022 14:02:40","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133071121609731642","ad-test-user","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2668","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ad-test-user@tnp-gruppe.de","4593788","201788","08.08.2023 12:42:11","29.12.2021 09:45:19"
|
||||
"23.05.2023 00:00:00","133292664000000000",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133297929561971107","1","False","tnp-gruppe.de/Deaktivierte User/Alex Bondarenko","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Alex Bondarenko","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.01.2022 20:11:27","19.01.2022 20:11:27",,,"Disabled 23.05.2023","Alex Bondarenko (disable)","CN=Alex Bondarenko,OU=Deaktivierte User,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","alexander.bondarenko@tnp-gruppe.de",,,"False",,"Alex",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","29.05.2023 02:15:56",,"0","133180744751662887","13.01.2023 10:01:12","133180740725412122","False","87",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 15:19:05","18.07.2023 15:19:05","0",,,,,,"Alex Bondarenko","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","b89bd5b7-223d-41b4-ae1f-b8457e1d3d20","S-1-5-21-4196924754-1305228144-1931124329-2670",,,,,"False","04.02.2022 10:16:33","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132884397936378002","alex.bondarenko","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-2670","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Bondarenko",,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","alex.bondarenko@tnp-gruppe.de","4474510","544128","18.07.2023 15:19:05","19.01.2022 20:11:27"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/TNP Benutzer/Schleuse","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Schleuse","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","09.02.2022 15:44:06","09.02.2022 15:44:06",,,,"Schleuse","CN=Schleuse,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Schleuse",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","23.03.2023 15:32:44","133240555647704480","False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 11:44:47","18.07.2023 11:44:47","0",,,,,,"Schleuse","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","4f620903-837e-4b91-be76-86a2c87a629e","S-1-5-21-4196924754-1305228144-1931124329-3101",,,,,"False","09.02.2022 15:44:07","True","False",,,"CN=Daten-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132888914472602175","schleuse","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-3101","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","schleuse@tnp-gruppe.de","4473608","896959","18.07.2023 11:44:47","09.02.2022 15:44:06"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Users/MSOL_08bb7cf9d3b6","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"MSOL_08bb7cf9d3b6","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","23.02.2022 11:53:22","23.02.2022 11:53:22",,,"Account created by Microsoft Azure Active Directory Connect with installation identifier 08bb7cf9d3b642ff93a96b98c55e10fb running on computer TNPEX01 configured to synchronize to tenant stines.de. This account must have directory replication permissions in the local Active Directory and write permission on certain attributes to enable Hybrid Deployment.",,"CN=MSOL_08bb7cf9d3b6,CN=Users,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133311627023691301","13.06.2023 22:45:02","133311627023691301","False","12",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"13.06.2023 22:45:02","13.06.2023 22:45:02","0",,,,,,"MSOL_08bb7cf9d3b6","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","d33eba36-6d88-49cf-a655-8aaa3aa72a52","S-1-5-21-4196924754-1305228144-1931124329-3103",,,,,"False","23.02.2022 11:53:22","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132900872025483684","MSOL_08bb7cf9d3b6","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-3103","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"4267703","940034","13.06.2023 22:45:02","23.02.2022 11:53:22"
|
||||
"04.07.2022 00:00:00","133013592000000000",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133285865163611093","1","False","tnp-gruppe.de/Deaktivierte User/Rita Hofmann","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Rita Hofmann","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","03.04.2022 17:59:08","03.04.2022 17:59:08",,,"Disabled 04.07.2022","Rita Hofmann (disable)","CN=Rita Hofmann,OU=Deaktivierte User,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rita.hofmann@tnp-gruppe.de",,,"False",,"Rita",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","15.05.2023 03:08:36",,"0","133011283388789940","30.06.2022 08:11:30","133010430908239217","False","76",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"18.07.2023 15:19:35","18.07.2023 15:19:35","0",,,,,,"Rita Hofmann","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","7de5af49-3e36-44ab-a345-1012cdef0b0a","S-1-5-21-4196924754-1305228144-1931124329-3108",,,,,"False","05.04.2022 15:39:18","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","132936395580167883","rita.hofmann","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-3108","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Hofmann",,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rita.hofmann@tnp-gruppe.de","4474515","1124515","18.07.2023 15:19:35","03.04.2022 17:59:08"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133259478801912906","0","True","tnp-gruppe.de/TNP Benutzer/Cloud-Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Cloud-Admin","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","05.07.2022 11:40:44","05.07.2022 11:40:44",,,,"Cloud-Admin","CN=Cloud-Admin,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Cloud-Admin",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","14.04.2023 14:11:20",,"0","133259480398474203","13.08.2023 00:40:02","133363536020403138","False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"13.08.2023 00:40:02","13.08.2023 00:40:02","0",,,,,,"Cloud-Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3d4820e9-e576-407a-8e19-316f9e4d769a","S-1-5-21-4196924754-1305228144-1931124329-3603",,,,,"False","05.07.2022 11:40:45","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133014876456950077","cloud_admin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-3603","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","cloud_admin@tnp-gruppe.de","4619445","1963035","13.08.2023 00:40:02","05.07.2022 11:40:44"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133353442269858791","0","False","tnp-gruppe.de/TNP Benutzer/Manuela Blecha","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Manuela Blecha","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","17.10.2022 10:30:04","17.10.2022 10:30:04",,,"RDS-User,Mailbox","Manuela Blecha","CN=Manuela Blecha,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","manuela.blecha@tnp-gruppe.de",,,"True",,"Manuela",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","01.08.2023 08:17:06",,"0","133365542805882218","14.08.2023 08:19:50","133364675909461175","False","204",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"14.08.2023 08:19:50","14.08.2023 08:19:50","0",,,,,,"Manuela Blecha","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2ddbc19a-42b7-48ed-bb9d-5a7eb503cfe6","S-1-5-21-4196924754-1305228144-1931124329-4103",,,,,"False","02.11.2022 08:49:30","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133118489700972705","manuela.blecha","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4103","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Blecha",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","manuela.blecha@tnp-gruppe.de","4626863","2760102","14.08.2023 08:19:50","17.10.2022 10:30:04"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox82a10db0dd7443958ab1e214712dff8b","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox82a10db0dd7443958ab1e214712dff8b","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.01.2023 11:12:39","19.01.2023 11:12:39",,,,"HealthMailbox-TNPEX01-EXDB02","CN=HealthMailbox82a10db0dd7443958ab1e214712dff8b,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox82a10db0dd7443958ab1e214712dff8b@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365857246650527","07.08.2023 18:12:17","133358983379493503","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox82a10db0dd7443958ab1e214712dff8b","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","41cd66f6-3a34-44fd-98f6-5c25fdc325b3","S-1-5-21-4196924754-1305228144-1931124329-4105",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437591263598","HealthMailbox82a10db","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4105","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox82a10db0dd7443958ab1e214712dff8b@tnp-gruppe.de","4631888","3427125","15.08.2023 05:29:19","19.01.2023 11:12:39"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox276346a4a35141e48a0d9540cb44a66a","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox276346a4a35141e48a0d9540cb44a66a","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.01.2023 11:53:46","19.01.2023 11:53:46",,,,"HealthMailbox-TNPEX01-Treu","CN=HealthMailbox276346a4a35141e48a0d9540cb44a66a,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox276346a4a35141e48a0d9540cb44a66a@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365858786831580","08.08.2023 22:18:08","133359994888174982","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox276346a4a35141e48a0d9540cb44a66a","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","a22288d9-ce01-476f-aec2-7a410a3d0768","S-1-5-21-4196924754-1305228144-1931124329-4106",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437590326698","HealthMailbox276346a","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4106","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox276346a4a35141e48a0d9540cb44a66a@tnp-gruppe.de","4631882","3427326","15.08.2023 05:29:19","19.01.2023 11:53:46"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox2677d186ef8b405ab1f607b6d49b777e","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox2677d186ef8b405ab1f607b6d49b777e","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.01.2023 11:53:46","19.01.2023 11:53:46",,,,"HealthMailbox-TNPEX01-Eisel-Schubert","CN=HealthMailbox2677d186ef8b405ab1f607b6d49b777e,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox2677d186ef8b405ab1f607b6d49b777e@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365859048116823","09.08.2023 10:49:08","133360445488270070","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox2677d186ef8b405ab1f607b6d49b777e","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","eccad50a-eb58-4a1b-94ed-5ee0a7179c20","S-1-5-21-4196924754-1305228144-1931124329-4107",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437590951132","HealthMailbox2677d18","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4107","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox2677d186ef8b405ab1f607b6d49b777e@tnp-gruppe.de","4631886","3427335","15.08.2023 05:29:19","19.01.2023 11:53:46"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox5941b670b0814b2e8858ca927853b8f1","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox5941b670b0814b2e8858ca927853b8f1","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:53:01","01.02.2023 15:53:01",,,,"HealthMailbox-TNPEX01-001","CN=HealthMailbox5941b670b0814b2e8858ca927853b8f1,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox5941b670b0814b2e8858ca927853b8f1@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365860060383424","10.08.2023 18:05:46","133361571463422617","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox5941b670b0814b2e8858ca927853b8f1","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f6a52e7a-1ed2-4446-92f2-52203bc8b879","S-1-5-21-4196924754-1305228144-1931124329-4110",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437595325716","HealthMailbox5941b67","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4110","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox5941b670b0814b2e8858ca927853b8f1@tnp-gruppe.de","4631892","3498846","15.08.2023 05:29:19","01.02.2023 15:53:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:53:26","01.02.2023 15:53:26",,,,"HealthMailbox-TNPEX01-003","CN=HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365859173011564","10.08.2023 04:32:05","133361083251521733","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","8f25e256-df8e-4408-8fc3-0e3a8fc4bf23","S-1-5-21-4196924754-1305228144-1931124329-4112",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437597825611","HealthMailbox16f00ee","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4112","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox16f00ee2f99a4e31a8643accc3b0d0ce@tnp-gruppe.de","4631896","3498876","15.08.2023 05:29:19","01.02.2023 15:53:26"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailboxf832733f7c4b4856b1f497a236351a00","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailboxf832733f7c4b4856b1f497a236351a00","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:53:37","01.02.2023 15:53:37",,,,"HealthMailbox-TNPEX01-004","CN=HealthMailboxf832733f7c4b4856b1f497a236351a00,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxf832733f7c4b4856b1f497a236351a00@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133208762762341453","11.02.2023 16:02:57","133206013774865867","False","6843",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"13.02.2023 05:25:07","13.02.2023 05:25:07","0",,,,,,"HealthMailboxf832733f7c4b4856b1f497a236351a00","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","db4776c1-5d58-4151-b4e6-493d789d7910","S-1-5-21-4196924754-1305228144-1931124329-4113",,,,,"False","13.02.2023 05:25:07","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133207359070162029","HealthMailboxf832733","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4113","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxf832733f7c4b4856b1f497a236351a00@tnp-gruppe.de","3573725","3498891","13.02.2023 05:25:07","01.02.2023 15:53:37"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox139239080af24b328727c207ef933b9b","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox139239080af24b328727c207ef933b9b","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:53:52","01.02.2023 15:53:52",,,,"HealthMailbox-TNPEX01-005","CN=HealthMailbox139239080af24b328727c207ef933b9b,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox139239080af24b328727c207ef933b9b@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 15:54:05","01.02.2023 15:54:05","0",,,,,,"HealthMailbox139239080af24b328727c207ef933b9b","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","822b5b60-b01f-4abf-9dda-7ac08fdea0ff","S-1-5-21-4196924754-1305228144-1931124329-4114",,,,,"False","01.02.2023 15:53:52","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133197368321451088","HealthMailbox1392390","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4114","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox139239080af24b328727c207ef933b9b@tnp-gruppe.de","3498912","3498906","01.02.2023 15:54:05","01.02.2023 15:53:52"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox492e1b9f39304787900e9704e27dd66d","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox492e1b9f39304787900e9704e27dd66d","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:54:16","01.02.2023 15:54:16",,,,"HealthMailbox-TNPEX01-007","CN=HealthMailbox492e1b9f39304787900e9704e27dd66d,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox492e1b9f39304787900e9704e27dd66d@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 15:54:28","01.02.2023 15:54:28","0",,,,,,"HealthMailbox492e1b9f39304787900e9704e27dd66d","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2d0e8aa5-963e-4f94-b900-4a9d97d9a67d","S-1-5-21-4196924754-1305228144-1931124329-4116",,,,,"False","01.02.2023 15:54:16","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133197368564276611","HealthMailbox492e1b9","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4116","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox492e1b9f39304787900e9704e27dd66d@tnp-gruppe.de","3498936","3498929","01.02.2023 15:54:28","01.02.2023 15:54:16"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox27a48f6dae09407e81a6d2f99dd5657b","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox27a48f6dae09407e81a6d2f99dd5657b","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:54:28","01.02.2023 15:54:28",,,,"HealthMailbox-TNPEX01-008","CN=HealthMailbox27a48f6dae09407e81a6d2f99dd5657b,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox27a48f6dae09407e81a6d2f99dd5657b@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 15:54:41","01.02.2023 15:54:41","0",,,,,,"HealthMailbox27a48f6dae09407e81a6d2f99dd5657b","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","f37a303c-c1b7-424a-98ff-111f0a25a5ab","S-1-5-21-4196924754-1305228144-1931124329-4117",,,,,"False","01.02.2023 15:54:28","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133197368681642690","HealthMailbox27a48f6","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox27a48f6dae09407e81a6d2f99dd5657b@tnp-gruppe.de","3498948","3498942","01.02.2023 15:54:41","01.02.2023 15:54:28"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailboxcecd88cfd631430da419d53d775e935b","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailboxcecd88cfd631430da419d53d775e935b","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 15:54:41","01.02.2023 15:54:41",,,,"HealthMailbox-TNPEX01-009","CN=HealthMailboxcecd88cfd631430da419d53d775e935b,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxcecd88cfd631430da419d53d775e935b@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.02.2023 15:54:55","01.02.2023 15:54:55","0",,,,,,"HealthMailboxcecd88cfd631430da419d53d775e935b","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","aba037f4-6909-4c87-a0bb-694d40c1372b","S-1-5-21-4196924754-1305228144-1931124329-4118",,,,,"False","01.02.2023 15:54:41","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133197368818330681","HealthMailboxcecd88c","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4118","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxcecd88cfd631430da419d53d775e935b@tnp-gruppe.de","3498960","3498954","01.02.2023 15:54:55","01.02.2023 15:54:41"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.02.2023 17:01:34","01.02.2023 17:01:34",,,,"HealthMailbox-TNPEX01-EXDB03","CN=HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365835637847360","10.08.2023 21:35:30","133361697305682116","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","76eb383b-f122-4ec3-b99a-f1c16800c717","S-1-5-21-4196924754-1305228144-1931124329-4120",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437590638707","HealthMailbox0edf2ed","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4120","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox0edf2ed208aa49ff9380a1dcedc7d59b@tnp-gruppe.de","4631884","3499303","15.08.2023 05:29:19","01.02.2023 17:01:34"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailboxd30d838c1acc4b829c26e8465a39cba8","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailboxd30d838c1acc4b829c26e8465a39cba8","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","14.02.2023 20:26:01","14.02.2023 20:26:01",,,,"HealthMailbox-TNPEX01-Journal","CN=HealthMailboxd30d838c1acc4b829c26e8465a39cba8,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxd30d838c1acc4b829c26e8465a39cba8@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365858994056062","14.08.2023 01:27:03","133364428235543576","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailboxd30d838c1acc4b829c26e8465a39cba8","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","8de8cbf8-a3b1-470e-9fd6-c3ae8bfbbad8","S-1-5-21-4196924754-1305228144-1931124329-4121",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437591575908","HealthMailboxd30d838","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4121","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailboxd30d838c1acc4b829c26e8465a39cba8@tnp-gruppe.de","4631890","3582757","15.08.2023 05:29:19","14.02.2023 20:26:01"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox00a22b8a8dbf481699b90f99094c3d85","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox00a22b8a8dbf481699b90f99094c3d85","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","14.02.2023 20:26:18","14.02.2023 20:26:18",,,,"HealthMailbox-TNPEX01-002","CN=HealthMailbox00a22b8a8dbf481699b90f99094c3d85,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox00a22b8a8dbf481699b90f99094c3d85@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365858122978972","13.08.2023 23:54:37","133364372773901071","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox00a22b8a8dbf481699b90f99094c3d85","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","7d0cc200-4131-4e79-aa4c-5bc668eb8aa9","S-1-5-21-4196924754-1305228144-1931124329-4122",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437596744525","HealthMailbox00a22b8","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4122","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox00a22b8a8dbf481699b90f99094c3d85@tnp-gruppe.de","4631894","3582774","15.08.2023 05:29:19","14.02.2023 20:26:18"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox28b2092bbc484865bbe91874fe2666f4","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox28b2092bbc484865bbe91874fe2666f4","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","14.02.2023 20:26:33","14.02.2023 20:26:33",,,,"HealthMailbox-TNPEX01-006","CN=HealthMailbox28b2092bbc484865bbe91874fe2666f4,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox28b2092bbc484865bbe91874fe2666f4@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"14.02.2023 20:26:46","14.02.2023 20:26:46","0",,,,,,"HealthMailbox28b2092bbc484865bbe91874fe2666f4","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","6e79b3fc-c21c-4c4f-9601-56f616e86ca6","S-1-5-21-4196924754-1305228144-1931124329-4123",,,,,"False","14.02.2023 20:26:33","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133208763934704215","HealthMailbox28b2092","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4123","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox28b2092bbc484865bbe91874fe2666f4@tnp-gruppe.de","3582797","3582791","14.02.2023 20:26:46","14.02.2023 20:26:33"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/Microsoft Exchange System Objects/Monitoring Mailboxes/HealthMailbox67b29200df9844cd9b41fb31b454331a","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"HealthMailbox67b29200df9844cd9b41fb31b454331a","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","14.02.2023 20:26:46","14.02.2023 20:26:46",,,,"HealthMailbox-TNPEX01-010","CN=HealthMailbox67b29200df9844cd9b41fb31b454331a,CN=Monitoring Mailboxes,CN=Microsoft Exchange System Objects,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox67b29200df9844cd9b41fb31b454331a@tnp-gruppe.de",,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133365859452403545","13.08.2023 05:29:19","133363709599518108","False","65535",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.08.2023 05:29:19","15.08.2023 05:29:19","0",,,,,,"HealthMailbox67b29200df9844cd9b41fb31b454331a","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2a08fe74-3b9e-4ba3-8b92-e2ffafbdecf1","S-1-5-21-4196924754-1305228144-1931124329-4124",,,,,"False","15.08.2023 05:29:19","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133365437599700937","HealthMailbox67b2920","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4124","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","HealthMailbox67b29200df9844cd9b41fb31b454331a@tnp-gruppe.de","4631898","3582803","15.08.2023 05:29:19","14.02.2023 20:26:46"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347498554156476","0","False","tnp-gruppe.de/TNP Benutzer/Paula Wagner","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Paula Wagner","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.03.2023 12:16:56","30.03.2023 12:16:56",,,"RDS-User, Mailbox","Paula Wagner","CN=Paula Wagner,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","paula.wagner@tnp-gruppe.de",,,"True",,"Paula",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 11:10:55",,"0","133364700239324259","10.08.2023 11:53:19","133361347991107746","False","96",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 11:53:19","10.08.2023 11:53:19","0",,,,,,"Paula Wagner","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","2a75206d-facc-48d4-9f96-62a767afdf40","S-1-5-21-4196924754-1305228144-1931124329-4125",,,,,"False","03.04.2023 09:09:54","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133249793940910316","paula.wagner","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4125","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Wagner",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","paula.wagner@tnp-gruppe.de","4605171","3833119","10.08.2023 11:53:19","30.03.2023 12:16:56"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133343928015252502","0","False","tnp-gruppe.de/TNP Benutzer/Oliver Klöcker","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Oliver Klöcker","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","25.04.2023 12:35:05","25.04.2023 12:35:05",,,"RDS-User, Mailbox","Oliver Klöcker","CN=Oliver Klöcker,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","verwaltung@cura-saale.de",,,"True",,"Oliver",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","21.07.2023 08:00:01",,"0","133365777517258578","07.08.2023 02:48:43","133358429230599758","False","157",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 02:48:43","07.08.2023 02:48:43","0",,,,,,"Oliver Klöcker","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","232094a2-831a-4ad2-8836-e59a8546fb82","S-1-5-21-4196924754-1305228144-1931124329-4128",,,,,"False","25.04.2023 12:35:05","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133268925055971444","oliver.klöcker","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4128","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Klöcker",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","oliver.klöcker@tnp-gruppe.de","4585756","3986028","07.08.2023 02:48:43","25.04.2023 12:35:05"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","2","133291697133798413","2","False","tnp-gruppe.de/Exchange-Öffentliche-Postfächer/Info Cura-Saale","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Info Cura-Saale","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","25.04.2023 12:36:59","25.04.2023 12:36:59",,,,"Info Cura-Saale","CN=Info Cura-Saale,OU=Exchange-Öffentliche-Postfächer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","info@cura-saale.de",,,"False",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","21.05.2023 21:08:33",,"0","0",,,"False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"28.06.2023 07:15:23","28.06.2023 07:15:23","0",,,,,,"Info Cura-Saale","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","238165cc-0ebd-49f0-a3c3-8045fda6cf3c","S-1-5-21-4196924754-1305228144-1931124329-4129",,,,,"False","25.04.2023 12:36:59","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133268926195917087","Info1","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4129","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Info1@tnp-gruppe.de","4350701","3986054","28.06.2023 07:15:23","25.04.2023 12:36:59"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/TNP Benutzer/Scanner Cura-Saale","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Scanner Cura-Saale","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","27.06.2023 15:07:06","27.06.2023 15:07:06",,,,"Scanner Cura-Saale","CN=Scanner Cura-Saale,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Scanner",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","14.08.2023 10:53:07","133364767879204743","False","0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"14.08.2023 10:53:07","14.08.2023 10:53:07","0",,,,,,"Scanner Cura-Saale","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","cc40437a-a32d-4851-9f6f-7ad454407900","S-1-5-21-4196924754-1305228144-1931124329-4133",,,,,"False","27.06.2023 15:07:06","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133323448268172164","scan.cura-saale","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4133","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Cura-Saale",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","scan.cura-saale@tnp-gruppe.de","4627471","4346215","14.08.2023 10:53:07","27.06.2023 15:07:06"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133361147654625860","0","True","tnp-gruppe.de/TNP Benutzer/Diana Eichelberger","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Diana Eichelberger","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","27.06.2023 17:40:25","27.06.2023 17:40:25",,,"RDS-User,(Zugriff auf Exchange Postfach verwaltung@cura-saale.de)","Diana Eichelberger","CN=Diana Eichelberger,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","diana.eichelberger@tnp-gruppe.de",,,"True",,"Diana",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","10.08.2023 06:19:25",,"0","133365712429996631","07.08.2023 14:40:04","133358856046612776","False","78",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 14:40:04","07.08.2023 14:40:04","0",,,,,,"Diana Eichelberger","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","d2e1db66-7f66-4660-bbf1-4831cf743d93","S-1-5-21-4196924754-1305228144-1931124329-4138",,,,,"False","27.06.2023 17:40:25","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133323540255134222","diana.eichelberger","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4138","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Eichelberger",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","diana.eichelberger@tnp-gruppe.de","4588625","4346979","07.08.2023 14:40:04","27.06.2023 17:40:25"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/TNP Benutzer/PDL Cura-Saale","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"PDL Cura-Saale","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","27.06.2023 22:46:54","27.06.2023 22:46:54",,,"Postfach","PDL Cura-Saale","CN=PDL Cura-Saale,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","pdl@cura-saale.de",,,"True",,"PDL",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133364940771474809","10.08.2023 07:22:02","133361185224682466","False","1665",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 07:22:02","10.08.2023 07:22:02","0",,,,,,"PDL Cura-Saale","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","ced1504e-99c8-4b30-bc5b-994cd702659e","S-1-5-21-4196924754-1305228144-1931124329-4140",,,,,"False","27.06.2023 22:46:54","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133323724144917159","pdl","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4140","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Cura-Saale",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","pdl@tnp-gruppe.de","4604064","4348347","10.08.2023 07:22:02","27.06.2023 22:46:54"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133335551015004662","0","True","tnp-gruppe.de/TNP Benutzer/Milena Jovanovic","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Milena Jovanovic","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","28.06.2023 07:52:05","28.06.2023 07:52:05",,,"RDS-User,(Zugriff auf Exchange Postfach verwaltung@cura-saale.de)","Milena Jovanovic","CN=Milena Jovanovic,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","milena.jovanovic@tnp-gruppe.de",,,"True",,"Milena",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","11.07.2023 15:18:21",,"0","133335551056035896","11.07.2023 15:17:34","133335550546449508","False","11",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"11.07.2023 15:17:34","11.07.2023 15:17:34","0",,,,,,"Milena Jovanovic","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3acacb97-c208-4446-a9f5-33787c7d4b70","S-1-5-21-4196924754-1305228144-1931124329-4141",,,,,"False","28.06.2023 07:52:05","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133324051253900212","milena.jovanovic","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4141","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Jovanovic",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","milena.jovanovic@tnp-gruppe.de","4434675","4350857","11.07.2023 15:17:34","28.06.2023 07:52:05"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","tnp-gruppe.de/TNP Benutzer/Abrechnung Cura Saale","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Abrechnung Cura Saale","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.07.2023 10:32:00","01.07.2023 10:32:00",,,,"Abrechnung Cura Saale","CN=Abrechnung Cura Saale,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abrechnung@cura-saale.de",,,"True",,"Abrechnung ",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133361177567891428","03.08.2023 13:20:24","133355352240924655","False","352",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"03.08.2023 13:20:24","03.08.2023 13:20:24","8388608",,,,,,"Abrechnung Cura Saale","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","5722c4c2-4bb0-4d4c-bc0e-6c4029d891cc","S-1-5-21-4196924754-1305228144-1931124329-4142",,,,,"True","01.07.2023 10:32:00","False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133326739207593298","abrechnung","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4142","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Cura Saale",,"False","False","False","512","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abrechnung@tnp-gruppe.de","4565781","4370018","03.08.2023 13:20:24","01.07.2023 10:32:00"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133358822504600805","0","True","tnp-gruppe.de/TNP Benutzer/Maximilian Wirth","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Maximilian Wirth","0","tnp Invest GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","05.07.2023 12:20:03","05.07.2023 12:20:03",,,"RDS-User(Zugriff auf Exchange Postfach abrechnung@cura-saale.de)","Maximilian Wirth","CN=Maximilian Wirth,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","maximilian.wirth@tnp-gruppe.de",,,"True",,"Maximilian",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","07.08.2023 13:44:10",,"0","133364877876316558","07.08.2023 13:44:27","133358822670238733","False","28",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.08.2023 13:44:27","07.08.2023 13:44:27","0",,,,,,"Maximilian Wirth","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","53311b2b-0c03-470a-98b9-054064a99584","S-1-5-21-4196924754-1305228144-1931124329-4144",,,,,"False","05.07.2023 12:22:21","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=tnp-gruppe,DC=de","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133330261415639198","maximilian.wirth","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4144","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Wirth",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","maximilian.wirth@tnp-gruppe.de","4588402","4393740","07.08.2023 13:44:27","05.07.2023 12:20:03"
|
||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","tnp-gruppe.de/TNP Benutzer/Winz Sabine","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Winz Sabine","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","08.08.2023 14:28:15","08.08.2023 14:28:15",,,"RDS-User für Pflegekräfte(keine Exchnage)(ehmals pflegekraft User)","Winz Sabine","CN=Winz Sabine,OU=TNP Benutzer,DC=tnp-gruppe,DC=de",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Winz",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133361487767584505","08.08.2023 15:29:50","133359749901286025","False","3",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.08.2023 15:39:43","10.08.2023 15:39:43","0",,,,,,"Winz Sabine","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=tnp-gruppe,DC=de","user","3efc64e9-3f06-4722-ad47-6596feb9ffc0","S-1-5-21-4196924754-1305228144-1931124329-4145",,,,,"False","08.08.2023 14:28:15","True","False",,,"CN=G-RDP-User,OU=TNP Gruppen,DC=tnp-gruppe,DC=de","1117","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133359712958681873","winz.sabine","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-4196924754-1305228144-1931124329-4145","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Sabine",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","winz.sabine@tnp-gruppe.de","4606073","4594220","10.08.2023 15:39:43","08.08.2023 14:28:15"
|
||||
|
+18
-2
@@ -1,6 +1,7 @@
|
||||
import psycopg2
|
||||
from datetime import datetime, timedelta
|
||||
from Controller import mysql_connect
|
||||
import socket
|
||||
|
||||
def tickets(ip,name):
|
||||
# Verbindungsinformationen zur PostgreSQL-Datenbank
|
||||
@@ -9,6 +10,8 @@ def tickets(ip,name):
|
||||
db_user = "zammad"
|
||||
db_password = "zammad"
|
||||
|
||||
print("Inside")
|
||||
|
||||
table_name = "Tickets"
|
||||
|
||||
# Verbindung zur Datenbank herstellen
|
||||
@@ -26,7 +29,7 @@ def tickets(ip,name):
|
||||
## Header auslesen
|
||||
headers = [desc[0] for desc in cursor.description]
|
||||
|
||||
## Orga Auslesen
|
||||
## Orga Auslesen per API-Server
|
||||
group = f"SELECT id FROM groups WHERE name = '{name.replace('ae','ä').replace('ue','ü').replace('oe','ö').replace('-',' ')}'"
|
||||
cursor.execute(group)
|
||||
query = f"SELECT tickets.*, tag_items.name AS SLA FROM tickets LEFT JOIN tags ON tickets.id = tags.o_id LEFT JOIN tag_items ON tags.tag_item_id = tag_items.id WHERE group_id = {cursor.fetchone()[0]}"
|
||||
@@ -66,4 +69,17 @@ def tickets(ip,name):
|
||||
update_query += f" `{field}` = %s, "
|
||||
update_query = update_query.rstrip(", ")
|
||||
update_query += f" WHERE id = {row[0]}"
|
||||
mysql_connect.add_user(update_query,name, row)
|
||||
mysql_connect.add_user(update_query,name, row)
|
||||
|
||||
def get_local_ip():
|
||||
try:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.connect(("8.8.8.8", 80))
|
||||
local_ip = s.getsockname()[0]
|
||||
s.close()
|
||||
return local_ip
|
||||
except Exception as e:
|
||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||
return None
|
||||
|
||||
tickets(get_local_ip(),"Jaehler-GmbH")
|
||||
@@ -1 +1,34 @@
|
||||
### Python Script für REPORTS
|
||||
# Python Script Sammlung für REPORTS
|
||||
|
||||
---
|
||||
|
||||
## Funktion
|
||||
|
||||
---
|
||||
Die Scripte sind für das Abrufen von Reports von Server-Systemen.<br>
|
||||
Folgende Scripte sind vorhanden
|
||||
|
||||
- AD-Controller für Active-Direcotory User und Gruppen
|
||||
- Exchange-Server für alle User vom Exchange Server
|
||||
- Terminal-Server für alle User eines RDS-Servers
|
||||
- E-Mail Server für alle SMTP User
|
||||
- Ticket Server für das Abrufen aller Tickets in einem System
|
||||
- Bitwarden Server für das Abrufen aller Aktiven Bitwarden User
|
||||
|
||||
### AD-Controller
|
||||
|
||||
---
|
||||
#### Aufbau:
|
||||
|
||||
Ruft die User und Gruppen über Powershell als CSV ab und sendet diese an den API-Server.<br>
|
||||
|
||||
Funktion für das Abrufen der User
|
||||
> powershell", "-Command",
|
||||
"Get-ADUser -Filter * -Properties * | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'users.csv"
|
||||
|
||||
Funktion für das Abrufen der Gruppen
|
||||
>"powershell", "-Command",
|
||||
"Get-ADGroupMember -Identity G-RDP-User | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'group.csv'"
|
||||
|
||||
Über den API "POST" werden die Daten an den MYSQL-Server gesendet.
|
||||
> request_post("dbset", {"query": create_table_query, 'dbname': name})<br>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,259 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\dist\\Reports.exe',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="Reports" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
||||
True,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\Reports.pkg',
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pywintypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\pyi_rth_pywintypes.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('main',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pywintypes39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
||||
'BINARY'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('pyexpat.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_ctypes.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('nacl\\_sodium.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
||||
'EXTENSION'),
|
||||
('win32\\win32security.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\win32security.pyd',
|
||||
'EXTENSION'),
|
||||
('win32\\_win32sysloader.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\_win32sysloader.pyd',
|
||||
'EXTENSION'),
|
||||
('_uuid.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
||||
'EXTENSION'),
|
||||
('_mysql_connector.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('libffi-7.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('libmysql.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libmysql.dll',
|
||||
'BINARY'),
|
||||
('libssl-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libssl-3-x64.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libcrypto-3-x64.dll',
|
||||
'BINARY'),
|
||||
('MSVCP140.dll', 'C:\\Windows\\system32\\MSVCP140.dll', 'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('nacl\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1691017839,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')])
|
||||
@@ -1,249 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\Reports.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True},
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pywintypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\pyi_rth_pywintypes.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('main',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pywintypes39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
||||
'BINARY'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('pyexpat.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_ctypes.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('nacl\\_sodium.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
||||
'EXTENSION'),
|
||||
('win32\\win32security.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\win32security.pyd',
|
||||
'EXTENSION'),
|
||||
('win32\\_win32sysloader.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\_win32sysloader.pyd',
|
||||
'EXTENSION'),
|
||||
('_uuid.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
||||
'EXTENSION'),
|
||||
('_mysql_connector.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('libffi-7.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('libmysql.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libmysql.dll',
|
||||
'BINARY'),
|
||||
('libssl-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libssl-3-x64.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libcrypto-3-x64.dll',
|
||||
'BINARY'),
|
||||
('MSVCP140.dll', 'C:\\Windows\\system32\\MSVCP140.dll', 'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Reports\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('nacl\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA')],
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="Reports" processorArchitecture="amd64" version="1.0.0.0"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||
</application>
|
||||
</compatibility>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,68 +0,0 @@
|
||||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed)
|
||||
missing module named org - imported by copy (optional)
|
||||
missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional)
|
||||
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional), multiprocessing.util (delayed)
|
||||
missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level)
|
||||
missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level)
|
||||
missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named pyimod02_importers - imported by C:\Users\Sebastian Serfling\PycharmProjects\server-info\venv\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional)
|
||||
missing module named SocketServer - imported by sshtunnel (conditional)
|
||||
missing module named Queue - imported by sshtunnel (conditional)
|
||||
missing module named invoke - imported by paramiko.config (optional)
|
||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||
missing module named fcntl - imported by paramiko.agent (delayed)
|
||||
missing module named 'pyasn1.codec' - imported by paramiko.ssh_gss (delayed)
|
||||
missing module named pyasn1 - imported by paramiko.ssh_gss (delayed)
|
||||
missing module named gssapi - imported by paramiko.ssh_gss (optional)
|
||||
missing module named vms_lib - imported by platform (delayed, optional)
|
||||
missing module named java - imported by platform (delayed)
|
||||
missing module named _winreg - imported by platform (delayed, optional)
|
||||
missing module named 'dns.resolver' - imported by mysql.connector.pooling (optional)
|
||||
missing module named dns - imported by mysql.connector.pooling (optional)
|
||||
missing module named typing_extensions - imported by mysql.connector.types (conditional, optional), mysql.opentelemetry.importlib_metadata._compat (optional), urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
||||
missing module named zipp - imported by mysql.opentelemetry.importlib_metadata (top-level)
|
||||
missing module named deprecated - imported by mysql.opentelemetry.trace (top-level), mysql.opentelemetry.sdk.trace (top-level), mysql.opentelemetry.sdk.util (top-level), mysql.opentelemetry.sdk.util.instrumentation (top-level)
|
||||
missing module named 'opentelemetry.semconv' - imported by mysql.connector.opentelemetry.constants (optional), mysql.connector.opentelemetry.instrumentation (optional)
|
||||
missing module named 'opentelemetry.sdk' - imported by mysql.connector.opentelemetry.constants (optional), mysql.connector.opentelemetry.instrumentation (optional)
|
||||
missing module named opentelemetry - imported by mysql.connector.opentelemetry.constants (optional), mysql.connector.opentelemetry.context_propagation (conditional), mysql.connector.opentelemetry.instrumentation (optional)
|
||||
missing module named 'opentelemetry.trace' - imported by mysql.connector.opentelemetry.context_propagation (conditional)
|
||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,185 +0,0 @@
|
||||
('C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\dist\\Start.exe',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="Start" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
||||
True,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\Start.pkg',
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('Start',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\Start.py',
|
||||
'PYSOURCE'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1691751211,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')])
|
||||
@@ -1,176 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\Start.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True},
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('Start',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\Start.py',
|
||||
'PYSOURCE'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA')],
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
@@ -1,878 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\Start\\PYZ-00.pyz',
|
||||
[('__future__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\__future__.py',
|
||||
'PYMODULE'),
|
||||
('_compat_pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compat_pickle.py',
|
||||
'PYMODULE'),
|
||||
('_compression',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compression.py',
|
||||
'PYMODULE'),
|
||||
('_py_abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_py_abc.py',
|
||||
'PYMODULE'),
|
||||
('_pydecimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_pydecimal.py',
|
||||
'PYMODULE'),
|
||||
('_strptime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_strptime.py',
|
||||
'PYMODULE'),
|
||||
('_threading_local',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_threading_local.py',
|
||||
'PYMODULE'),
|
||||
('argparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\argparse.py',
|
||||
'PYMODULE'),
|
||||
('ast',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py',
|
||||
'PYMODULE'),
|
||||
('base64',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\base64.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('bisect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bisect.py',
|
||||
'PYMODULE'),
|
||||
('bz2',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bz2.py',
|
||||
'PYMODULE'),
|
||||
('calendar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\calendar.py',
|
||||
'PYMODULE'),
|
||||
('certifi',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('certifi.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\core.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\api.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.assets',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\assets\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.cd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\cd.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.constant',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\constant.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.legacy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\legacy.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\models.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\utils.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\version.py',
|
||||
'PYMODULE'),
|
||||
('configparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\configparser.py',
|
||||
'PYMODULE'),
|
||||
('contextlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextlib.py',
|
||||
'PYMODULE'),
|
||||
('contextvars',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextvars.py',
|
||||
'PYMODULE'),
|
||||
('copy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\copy.py',
|
||||
'PYMODULE'),
|
||||
('cryptography',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat._oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\_oid.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.backend',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\backend.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ciphers.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.cmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\cmac.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.decode_asn1',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\decode_asn1.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl._conditional',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\_conditional.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl.binding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\binding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_asymmetric.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._cipheralgorithm',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_cipheralgorithm.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_serialization.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.padding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\padding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.types',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\types.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.algorithms',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\algorithms.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.modes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\modes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.constant_time',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\constant_time.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.hashes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\hashes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.pkcs12',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\pkcs12.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.ssh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\ssh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.certificate_transparency',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\certificate_transparency.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.extensions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\extensions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.general_name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\general_name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\oid.py',
|
||||
'PYMODULE'),
|
||||
('csv',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\csv.py',
|
||||
'PYMODULE'),
|
||||
('dataclasses',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dataclasses.py',
|
||||
'PYMODULE'),
|
||||
('datetime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\datetime.py',
|
||||
'PYMODULE'),
|
||||
('decimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\decimal.py',
|
||||
'PYMODULE'),
|
||||
('dis',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dis.py',
|
||||
'PYMODULE'),
|
||||
('email',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('email._encoded_words',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_encoded_words.py',
|
||||
'PYMODULE'),
|
||||
('email._header_value_parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_header_value_parser.py',
|
||||
'PYMODULE'),
|
||||
('email._parseaddr',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_parseaddr.py',
|
||||
'PYMODULE'),
|
||||
('email._policybase',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_policybase.py',
|
||||
'PYMODULE'),
|
||||
('email.base64mime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\base64mime.py',
|
||||
'PYMODULE'),
|
||||
('email.charset',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\charset.py',
|
||||
'PYMODULE'),
|
||||
('email.contentmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\contentmanager.py',
|
||||
'PYMODULE'),
|
||||
('email.encoders',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\encoders.py',
|
||||
'PYMODULE'),
|
||||
('email.errors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\errors.py',
|
||||
'PYMODULE'),
|
||||
('email.feedparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\feedparser.py',
|
||||
'PYMODULE'),
|
||||
('email.generator',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\generator.py',
|
||||
'PYMODULE'),
|
||||
('email.header',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\header.py',
|
||||
'PYMODULE'),
|
||||
('email.headerregistry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\headerregistry.py',
|
||||
'PYMODULE'),
|
||||
('email.iterators',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\iterators.py',
|
||||
'PYMODULE'),
|
||||
('email.message',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\message.py',
|
||||
'PYMODULE'),
|
||||
('email.parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\parser.py',
|
||||
'PYMODULE'),
|
||||
('email.policy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\policy.py',
|
||||
'PYMODULE'),
|
||||
('email.quoprimime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\quoprimime.py',
|
||||
'PYMODULE'),
|
||||
('email.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\utils.py',
|
||||
'PYMODULE'),
|
||||
('fractions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\fractions.py',
|
||||
'PYMODULE'),
|
||||
('ftplib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ftplib.py',
|
||||
'PYMODULE'),
|
||||
('getopt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getopt.py',
|
||||
'PYMODULE'),
|
||||
('getpass',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getpass.py',
|
||||
'PYMODULE'),
|
||||
('gettext',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gettext.py',
|
||||
'PYMODULE'),
|
||||
('gzip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gzip.py',
|
||||
'PYMODULE'),
|
||||
('hashlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hashlib.py',
|
||||
'PYMODULE'),
|
||||
('hmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hmac.py',
|
||||
'PYMODULE'),
|
||||
('http',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('http.client',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\client.py',
|
||||
'PYMODULE'),
|
||||
('http.cookiejar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookiejar.py',
|
||||
'PYMODULE'),
|
||||
('http.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('idna',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('idna.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\core.py',
|
||||
'PYMODULE'),
|
||||
('idna.idnadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\idnadata.py',
|
||||
'PYMODULE'),
|
||||
('idna.intranges',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\intranges.py',
|
||||
'PYMODULE'),
|
||||
('idna.package_data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\package_data.py',
|
||||
'PYMODULE'),
|
||||
('idna.uts46data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\uts46data.py',
|
||||
'PYMODULE'),
|
||||
('importlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap_external',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap_external.py',
|
||||
'PYMODULE'),
|
||||
('importlib._common',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_common.py',
|
||||
'PYMODULE'),
|
||||
('importlib.abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\abc.py',
|
||||
'PYMODULE'),
|
||||
('importlib.machinery',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\machinery.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\metadata.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\resources.py',
|
||||
'PYMODULE'),
|
||||
('importlib.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\util.py',
|
||||
'PYMODULE'),
|
||||
('inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\inspect.py',
|
||||
'PYMODULE'),
|
||||
('ipaddress',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ipaddress.py',
|
||||
'PYMODULE'),
|
||||
('json',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('json.decoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\decoder.py',
|
||||
'PYMODULE'),
|
||||
('json.encoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\encoder.py',
|
||||
'PYMODULE'),
|
||||
('json.scanner',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\scanner.py',
|
||||
'PYMODULE'),
|
||||
('logging',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\logging\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('lzma',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\lzma.py',
|
||||
'PYMODULE'),
|
||||
('mimetypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\mimetypes.py',
|
||||
'PYMODULE'),
|
||||
('netrc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\netrc.py',
|
||||
'PYMODULE'),
|
||||
('nturl2path',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\nturl2path.py',
|
||||
'PYMODULE'),
|
||||
('numbers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\numbers.py',
|
||||
'PYMODULE'),
|
||||
('opcode',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\opcode.py',
|
||||
'PYMODULE'),
|
||||
('optparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\optparse.py',
|
||||
'PYMODULE'),
|
||||
('pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pickle.py',
|
||||
'PYMODULE'),
|
||||
('pprint',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pprint.py',
|
||||
'PYMODULE'),
|
||||
('py_compile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\py_compile.py',
|
||||
'PYMODULE'),
|
||||
('queue',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\queue.py',
|
||||
'PYMODULE'),
|
||||
('quopri',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\quopri.py',
|
||||
'PYMODULE'),
|
||||
('random',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\random.py',
|
||||
'PYMODULE'),
|
||||
('requests',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('requests.__version__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__version__.py',
|
||||
'PYMODULE'),
|
||||
('requests._internal_utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\_internal_utils.py',
|
||||
'PYMODULE'),
|
||||
('requests.adapters',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\adapters.py',
|
||||
'PYMODULE'),
|
||||
('requests.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\api.py',
|
||||
'PYMODULE'),
|
||||
('requests.auth',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\auth.py',
|
||||
'PYMODULE'),
|
||||
('requests.certs',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\certs.py',
|
||||
'PYMODULE'),
|
||||
('requests.compat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\compat.py',
|
||||
'PYMODULE'),
|
||||
('requests.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('requests.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('requests.hooks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\hooks.py',
|
||||
'PYMODULE'),
|
||||
('requests.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\models.py',
|
||||
'PYMODULE'),
|
||||
('requests.packages',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\packages.py',
|
||||
'PYMODULE'),
|
||||
('requests.sessions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\sessions.py',
|
||||
'PYMODULE'),
|
||||
('requests.status_codes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\status_codes.py',
|
||||
'PYMODULE'),
|
||||
('requests.structures',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\structures.py',
|
||||
'PYMODULE'),
|
||||
('requests.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\utils.py',
|
||||
'PYMODULE'),
|
||||
('selectors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
|
||||
'PYMODULE'),
|
||||
('shlex',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shlex.py',
|
||||
'PYMODULE'),
|
||||
('shutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shutil.py',
|
||||
'PYMODULE'),
|
||||
('signal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\signal.py',
|
||||
'PYMODULE'),
|
||||
('socket',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\socket.py',
|
||||
'PYMODULE'),
|
||||
('ssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ssl.py',
|
||||
'PYMODULE'),
|
||||
('statistics',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\statistics.py',
|
||||
'PYMODULE'),
|
||||
('string',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\string.py',
|
||||
'PYMODULE'),
|
||||
('stringprep',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\stringprep.py',
|
||||
'PYMODULE'),
|
||||
('subprocess',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\subprocess.py',
|
||||
'PYMODULE'),
|
||||
('tarfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tarfile.py',
|
||||
'PYMODULE'),
|
||||
('tempfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tempfile.py',
|
||||
'PYMODULE'),
|
||||
('textwrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\textwrap.py',
|
||||
'PYMODULE'),
|
||||
('threading',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\threading.py',
|
||||
'PYMODULE'),
|
||||
('tracemalloc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tracemalloc.py',
|
||||
'PYMODULE'),
|
||||
('typing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\typing.py',
|
||||
'PYMODULE'),
|
||||
('urllib3',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._base_connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_base_connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._collections',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_collections.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._request_methods',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_request_methods.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_version.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connectionpool',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connectionpool.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.pyopenssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\pyopenssl.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.socks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\socks.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.fields',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\fields.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.filepost',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\filepost.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.poolmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\poolmanager.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.proxy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\proxy.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.request',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\request.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.retry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\retry.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_match_hostname',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_match_hostname.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssltransport',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssltransport.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.timeout',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\timeout.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.url',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\url.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\util.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.wait',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\wait.py',
|
||||
'PYMODULE'),
|
||||
('uu',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\uu.py',
|
||||
'PYMODULE'),
|
||||
('zipfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\zipfile.py',
|
||||
'PYMODULE')])
|
||||
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="Start" processorArchitecture="amd64" version="1.0.0.0"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||
</application>
|
||||
</compatibility>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
Binary file not shown.
@@ -1,41 +0,0 @@
|
||||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named 'org.python' - imported by copy (optional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed)
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,182 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\dist\\download.exe',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="download" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
||||
True,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\download.pkg',
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('download',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\download.py',
|
||||
'PYSOURCE'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1690298623,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')])
|
||||
@@ -1,172 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\download.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True},
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('download',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\download.py',
|
||||
'PYSOURCE'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA')],
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
@@ -1,878 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\download\\PYZ-00.pyz',
|
||||
[('__future__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\__future__.py',
|
||||
'PYMODULE'),
|
||||
('_compat_pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compat_pickle.py',
|
||||
'PYMODULE'),
|
||||
('_compression',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compression.py',
|
||||
'PYMODULE'),
|
||||
('_py_abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_py_abc.py',
|
||||
'PYMODULE'),
|
||||
('_pydecimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_pydecimal.py',
|
||||
'PYMODULE'),
|
||||
('_strptime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_strptime.py',
|
||||
'PYMODULE'),
|
||||
('_threading_local',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_threading_local.py',
|
||||
'PYMODULE'),
|
||||
('argparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\argparse.py',
|
||||
'PYMODULE'),
|
||||
('ast',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py',
|
||||
'PYMODULE'),
|
||||
('base64',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\base64.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('bisect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bisect.py',
|
||||
'PYMODULE'),
|
||||
('bz2',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bz2.py',
|
||||
'PYMODULE'),
|
||||
('calendar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\calendar.py',
|
||||
'PYMODULE'),
|
||||
('certifi',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('certifi.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\core.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\api.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.assets',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\assets\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.cd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\cd.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.constant',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\constant.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.legacy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\legacy.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\models.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\utils.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\version.py',
|
||||
'PYMODULE'),
|
||||
('configparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\configparser.py',
|
||||
'PYMODULE'),
|
||||
('contextlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextlib.py',
|
||||
'PYMODULE'),
|
||||
('contextvars',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextvars.py',
|
||||
'PYMODULE'),
|
||||
('copy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\copy.py',
|
||||
'PYMODULE'),
|
||||
('cryptography',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat._oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\_oid.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.backend',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\backend.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ciphers.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.cmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\cmac.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.decode_asn1',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\decode_asn1.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl._conditional',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\_conditional.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl.binding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\binding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_asymmetric.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._cipheralgorithm',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_cipheralgorithm.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_serialization.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.padding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\padding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.types',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\types.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.algorithms',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\algorithms.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.modes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\modes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.constant_time',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\constant_time.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.hashes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\hashes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.pkcs12',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\pkcs12.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.ssh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\ssh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.certificate_transparency',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\certificate_transparency.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.extensions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\extensions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.general_name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\general_name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\oid.py',
|
||||
'PYMODULE'),
|
||||
('csv',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\csv.py',
|
||||
'PYMODULE'),
|
||||
('dataclasses',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dataclasses.py',
|
||||
'PYMODULE'),
|
||||
('datetime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\datetime.py',
|
||||
'PYMODULE'),
|
||||
('decimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\decimal.py',
|
||||
'PYMODULE'),
|
||||
('dis',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dis.py',
|
||||
'PYMODULE'),
|
||||
('email',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('email._encoded_words',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_encoded_words.py',
|
||||
'PYMODULE'),
|
||||
('email._header_value_parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_header_value_parser.py',
|
||||
'PYMODULE'),
|
||||
('email._parseaddr',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_parseaddr.py',
|
||||
'PYMODULE'),
|
||||
('email._policybase',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_policybase.py',
|
||||
'PYMODULE'),
|
||||
('email.base64mime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\base64mime.py',
|
||||
'PYMODULE'),
|
||||
('email.charset',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\charset.py',
|
||||
'PYMODULE'),
|
||||
('email.contentmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\contentmanager.py',
|
||||
'PYMODULE'),
|
||||
('email.encoders',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\encoders.py',
|
||||
'PYMODULE'),
|
||||
('email.errors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\errors.py',
|
||||
'PYMODULE'),
|
||||
('email.feedparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\feedparser.py',
|
||||
'PYMODULE'),
|
||||
('email.generator',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\generator.py',
|
||||
'PYMODULE'),
|
||||
('email.header',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\header.py',
|
||||
'PYMODULE'),
|
||||
('email.headerregistry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\headerregistry.py',
|
||||
'PYMODULE'),
|
||||
('email.iterators',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\iterators.py',
|
||||
'PYMODULE'),
|
||||
('email.message',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\message.py',
|
||||
'PYMODULE'),
|
||||
('email.parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\parser.py',
|
||||
'PYMODULE'),
|
||||
('email.policy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\policy.py',
|
||||
'PYMODULE'),
|
||||
('email.quoprimime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\quoprimime.py',
|
||||
'PYMODULE'),
|
||||
('email.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\utils.py',
|
||||
'PYMODULE'),
|
||||
('fractions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\fractions.py',
|
||||
'PYMODULE'),
|
||||
('ftplib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ftplib.py',
|
||||
'PYMODULE'),
|
||||
('getopt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getopt.py',
|
||||
'PYMODULE'),
|
||||
('getpass',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getpass.py',
|
||||
'PYMODULE'),
|
||||
('gettext',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gettext.py',
|
||||
'PYMODULE'),
|
||||
('gzip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gzip.py',
|
||||
'PYMODULE'),
|
||||
('hashlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hashlib.py',
|
||||
'PYMODULE'),
|
||||
('hmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hmac.py',
|
||||
'PYMODULE'),
|
||||
('http',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('http.client',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\client.py',
|
||||
'PYMODULE'),
|
||||
('http.cookiejar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookiejar.py',
|
||||
'PYMODULE'),
|
||||
('http.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('idna',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('idna.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\core.py',
|
||||
'PYMODULE'),
|
||||
('idna.idnadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\idnadata.py',
|
||||
'PYMODULE'),
|
||||
('idna.intranges',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\intranges.py',
|
||||
'PYMODULE'),
|
||||
('idna.package_data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\package_data.py',
|
||||
'PYMODULE'),
|
||||
('idna.uts46data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\uts46data.py',
|
||||
'PYMODULE'),
|
||||
('importlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap_external',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap_external.py',
|
||||
'PYMODULE'),
|
||||
('importlib._common',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_common.py',
|
||||
'PYMODULE'),
|
||||
('importlib.abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\abc.py',
|
||||
'PYMODULE'),
|
||||
('importlib.machinery',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\machinery.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\metadata.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\resources.py',
|
||||
'PYMODULE'),
|
||||
('importlib.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\util.py',
|
||||
'PYMODULE'),
|
||||
('inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\inspect.py',
|
||||
'PYMODULE'),
|
||||
('ipaddress',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ipaddress.py',
|
||||
'PYMODULE'),
|
||||
('json',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('json.decoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\decoder.py',
|
||||
'PYMODULE'),
|
||||
('json.encoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\encoder.py',
|
||||
'PYMODULE'),
|
||||
('json.scanner',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\scanner.py',
|
||||
'PYMODULE'),
|
||||
('logging',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\logging\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('lzma',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\lzma.py',
|
||||
'PYMODULE'),
|
||||
('mimetypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\mimetypes.py',
|
||||
'PYMODULE'),
|
||||
('netrc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\netrc.py',
|
||||
'PYMODULE'),
|
||||
('nturl2path',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\nturl2path.py',
|
||||
'PYMODULE'),
|
||||
('numbers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\numbers.py',
|
||||
'PYMODULE'),
|
||||
('opcode',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\opcode.py',
|
||||
'PYMODULE'),
|
||||
('optparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\optparse.py',
|
||||
'PYMODULE'),
|
||||
('pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pickle.py',
|
||||
'PYMODULE'),
|
||||
('pprint',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pprint.py',
|
||||
'PYMODULE'),
|
||||
('py_compile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\py_compile.py',
|
||||
'PYMODULE'),
|
||||
('queue',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\queue.py',
|
||||
'PYMODULE'),
|
||||
('quopri',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\quopri.py',
|
||||
'PYMODULE'),
|
||||
('random',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\random.py',
|
||||
'PYMODULE'),
|
||||
('requests',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('requests.__version__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__version__.py',
|
||||
'PYMODULE'),
|
||||
('requests._internal_utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\_internal_utils.py',
|
||||
'PYMODULE'),
|
||||
('requests.adapters',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\adapters.py',
|
||||
'PYMODULE'),
|
||||
('requests.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\api.py',
|
||||
'PYMODULE'),
|
||||
('requests.auth',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\auth.py',
|
||||
'PYMODULE'),
|
||||
('requests.certs',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\certs.py',
|
||||
'PYMODULE'),
|
||||
('requests.compat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\compat.py',
|
||||
'PYMODULE'),
|
||||
('requests.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('requests.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('requests.hooks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\hooks.py',
|
||||
'PYMODULE'),
|
||||
('requests.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\models.py',
|
||||
'PYMODULE'),
|
||||
('requests.packages',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\packages.py',
|
||||
'PYMODULE'),
|
||||
('requests.sessions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\sessions.py',
|
||||
'PYMODULE'),
|
||||
('requests.status_codes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\status_codes.py',
|
||||
'PYMODULE'),
|
||||
('requests.structures',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\structures.py',
|
||||
'PYMODULE'),
|
||||
('requests.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\utils.py',
|
||||
'PYMODULE'),
|
||||
('selectors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
|
||||
'PYMODULE'),
|
||||
('shlex',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shlex.py',
|
||||
'PYMODULE'),
|
||||
('shutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shutil.py',
|
||||
'PYMODULE'),
|
||||
('signal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\signal.py',
|
||||
'PYMODULE'),
|
||||
('socket',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\socket.py',
|
||||
'PYMODULE'),
|
||||
('ssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ssl.py',
|
||||
'PYMODULE'),
|
||||
('statistics',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\statistics.py',
|
||||
'PYMODULE'),
|
||||
('string',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\string.py',
|
||||
'PYMODULE'),
|
||||
('stringprep',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\stringprep.py',
|
||||
'PYMODULE'),
|
||||
('subprocess',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\subprocess.py',
|
||||
'PYMODULE'),
|
||||
('tarfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tarfile.py',
|
||||
'PYMODULE'),
|
||||
('tempfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tempfile.py',
|
||||
'PYMODULE'),
|
||||
('textwrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\textwrap.py',
|
||||
'PYMODULE'),
|
||||
('threading',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\threading.py',
|
||||
'PYMODULE'),
|
||||
('tracemalloc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tracemalloc.py',
|
||||
'PYMODULE'),
|
||||
('typing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\typing.py',
|
||||
'PYMODULE'),
|
||||
('urllib3',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._base_connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_base_connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._collections',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_collections.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._request_methods',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_request_methods.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_version.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connectionpool',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connectionpool.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.pyopenssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\pyopenssl.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.socks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\socks.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.fields',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\fields.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.filepost',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\filepost.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.poolmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\poolmanager.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.proxy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\proxy.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.request',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\request.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.retry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\retry.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_match_hostname',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_match_hostname.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssltransport',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssltransport.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.timeout',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\timeout.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.url',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\url.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\util.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.wait',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\wait.py',
|
||||
'PYMODULE'),
|
||||
('uu',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\uu.py',
|
||||
'PYMODULE'),
|
||||
('zipfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\zipfile.py',
|
||||
'PYMODULE')])
|
||||
Binary file not shown.
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="download" processorArchitecture="amd64" version="1.0.0.0"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||
</application>
|
||||
</compatibility>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
@@ -1,41 +0,0 @@
|
||||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named 'org.python' - imported by copy (optional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,182 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\dist\\first_run.exe',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
['C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\icons8-konsole-simple-small-70.ico'],
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="first_run" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
||||
True,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\first_run.pkg',
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('first_run',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\first_run.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1690299643,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')])
|
||||
@@ -1,172 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\first_run.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True},
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('first_run',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\first_run.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA')],
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
@@ -1,878 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\first_run\\PYZ-00.pyz',
|
||||
[('__future__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\__future__.py',
|
||||
'PYMODULE'),
|
||||
('_compat_pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compat_pickle.py',
|
||||
'PYMODULE'),
|
||||
('_compression',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_compression.py',
|
||||
'PYMODULE'),
|
||||
('_py_abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_py_abc.py',
|
||||
'PYMODULE'),
|
||||
('_pydecimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_pydecimal.py',
|
||||
'PYMODULE'),
|
||||
('_strptime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_strptime.py',
|
||||
'PYMODULE'),
|
||||
('_threading_local',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\_threading_local.py',
|
||||
'PYMODULE'),
|
||||
('argparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\argparse.py',
|
||||
'PYMODULE'),
|
||||
('ast',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py',
|
||||
'PYMODULE'),
|
||||
('base64',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\base64.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('bcrypt.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('bisect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bisect.py',
|
||||
'PYMODULE'),
|
||||
('bz2',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\bz2.py',
|
||||
'PYMODULE'),
|
||||
('calendar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\calendar.py',
|
||||
'PYMODULE'),
|
||||
('certifi',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('certifi.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\core.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\api.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.assets',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\assets\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.cd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\cd.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.constant',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\constant.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.legacy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\legacy.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\models.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\utils.py',
|
||||
'PYMODULE'),
|
||||
('charset_normalizer.version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\version.py',
|
||||
'PYMODULE'),
|
||||
('configparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\configparser.py',
|
||||
'PYMODULE'),
|
||||
('contextlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextlib.py',
|
||||
'PYMODULE'),
|
||||
('contextvars',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\contextvars.py',
|
||||
'PYMODULE'),
|
||||
('copy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\copy.py',
|
||||
'PYMODULE'),
|
||||
('cryptography',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.__about__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\__about__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat._oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\_oid.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.backend',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\backend.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ciphers.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.cmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\cmac.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.decode_asn1',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\decode_asn1.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.backends.openssl.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl._conditional',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\_conditional.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.bindings.openssl.binding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\openssl\\binding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_asymmetric.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._cipheralgorithm',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_cipheralgorithm.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives._serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\_serialization.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.dsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\dsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ec',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ec.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.ed448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\ed448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.padding',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\padding.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.rsa',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\rsa.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.types',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\types.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x25519',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x25519.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.asymmetric.x448',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\asymmetric\\x448.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.aead',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\aead.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.algorithms',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\algorithms.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.ciphers.modes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\ciphers\\modes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.constant_time',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\constant_time.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.hashes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\hashes.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.pkcs12',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\pkcs12.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.hazmat.primitives.serialization.ssh',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\primitives\\serialization\\ssh.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\utils.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.base',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\base.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.certificate_transparency',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\certificate_transparency.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.extensions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\extensions.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.general_name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\general_name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.name',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\name.py',
|
||||
'PYMODULE'),
|
||||
('cryptography.x509.oid',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\x509\\oid.py',
|
||||
'PYMODULE'),
|
||||
('csv',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\csv.py',
|
||||
'PYMODULE'),
|
||||
('dataclasses',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dataclasses.py',
|
||||
'PYMODULE'),
|
||||
('datetime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\datetime.py',
|
||||
'PYMODULE'),
|
||||
('decimal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\decimal.py',
|
||||
'PYMODULE'),
|
||||
('dis',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\dis.py',
|
||||
'PYMODULE'),
|
||||
('email',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('email._encoded_words',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_encoded_words.py',
|
||||
'PYMODULE'),
|
||||
('email._header_value_parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_header_value_parser.py',
|
||||
'PYMODULE'),
|
||||
('email._parseaddr',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_parseaddr.py',
|
||||
'PYMODULE'),
|
||||
('email._policybase',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\_policybase.py',
|
||||
'PYMODULE'),
|
||||
('email.base64mime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\base64mime.py',
|
||||
'PYMODULE'),
|
||||
('email.charset',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\charset.py',
|
||||
'PYMODULE'),
|
||||
('email.contentmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\contentmanager.py',
|
||||
'PYMODULE'),
|
||||
('email.encoders',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\encoders.py',
|
||||
'PYMODULE'),
|
||||
('email.errors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\errors.py',
|
||||
'PYMODULE'),
|
||||
('email.feedparser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\feedparser.py',
|
||||
'PYMODULE'),
|
||||
('email.generator',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\generator.py',
|
||||
'PYMODULE'),
|
||||
('email.header',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\header.py',
|
||||
'PYMODULE'),
|
||||
('email.headerregistry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\headerregistry.py',
|
||||
'PYMODULE'),
|
||||
('email.iterators',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\iterators.py',
|
||||
'PYMODULE'),
|
||||
('email.message',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\message.py',
|
||||
'PYMODULE'),
|
||||
('email.parser',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\parser.py',
|
||||
'PYMODULE'),
|
||||
('email.policy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\policy.py',
|
||||
'PYMODULE'),
|
||||
('email.quoprimime',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\quoprimime.py',
|
||||
'PYMODULE'),
|
||||
('email.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\email\\utils.py',
|
||||
'PYMODULE'),
|
||||
('fractions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\fractions.py',
|
||||
'PYMODULE'),
|
||||
('ftplib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ftplib.py',
|
||||
'PYMODULE'),
|
||||
('getopt',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getopt.py',
|
||||
'PYMODULE'),
|
||||
('getpass',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\getpass.py',
|
||||
'PYMODULE'),
|
||||
('gettext',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gettext.py',
|
||||
'PYMODULE'),
|
||||
('gzip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\gzip.py',
|
||||
'PYMODULE'),
|
||||
('hashlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hashlib.py',
|
||||
'PYMODULE'),
|
||||
('hmac',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hmac.py',
|
||||
'PYMODULE'),
|
||||
('http',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('http.client',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\client.py',
|
||||
'PYMODULE'),
|
||||
('http.cookiejar',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookiejar.py',
|
||||
'PYMODULE'),
|
||||
('http.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\http\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('idna',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('idna.core',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\core.py',
|
||||
'PYMODULE'),
|
||||
('idna.idnadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\idnadata.py',
|
||||
'PYMODULE'),
|
||||
('idna.intranges',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\intranges.py',
|
||||
'PYMODULE'),
|
||||
('idna.package_data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\package_data.py',
|
||||
'PYMODULE'),
|
||||
('idna.uts46data',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\idna\\uts46data.py',
|
||||
'PYMODULE'),
|
||||
('importlib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap_external',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_bootstrap_external.py',
|
||||
'PYMODULE'),
|
||||
('importlib._common',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\_common.py',
|
||||
'PYMODULE'),
|
||||
('importlib.abc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\abc.py',
|
||||
'PYMODULE'),
|
||||
('importlib.machinery',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\machinery.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\metadata.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\resources.py',
|
||||
'PYMODULE'),
|
||||
('importlib.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\importlib\\util.py',
|
||||
'PYMODULE'),
|
||||
('inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\inspect.py',
|
||||
'PYMODULE'),
|
||||
('ipaddress',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ipaddress.py',
|
||||
'PYMODULE'),
|
||||
('json',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('json.decoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\decoder.py',
|
||||
'PYMODULE'),
|
||||
('json.encoder',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\encoder.py',
|
||||
'PYMODULE'),
|
||||
('json.scanner',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\json\\scanner.py',
|
||||
'PYMODULE'),
|
||||
('logging',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\logging\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('lzma',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\lzma.py',
|
||||
'PYMODULE'),
|
||||
('mimetypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\mimetypes.py',
|
||||
'PYMODULE'),
|
||||
('netrc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\netrc.py',
|
||||
'PYMODULE'),
|
||||
('nturl2path',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\nturl2path.py',
|
||||
'PYMODULE'),
|
||||
('numbers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\numbers.py',
|
||||
'PYMODULE'),
|
||||
('opcode',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\opcode.py',
|
||||
'PYMODULE'),
|
||||
('optparse',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\optparse.py',
|
||||
'PYMODULE'),
|
||||
('pickle',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pickle.py',
|
||||
'PYMODULE'),
|
||||
('pprint',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\pprint.py',
|
||||
'PYMODULE'),
|
||||
('py_compile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\py_compile.py',
|
||||
'PYMODULE'),
|
||||
('queue',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\queue.py',
|
||||
'PYMODULE'),
|
||||
('quopri',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\quopri.py',
|
||||
'PYMODULE'),
|
||||
('random',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\random.py',
|
||||
'PYMODULE'),
|
||||
('requests',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('requests.__version__',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\__version__.py',
|
||||
'PYMODULE'),
|
||||
('requests._internal_utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\_internal_utils.py',
|
||||
'PYMODULE'),
|
||||
('requests.adapters',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\adapters.py',
|
||||
'PYMODULE'),
|
||||
('requests.api',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\api.py',
|
||||
'PYMODULE'),
|
||||
('requests.auth',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\auth.py',
|
||||
'PYMODULE'),
|
||||
('requests.certs',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\certs.py',
|
||||
'PYMODULE'),
|
||||
('requests.compat',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\compat.py',
|
||||
'PYMODULE'),
|
||||
('requests.cookies',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\cookies.py',
|
||||
'PYMODULE'),
|
||||
('requests.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('requests.hooks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\hooks.py',
|
||||
'PYMODULE'),
|
||||
('requests.models',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\models.py',
|
||||
'PYMODULE'),
|
||||
('requests.packages',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\packages.py',
|
||||
'PYMODULE'),
|
||||
('requests.sessions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\sessions.py',
|
||||
'PYMODULE'),
|
||||
('requests.status_codes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\status_codes.py',
|
||||
'PYMODULE'),
|
||||
('requests.structures',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\structures.py',
|
||||
'PYMODULE'),
|
||||
('requests.utils',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\requests\\utils.py',
|
||||
'PYMODULE'),
|
||||
('selectors',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
|
||||
'PYMODULE'),
|
||||
('shlex',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shlex.py',
|
||||
'PYMODULE'),
|
||||
('shutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\shutil.py',
|
||||
'PYMODULE'),
|
||||
('signal',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\signal.py',
|
||||
'PYMODULE'),
|
||||
('socket',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\socket.py',
|
||||
'PYMODULE'),
|
||||
('ssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ssl.py',
|
||||
'PYMODULE'),
|
||||
('statistics',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\statistics.py',
|
||||
'PYMODULE'),
|
||||
('string',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\string.py',
|
||||
'PYMODULE'),
|
||||
('stringprep',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\stringprep.py',
|
||||
'PYMODULE'),
|
||||
('subprocess',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\subprocess.py',
|
||||
'PYMODULE'),
|
||||
('tarfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tarfile.py',
|
||||
'PYMODULE'),
|
||||
('tempfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tempfile.py',
|
||||
'PYMODULE'),
|
||||
('textwrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\textwrap.py',
|
||||
'PYMODULE'),
|
||||
('threading',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\threading.py',
|
||||
'PYMODULE'),
|
||||
('tracemalloc',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\tracemalloc.py',
|
||||
'PYMODULE'),
|
||||
('typing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\typing.py',
|
||||
'PYMODULE'),
|
||||
('urllib3',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._base_connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_base_connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._collections',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_collections.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._request_methods',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_request_methods.py',
|
||||
'PYMODULE'),
|
||||
('urllib3._version',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\_version.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.connectionpool',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\connectionpool.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.pyopenssl',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\pyopenssl.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.contrib.socks',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\contrib\\socks.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.exceptions',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.fields',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\fields.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.filepost',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\filepost.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.poolmanager',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\poolmanager.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.connection',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\connection.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.proxy',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\proxy.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.request',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\request.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.response',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\response.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.retry',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\retry.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssl_match_hostname',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssl_match_hostname.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.ssltransport',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\ssltransport.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.timeout',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\timeout.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.url',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\url.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.util',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\util.py',
|
||||
'PYMODULE'),
|
||||
('urllib3.util.wait',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\urllib3\\util\\wait.py',
|
||||
'PYMODULE'),
|
||||
('uu',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\uu.py',
|
||||
'PYMODULE'),
|
||||
('zipfile',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\lib\\zipfile.py',
|
||||
'PYMODULE')])
|
||||
Binary file not shown.
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="first_run" processorArchitecture="amd64" version="1.0.0.0"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||
</application>
|
||||
</compatibility>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
@@ -1,41 +0,0 @@
|
||||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named 'org.python' - imported by copy (optional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,254 +0,0 @@
|
||||
('C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\dist\\main.exe',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="main" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
||||
True,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\main.pkg',
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('main',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('pyexpat.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_ctypes.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_elementtree.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_elementtree.pyd',
|
||||
'EXTENSION'),
|
||||
('psutil\\_psutil_windows.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||
'EXTENSION'),
|
||||
('_uuid.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
||||
'EXTENSION'),
|
||||
('_mysql_connector.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('nacl\\_sodium.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
||||
'EXTENSION'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libffi-7.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('libmysql.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libmysql.dll',
|
||||
'BINARY'),
|
||||
('libssl-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libssl-3-x64.dll',
|
||||
'BINARY'),
|
||||
('MSVCP140.dll', 'C:\\Windows\\system32\\MSVCP140.dll', 'BINARY'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libcrypto-3-x64.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('nacl\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1691952642,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')])
|
||||
@@ -1,245 +0,0 @@
|
||||
('C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\main.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True},
|
||||
[('PYZ-00.pyz',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod04_pywin32',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('main',
|
||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
||||
'PYSOURCE'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
('_bz2.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('pyexpat.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_ssl.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('_hashlib.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_ctypes.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
||||
'EXTENSION'),
|
||||
('_queue.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('unicodedata.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('_elementtree.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_elementtree.pyd',
|
||||
'EXTENSION'),
|
||||
('psutil\\_psutil_windows.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||
'EXTENSION'),
|
||||
('_uuid.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
||||
'EXTENSION'),
|
||||
('_mysql_connector.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_mysql_connector.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\psycopg2\\_psycopg.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_cffi_backend.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||
'EXTENSION'),
|
||||
('bcrypt\\_bcrypt.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
('nacl\\_sodium.pyd',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
||||
'EXTENSION'),
|
||||
('libssl-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-1_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
||||
'BINARY'),
|
||||
('libffi-7.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('python3.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
||||
'BINARY'),
|
||||
('libmysql.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libmysql.dll',
|
||||
'BINARY'),
|
||||
('libssl-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libssl-3-x64.dll',
|
||||
'BINARY'),
|
||||
('MSVCP140.dll', 'C:\\Windows\\system32\\MSVCP140.dll', 'BINARY'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
'BINARY'),
|
||||
('libcrypto-3-x64.dll',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\libcrypto-3-x64.dll',
|
||||
'BINARY'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\METADATA',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
||||
'DATA'),
|
||||
('certifi\\cacert.pem',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('nacl\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\RECORD',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
||||
'DATA'),
|
||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'c:\\users\\sebastian '
|
||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
||||
'DATA'),
|
||||
('certifi\\py.typed',
|
||||
'C:\\Users\\Sebastian '
|
||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
||||
'DATA')],
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity type="win32" name="main" processorArchitecture="amd64" version="1.0.0.0"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<security>
|
||||
<requestedPrivileges>
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||||
</application>
|
||||
</compatibility>
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
</assembly>
|
||||
Binary file not shown.
@@ -1,76 +0,0 @@
|
||||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level), psutil._pslinux (optional)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed), psutil (optional)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named pyimod02_importers - imported by C:\Users\Sebastian Serfling\PycharmProjects\server-info\venv\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||
missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional)
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional), multiprocessing.util (delayed)
|
||||
missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level)
|
||||
missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level)
|
||||
missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named termios - imported by getpass (optional), psutil._compat (delayed, optional)
|
||||
missing module named multiprocessing.freeze_support - imported by multiprocessing (top-level), C:\Users\Sebastian Serfling\PycharmProjects\server-info\main.py (top-level)
|
||||
missing module named multiprocessing.Queue - imported by multiprocessing (delayed), cpuinfo.cpuinfo (delayed)
|
||||
missing module named multiprocessing.Process - imported by multiprocessing (delayed), cpuinfo.cpuinfo (delayed)
|
||||
missing module named _winreg - imported by platform (delayed, optional), cpuinfo.cpuinfo (delayed, optional)
|
||||
missing module named vms_lib - imported by platform (delayed, optional)
|
||||
missing module named java - imported by platform (delayed)
|
||||
missing module named psutil._psutil_aix - imported by psutil (top-level), psutil._psaix (top-level)
|
||||
missing module named psutil._psutil_sunos - imported by psutil (top-level), psutil._pssunos (top-level)
|
||||
missing module named psutil._psutil_bsd - imported by psutil (top-level), psutil._psbsd (top-level)
|
||||
missing module named psutil._psutil_linux - imported by psutil (top-level), psutil._pslinux (top-level)
|
||||
missing module named psutil._psutil_osx - imported by psutil (conditional), psutil._psposix (conditional), psutil._psosx (top-level)
|
||||
missing module named fcntl - imported by paramiko.agent (delayed), psutil._compat (delayed, optional)
|
||||
missing module named dummy_threading - imported by requests.cookies (optional), psutil._compat (optional)
|
||||
missing module named _curses - imported by curses (top-level), curses.has_key (top-level)
|
||||
missing module named httplib - imported by mysql.connector.fabric.connection (conditional, optional)
|
||||
missing module named urllib2 - imported by mysql.connector.fabric.connection (optional)
|
||||
missing module named xmlrpclib - imported by mysql.connector.fabric.connection (optional)
|
||||
missing module named Queue - imported by sshtunnel (conditional), mysql.connector.pooling (optional)
|
||||
missing module named ConfigParser - imported by mysql.connector.optionfiles (conditional)
|
||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
||||
missing module named SocketServer - imported by sshtunnel (conditional)
|
||||
missing module named invoke - imported by paramiko.config (optional)
|
||||
missing module named 'pyasn1.codec' - imported by paramiko.ssh_gss (delayed)
|
||||
missing module named pyasn1 - imported by paramiko.ssh_gss (delayed)
|
||||
missing module named sspi - imported by paramiko.ssh_gss (optional)
|
||||
missing module named sspicon - imported by paramiko.ssh_gss (optional)
|
||||
missing module named pywintypes - imported by paramiko.ssh_gss (optional)
|
||||
missing module named gssapi - imported by paramiko.ssh_gss (optional)
|
||||
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
# from Controller import adcontroller_export, exchange_export, rds_export, smtp_export, zammad
|
||||
from Controller import adcontroller_export, exchange_export, rds_export, smtp_export, zammad
|
||||
import random
|
||||
import subprocess
|
||||
import socket
|
||||
|
||||
Reference in New Issue
Block a user