Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Jonas
ISPConfig 3
Commits
43e1d025
Commit
43e1d025
authored
Jul 16, 2018
by
Till Brehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extended IDS whitelist.
Fixed connection issue in mail account import tool.
parent
88240a91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
interface/web/tools/import_ispconfig.php
interface/web/tools/import_ispconfig.php
+13
-1
security/ids.whitelist
security/ids.whitelist
+1
-0
No files found.
interface/web/tools/import_ispconfig.php
View file @
43e1d025
...
...
@@ -109,10 +109,22 @@ if(isset($_POST['connected'])) {
try
{
//* Allow connections to self signed SSL certs
$context
=
stream_context_create
(
array
(
'ssl'
=>
array
(
'verify_peer'
=>
false
,
'verify_peer_name'
=>
false
,
'allow_self_signed'
=>
true
)
)
);
$client
=
new
SoapClient
(
null
,
array
(
'location'
=>
$_POST
[
'remote_server'
],
'uri'
=>
$_POST
[
'remote_server'
]
.
'/index.php'
,
'trace'
=>
1
,
'exceptions'
=>
1
));
'exceptions'
=>
1
,
'stream_context'
=>
$context
));
if
(
!
isset
(
$remote_session_id
))
$remote_session_id
=
$_POST
[
'remote_session_id'
];
...
...
security/ids.whitelist
View file @
43e1d025
...
...
@@ -41,6 +41,7 @@ admin:/capp.php:SESSION.s.module.nav.1.items.0.title
admin:/sites/web_vhost_subdomain_edit.php:POST.php_open_basedir
admin:/sites/web_domain_edit.php:POST.php_open_basedir
admin:/sites/web_domain_edit.php:POST.apache_directives
admin:/sites/web_vhost_domain_edit.php:POST.nginx_directives
user:/sites/shell_user_edit.php:POST.ssh_rsa
user:/sites/cron_edit.php:POST.command
admin:/admin/server_config_edit.php:POST.jailkit_chroot_app_programs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment