Register for your free account! | Forgot your password?

You last visited: Today at 08:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] New Flyff Website

Discussion on [Release] New Flyff Website within the Flyff PServer Guides & Releases forum part of the Flyff Private Server category.

Reply
 
Old 11/26/2016, 05:42   #61
 
aoyamananami's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 243
Received Thanks: 11
what file contain this





how about this one..

aoyamananami is offline  
Old 11/27/2016, 16:13   #62
 
elite*gold: 130
Join Date: Sep 2008
Posts: 30
Received Thanks: 2
Got the same error as aoyamananami
please help
ImEno is offline  
Old 04/11/2017, 13:27   #63
 
yazuka21's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 305
Received Thanks: 19
Quote:
Originally Posted by aoyamananami View Post
what file contain this





how about this one..



Help with this please..

Quote:
Originally Posted by xsrf View Post
Hiermit Release ich die fertige Version meines Flyff CMS.

Examples:

Aqua Flyff -
Sugbo Flyff -
Erendora Flyff -

Was bietet dieses:
  • saubere Ordnerstruktur
  • dynamisches Nachladen durch Ajax
  • gesichertes Backendpanel
  • Website + Ingameaccount Funktion
  • Recover Ingame account (to website account) - für existierende Server
  • Itemshop für Sockets und auch ohne (Funktion muss reakitviert werden)
  • SQL Injection, XSS und CSRF Fixed
  • many more...

- Dieser Muss im AdminCP sowie in der normalen Webseite eingefügt werden. (Templates/Erendora/Assets/...)






Für zusätzliche Funktionen einfach die gewünschte Funktion in diesen Thread schreiben oder mir in Skype schreiben. Updates folgen also konstant.

Skype: peachu.dev

WICHTIG

Damit ihr dieses CMS nutzen könnt müsst ihr die ITEM_DBF aktivieren.

Wer das direkte versenden des Items möchte muss den Port 29000 freischalten und Sedrikas Funktionen in der Source adden.

Alternativ kann dies auch mit der ITEM_SEND_TBL geschehen, dann wird das nicht mehr benötigt. Die ITEM_SEND_TBL Funktion muss im Itemshop Controller wider aktivitert werden (aktuell auskommentiert) und die socket funktion (aktuell von sedrika) auskommentiert werden.

Hier zum Tutorial von Sedrika:


Re-upload image folder please thank you !
yazuka21 is offline  
Old 04/30/2017, 16:14   #64


 
Psychosadistic's Avatar
 
elite*gold: 240
Join Date: Aug 2010
Posts: 127
Received Thanks: 25
Quote:
Originally Posted by yazuka21 View Post
Help with this please..

[...]

Re-upload image folder please thank you !
You can find these files (and associated files, too) here:

...\Templates\Erendora\Pages\News\Ajax\



...\Templates\Erendora\Pages\News\Overview.php
...\Source\Controller\News.Controller.php

Download links for the image folder:

Psychosadistic is offline  
Thanks
1 User
Old 05/01/2017, 10:17   #65
 
yazuka21's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 305
Received Thanks: 19
Quote:
Originally Posted by Irithyll View Post
You can find these files (and associated files, too) here:

...\Templates\Erendora\Pages\News\Ajax\



...\Templates\Erendora\Pages\News\Overview.php
...\Source\Controller\News.Controller.php

Download links for the image folder:

Hello sir thank you for Images folder..

can you help me set this website to live ?

Thanks again.
yazuka21 is offline  
Old 05/10/2017, 19:53   #66
 
elite*gold: 0
Join Date: May 2017
Posts: 44
Received Thanks: 19
Just put it on your root server and config it on your database

download sql2012 and restore the databases then look for config.
xRageee is offline  
Old 05/14/2017, 09:35   #67
 
yazuka21's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 305
Received Thanks: 19
Quote:
Originally Posted by xRageee View Post
Just put it on your root server and config it on your database

download sql2012 and restore the databases then look for config.
Help me please.....
yazuka21 is offline  
Old 05/15/2017, 11:29   #68
 
elite*gold: 0
Join Date: Sep 2013
Posts: 5
Received Thanks: 0
what php version needed?
how can i fix this, any help would be appreciated thanks!

PS. I have extracted the img folder inside assets folder in main and admin, but still the same problem
johphilxxx is offline  
Old 05/15/2017, 19:32   #69
 
elite*gold: 0
Join Date: Jul 2015
Posts: 181
Received Thanks: 199
Judging by the site title in the screenshot, it seems you do not have short_open_tags set to on via php.ini.
KetchupSamurai is offline  
Thanks
1 User
Old 06/25/2017, 02:43   #70
 
elite*gold: 32
Join Date: Dec 2015
Posts: 2,275
Received Thanks: 1,113
Quote:
SQL Injection, XSS und CSRF Fixed
Sicher bro?

Nehmen wir mal:

Code:
$object = $controller->InsertComment($_POST, $_SESSION);
Code:
self::Insert(array('ticketid' => intval($post['ticketid']), 'author' => $session['user'], 'comment' => $post['commenttext'], 'date' => time(), 'authority' => $session['authority']), 'Website', 'SupportComment');
Picken wir uns mal $post['commenttext'] heraus:

Du versuchst jeden String zu sichern indem du das machst:

Code:
self::ObjectSecure($mixedInput)
Code:
    private function ObjectSecure($object){
        if(is_array($object)){
            foreach($object as $key => $value){
                if(gettype($value) != 'integer'){
                    if(substr($value, 0, 2) !== '0x'){
                        $object[$key] = self::Encrypt($value);
                    }else {
                        $object[$key] = '\''.self::Decrypt($value).'\'';
                    }
                }
            }
        }/**else {
            if(gettype($object) != 'integer'){
                $object = self::Encrypt($object);
            }
        }*/
        return $object;
    }
Wenn $post['commenttext'] = 'ich bin ein friedlicher text'; ist dann wird er zu Hexadezimalcode konvertiert.
bei 'ich bin böse';shutdown;-- liest MSSQL es als string und somit ist der String nicht weiterhin schlimm. Das ist gut

Aber wenn wir $post['commenttext'] = 0x273b73687574646f776e3b2d2d benutzen greift deine Decrypt funktion und wir haben den befehl shutdown durchbekommen.
FlyffServices is offline  
Thanks
2 Users
Old 07/01/2017, 13:14   #71
 
xsrf's Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 870
Received Thanks: 642
Quote:
Originally Posted by FlyffServices View Post
Sicher bro?

Nehmen wir mal:

Code:
$object = $controller->InsertComment($_POST, $_SESSION);
Code:
self::Insert(array('ticketid' => intval($post['ticketid']), 'author' => $session['user'], 'comment' => $post['commenttext'], 'date' => time(), 'authority' => $session['authority']), 'Website', 'SupportComment');
Picken wir uns mal $post['commenttext'] heraus:

Du versuchst jeden String zu sichern indem du das machst:

Code:
self::ObjectSecure($mixedInput)
Code:
    private function ObjectSecure($object){
        if(is_array($object)){
            foreach($object as $key => $value){
                if(gettype($value) != 'integer'){
                    if(substr($value, 0, 2) !== '0x'){
                        $object[$key] = self::Encrypt($value);
                    }else {
                        $object[$key] = '\''.self::Decrypt($value).'\'';
                    }
                }
            }
        }/**else {
            if(gettype($object) != 'integer'){
                $object = self::Encrypt($object);
            }
        }*/
        return $object;
    }
Wenn $post['commenttext'] = 'ich bin ein friedlicher text'; ist dann wird er zu Hexadezimalcode konvertiert.
bei 'ich bin böse';shutdown;-- liest MSSQL es als string und somit ist der String nicht weiterhin schlimm. Das ist gut

Aber wenn wir $post['commenttext'] = 0x273b73687574646f776e3b2d2d benutzen greift deine Decrypt funktion und wir haben den befehl shutdown durchbekommen.
Da hast du wohl recht, habe mich damals auf Sedrikas Wort verlassen, dass eine Konvertierung zu Hex ausreicht
xsrf is offline  
Old 07/01/2017, 15:24   #72
 
elite*gold: 32
Join Date: Dec 2015
Posts: 2,275
Received Thanks: 1,113
Quote:
Originally Posted by xsrf View Post
Da hast du wohl recht, habe mich damals auf Sedrikas Wort verlassen, dass eine Konvertierung zu Hex ausreicht
Eine Konvertierung zu Hex ist ausreichend da MSSQL solches nur als String liest und so keinerlei möglichkeit besteht schädlichen Code hinzuzufügen .
Problem hier ist aber das du das ganze genauso Decrypten tust. Es gibt aber kein Szenario indem du Hex code wieder zurückwandeln müsstest um ihn als Query auszuführen. Einfach das Decrypt rausnehmen und es ist sicher :P
FlyffServices is offline  
Thanks
1 User
Old 09/05/2017, 00:07   #73
 
EliasDragon's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 22
Received Thanks: 1
Hello the link of the img is down anyone can upload for me please?
EliasDragon is offline  
Old 09/06/2017, 01:26   #74
 
xTwiLightx's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,739
Received Thanks: 1,669
Quote:
Originally Posted by FlyffServices View Post
Eine Konvertierung zu Hex ist ausreichend da MSSQL solches nur als String liest und so keinerlei möglichkeit besteht schädlichen Code hinzuzufügen .
Problem hier ist aber das du das ganze genauso Decrypten tust. Es gibt aber kein Szenario indem du Hex code wieder zurückwandeln müsstest um ihn als Query auszuführen. Einfach das Decrypt rausnehmen und es ist sicher :P
Ist zwar schon ein älterer Post, aber... Prepared Queries mit Parameter Binding ist da wohl die sicherste Methode.
xTwiLightx is offline  
Thanks
1 User
Old 09/07/2017, 12:33   #75
 
xsrf's Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 870
Received Thanks: 642
#Update

- AllInOne Downloadlink add ( Download v2 AiO )
- Image Directory added

All known issues are fixxed in this version of the website. I release it in case i don't need it anymore and last time i sold it was about a half a year.
xsrf is offline  
Reply




All times are GMT +2. The time now is 08:27.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.