mirror of
https://github.com/NetSPI/PowerHuntShares.git
synced 2025-07-01 06:58:44 +02:00
Added sample configs.
Added sample configs.
This commit is contained in:
46
Scripts/SampleConfigs/SiteManager.xml
Normal file
46
Scripts/SampleConfigs/SiteManager.xml
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<FileZilla3>
|
||||
<Servers>
|
||||
<Server>
|
||||
<Host>ftp.example.com</Host>
|
||||
<Port>21</Port>
|
||||
<Protocol>0</Protocol> <!-- 0 for FTP, 1 for SFTP -->
|
||||
<Type>0</Type> <!-- 0 for normal FTP, 1 for FTP over TLS/SSL -->
|
||||
<User>username</User>
|
||||
<Pass encoding="base64">SGVsbG9QYXNzd29yZA==</Pass> <!-- Password encoded in base64 -->
|
||||
<Logontype>1</Logontype> <!-- 0 for anonymous, 1 for normal -->
|
||||
<TimezoneOffset>0</TimezoneOffset>
|
||||
<PasvMode>MODE_DEFAULT</PasvMode> <!-- Default is passive mode -->
|
||||
<MaximumMultipleConnections>0</MaximumMultipleConnections>
|
||||
<EncodingType>Auto</EncodingType>
|
||||
<BypassProxy>0</BypassProxy>
|
||||
<Name>My FTP Site</Name>
|
||||
<Comments>Sample FTP site for demonstration</Comments>
|
||||
<LocalDir/>
|
||||
<RemoteDir/>
|
||||
<SyncBrowsing>0</SyncBrowsing>
|
||||
<DirectoryComparison>0</DirectoryComparison>
|
||||
</Server>
|
||||
|
||||
<Server>
|
||||
<Host>sftp.example.com</Host>
|
||||
<Port>22</Port>
|
||||
<Protocol>1</Protocol> <!-- 1 for SFTP -->
|
||||
<Type>1</Type> <!-- 1 for explicit FTP over TLS -->
|
||||
<User>sftpuser</User>
|
||||
<Pass encoding="base64">SGVsbG9QYXNzd29yZA==</Pass>
|
||||
<Logontype>1</Logontype>
|
||||
<TimezoneOffset>0</TimezoneOffset>
|
||||
<PasvMode>MODE_DEFAULT</PasvMode>
|
||||
<MaximumMultipleConnections>1</MaximumMultipleConnections>
|
||||
<EncodingType>Auto</EncodingType>
|
||||
<BypassProxy>0</BypassProxy>
|
||||
<Name>My SFTP Site</Name>
|
||||
<Comments>Sample SFTP site</Comments>
|
||||
<LocalDir/>
|
||||
<RemoteDir/>
|
||||
<SyncBrowsing>0</SyncBrowsing>
|
||||
<DirectoryComparison>0</DirectoryComparison>
|
||||
</Server>
|
||||
</Servers>
|
||||
</FileZilla3>
|
Reference in New Issue
Block a user