OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
conf
/
install
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/03/2023 08:07:15 AM
rwxr-xr-x
📄
check_postinstall.sh
908 bytes
02/03/2023 07:34:18 AM
rw-r--r--
📄
dbsetup.sh
1.89 KB
02/03/2023 07:34:18 AM
rwxr-xr-x
📁
dbupgrade_tool
-
02/03/2023 07:34:18 AM
rwxr-xr-x
📄
financial.sh
1.58 KB
02/03/2023 07:34:22 AM
rwxr-xr-x
📁
html2ps-1.0b4
-
02/03/2023 07:34:18 AM
rwxr-xr-x
📁
install_perl
-
02/03/2023 07:34:18 AM
rwxr-xr-x
📁
reference
-
02/03/2023 07:34:18 AM
rwxr-xr-x
📁
upgrade
-
02/03/2023 07:34:18 AM
rwxr-xr-x
Editing: financial.sh
Close
echo "Dropping Existing Finyr Functions" mysql mysql -f -u root -pRdcub0t@22 << ! drop function if exists finyr; drop function if exists finqtr; drop function if exists finmth; drop function if exists finwk; drop function if exists mthyr; drop function if exists yrmth; drop function if exists gep_days; drop function if exists getrange; drop function if exists yrqtr; drop function if exists yrhalf; drop function if exists rdweek; delete from func where name ='finyr'; delete from func where name ='finqtr'; delete from func where name ='finmth'; delete from func where name ='finwk'; delete from func where name ='mthyr'; delete from func where name ='yrmth'; delete from func where name ='gep_days'; delete from func where name ='getrange'; delete from func where name ='yrqtr'; delete from func where name ='yrhalf'; delete from func where name ='rdweek'; ! echo "Creating Finyr Functions" mysql mysql -f -u root -pRdcub0t@22 << ! create function finyr returns string soname 'finyr.so'; create function finqtr returns int soname 'finyr.so'; create function finmth returns int soname 'finyr.so'; create function finwk returns int soname 'finyr.so'; create function mthyr returns string soname 'finyr.so'; create function yrmth returns string soname 'finyr.so'; create function gep_days returns int soname 'gep_days.so'; create function getrange returns string soname 'finyr.so'; create function yrqtr returns string soname 'finyr.so'; create function yrhalf returns string soname 'finyr.so'; create function rdweek returns string soname 'finyr.so'; flush privileges; !