forked from netwrix/pingcastle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config
43 lines (43 loc) · 2.86 KB
/
app.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="LicenseSettings" type="PingCastle.ADHealthCheckingLicenseSettings, PingCastle" />
<section name="encryptionSettings" type="PingCastle.Healthcheck.EncryptionSettings, PingCastle" />
<section name="honeyPotSettings" type="PingCastle.Healthcheck.HoneyPotSettings, PingCastle" />
</configSections>
<!-- Compatibility with all .Net version starting from 3.0 (for WCF) -->
<startup>
<supportedRuntime version="v4.0"/>
<supportedRuntime version="v2.0.50727"/>
</startup>
<!-- Windows XP or .Net 3.0 supports only the class RijndaelManaged which is not fips compliant -->
<runtime>
<enforceFIPSPolicy enabled="false"/>
</runtime>
<LicenseSettings
license="" />
<!-- honeypot settings -->
<honeyPotSettings>
<HoneyPots>
<!-- <HoneyPot samAccountName="HoneyPot"/>
<HoneyPot samAccountName="HoneyPotInexistant"/>-->
</HoneyPots>
</honeyPotSettings>
<!-- Encryption seeting to protect the report for a loss of confidentiality -->
<!-- Change the encryption key ! -->
<!-- Use the switch -generate-key to generate keys -->
<encryptionSettings encryptionKey="default">
<RSAKeys>
<KeySettings name="default" publicKey="<RSAKeyValue><Modulus>rXQQDs1PVbp1L7o4DwM51HJIDyXpDIBCg1PEkRy6jNJxCYxwbm9vK9ma92IQiT642gYsbb7N/6VW21xgukULMizAFVCfyofkQzK7mI8CH4HsQB+XjKVGK8ONDO9zVYwyGZBcz0pRjnm9eDj6vPpYOZqeAgr1n7aqBNgZPZolYoc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>"
privateKey="<RSAKeyValue><Modulus>rXQQDs1PVbp1L7o4DwM51HJIDyXpDIBCg1PEkRy6jNJxCYxwbm9vK9ma92IQiT642gYsbb7N/6VW21xgukULMizAFVCfyofkQzK7mI8CH4HsQB+XjKVGK8ONDO9zVYwyGZBcz0pRjnm9eDj6vPpYOZqeAgr1n7aqBNgZPZolYoc=</Modulus><Exponent>AQAB</Exponent><P>xEXa3R3dmyxV2rLlhKHOuuhJi+LvSgkO/Ddlia7BqrTnPZ72SQUFqbd/6kcYo87KKR9rL/60lb1AH3Ms5o/whw==</P><Q>4jyDCyiXmWgtY+bzZKE5v1estW/s2vwcZ3xcGoGnAkIhOLiEZnK6atQSgb32l8h06P2KCZWc01IgRk0ihvV+AQ==</Q><DP>vyhd6l+NFvWORKtZ+Nxy8P0NrG2AqvW5n5IAlaEbxDvev9hTfHiktFAhCDboW5oqsPSFu7/xd6lTi43sXD4yfw==</DP><DQ>4i5fURufHOcTYiq2saeipVLRP4ALzA97kla5emKfBtn4fs2yyP3ws/ccHYw+6hamE33PsK9cX8VesQpS95yeAQ==</DQ><InverseQ>rQiTcmkCvJHI4e8qDEQS1Efs/1j9xB9fbn3J0vNngWbPjdrY8YCOWu8SoAVzCeZ+WBR7FwOut0yL8/pAERlA0A==</InverseQ><D>DmYqqRfpJJxAezBR1Ak4BUdhbQSAJr4FB4LuN/+zCtqzcI/8i2Zry6+aWjwFVGdlEBBgItIqprTSk45FJ2Fw7tvOBso+VEOAxNYe8Rpw1RgZeN5fRGm5O685SjNawHA9potK8v2R5DzpWgLcSEqkGYg4clh1Y/s0Qb+OW2NP+gE=</D></RSAKeyValue>"/>
</RSAKeys>
</encryptionSettings>
<!-- Email settings -->
<system.net>
<mailSettings>
<smtp from="[email protected]" deliveryMethod="Network">
<network host="stmp.server.com" port="25" userName="username" password="password"/>
</smtp>
</mailSettings>
</system.net>
</configuration>