Access Technology

Results 1 to 12 of 12
  1. #1
    Apprentice Smeraldo is offline
    MemberRank
    Nov 2008 Join Date
    10Posts

    Access Technology


    With this simple tool created by me, you can access the hotel from any person is registered to your database. In fact just set some basic information for the connection and you're done. Just enter the name of the character that you want to access and press ENTER.
    cerca



    The system creates an SSO - Ticket who identifies with the character. The only information you need to know to get is the name of the character.
    Once logged in you will get a screen like this:



    SOURCE file to save in nomefile.php

    PHP Code:
    <?php
    /*======================================================================*\
    || #################################################################### ||
    || # LiveXenon Group Accesso                                            ||
    || # ---------------------------------------------------------------- # ||
    || # Copyright 2007-2009 LievXenon Group. All Rights Reserved.          ||
    || # This file may not be redistributed in whole or significant part. # ||
    || # --------------- LIVEXENON IS A PRIVATE SOFTWARE ---------------- # ||
    || #################################################################### ||
    \*======================================================================*/

    //CONFIGURAZIONE DATABASE

    $host "localhost"//HOST Piattaforma
    $nome "root"//Nome Utente Database
    $pasw ""//Password Database
    $data ""//Nome Database Hotel

    //CONFIGURAZIONE SERBER

    $ipserver "127.0.0.1"//IP Server
    $portserver "21"//Porta Server
    $portmus "22"//MUS Porta
    $dcr ""//DCR
    $var ""//External Variables
    $tex ""//External Texts


    $connessione mysql_connect($host$nome$pasw);
    $database mysql_select_db($data,$connessione);


    if(
    $_GET['login']){
      
    $errore FALSE;
      
    ?><center><?
      
    if($_POST['username'] == ""){
      echo 
    "Inserisci un nome utente!";
      
    $errore TRUE;
      
    ?><title>LiveXenon Accesso ~ ERRORE</title><?
      
    }
      if(
    $_POST['username']){
        
    $ricerca mysql_query("SELECT name FROM users WHERE name = '".$_POST['username']."'");
        
    $ricerca mysql_num_rows($ricerca);
        if(
    $ricerca <= 0){
          echo 
    "Questo utente non esiste!";
          
    $errore TRUE;
          
    ?><title>LiveXenon Accesso ~ ERRORE</title><?
        
    }
      }
      
      if(
    $errore == FALSE){

    $sso rand (11000);
    mysql_query("UPDATE users SET ticket_sso = '".$sso."', ipaddress_last = '".$_SERVER['REMOTE_ADDR']."' WHERE name = '".$_POST['username']."'");
    ?>

    <object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,0,0,0" id="Xenon" width="960" height="540">
    <param name="src" value="<? echo $dcr?>">
    <param name="swRemote" value="swSaveEnabled='true' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swTitle='Xenon Hotel' swContextMenu='true' ">
    <param name="swStretchStyle" value="stage">
    <param name="swText" value="">
    <param name="bgColor" value="#000000">
          <param name="sw6" value="client.connection.failed.url=http://localhost<? echo $_SERVER["PHP_SELF"]; ?>;external.variables.txt=<? echo $var?>">
       <param name="sw8" value="use.sso.ticket=1;sso.ticket=<? echo $sso?>">
       <param name="sw2" value="connection.info.host=<? echo $ipserver?>;connection.info.port=<? echo $portserver?>">
       <param name="sw4" value="site.url=http://livexenon.altervista.org/;url.prefix=http://livexenon.altervista.org//">
       <param name="sw3" value="connection.mus.host=<? echo $ipserver?>;connection.mus.port=<? echo $portmus?>">
       <param name="sw1" value="client.allow.cross.domain=1;client.notify.cross.domain=0">
       <param name="sw7" value="external.texts.txt=<? echo $tex?>;user_isp=127.0.0.1">
       <param name="sw5" value="client.reload.url=http://localhost/hotel/XenonCMS/client.php?x=reauthenticate;client.fatal.error.url=http://localhost/hotel/XenonCMS/clientutils.php?key=error">
    <!--[if IE]>client.pluginerror.message<![endif]-->
    <embed src="<? echo $dcr?>" bgColor="#000000" width="960" height="540" swRemote="swSaveEnabled='true' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swTitle='Xenon Hotel' swContextMenu='true'" swStretchStyle="stage" swText="" type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/"
        sw6="client.connection.failed.url=http://localhost/hotel/XenonCMS/clientutils.php?key=connection_failed;external.variables.txt=<? echo $var?>"
        sw8="use.sso.ticket=1;sso.ticket=<? echo $sso?>"
        sw2="connection.info.host=<? echo $ipserver?>;connection.info.port=<? echo $portserver?>"
        sw4="site.url=http://livexenon.altervista.org/;url.prefix=http://livexenon.altervista.org/"
        sw3="connection.mus.host=<? echo $ipserver?>;connection.mus.port="
        sw1="client.allow.cross.domain=1;client.notify.cross.domain=0"
        sw7="external.texts.txt=<? echo $tex?>;user_isp=127.0.0.1"
            sw5="client.reload.url=http://localhost<? echo $_SERVER["PHP_SELF"]; ?>;client.fatal.error.url=http://localhost<? echo $_SERVER["PHP_SELF"]; ?>" ></embed>
    <noembed>client.pluginerror.message</noembed>
    </object>
    <p><a href="<? echo $_SERVER["PHP_SELF"]; ?>">ESCI</a> - <font size="2">Powered by LiveXenon Group</font></p>
    </center>

    <title>LiveXenon Accesso ~ <? echo $_POST['username']; ?></title>

    <?

    }
    }

    ?>


    <? if(!$_GET['login']){ ?>
    <title>LiveXenon Accesso</title>
    <center>
    <p>LiveXenon Accesso</p>
    <form method="post" action="<? echo $_SERVER["PHP_SELF"]; ?>?login=true">
    <input style="border: solid 1px #000000; width: 150px;" type="text" name="username">
    <input type="submit" value="ENTRA">
    </form>
    <p><font size="2">Powered by LiveXenon Group</font></p></center>
    <? ?>

    Good Fun


  2. #2
    Apprentice alanterry11 is offline
    MemberRank
    Jul 2008 Join Date
    Louisvile, KentuckyLocation
    24Posts

    ! Re: Access Technology

    Nice.
    Last edited by alanterry11; 13-09-09 at 07:58 PM.

  3. #3
    Enthusiast Bl0ck3d is offline
    MemberRank
    Apr 2008 Join Date
    33Posts

    Re: Access Technology

    What does this exactly do? But nice release!

  4. #4
    Apprentice Smeraldo is offline
    MemberRank
    Nov 2008 Join Date
    10Posts

    Re: Access Technology

    Quote Originally Posted by Bl0ck3d View Post
    What does this exactly do? But nice release!
    This is a simple tool to enter with all the PCs

  5. #5
    Enthusiast Morlard is offline
    MemberRank
    Sep 2009 Join Date
    33Posts

    Re: Access Technology

    I think it's great for maintenance :)

  6. #6
    Gamma RastaLulz is offline
    MemberRank
    Dec 2007 Join Date
    EarthLocation
    3,327Posts

    Re: Access Technology

    It allows staff to log in as any member with no details needed, but the username.

  7. #7
    Twinkies are nice. Stopthattwinkie is offline
    MemberRank
    Feb 2007 Join Date
    In your fridge.Location
    509Posts

    Re: Access Technology

    I like it for testing permissions and fixing errors - great release.

  8. #8
    Account Upgraded | Title Enabled! Daney is offline
    MemberRank
    Jun 2007 Join Date
    1,110Posts

    Re: Access Technology

    So basically, all you've done is coded an 'exploit' which is essentially a login but with no password, making a server's CMS much weaker in security?

    Great.

    If you are an admin worthy of being able to access the database, why not just use their password and login the normal way?

  9. #9
    *lurks* WJJ is offline
    MemberRank
    May 2007 Join Date
    United KingdomLocation
    1,589Posts

    Re: Access Technology

    If you are an admin worthy of being able to access the database, why not just use their password and login the normal way?
    Because any good CMS hash's there password?

    But i agree about making the site more insecure, id only run this on a local box for testing.

  10. #10
    Apprentice Smeraldo is offline
    MemberRank
    Nov 2008 Join Date
    10Posts

    Re: Access Technology

    Quote Originally Posted by Daney View Post
    So basically, all you've done is coded an 'exploit' which is essentially a login but with no password, making a server's CMS much weaker in security?

    Great.

    If you are an admin worthy of being able to access the database, why not just use their password and login the normal way?
    This is only for the admin to localhost. Also because the passwords are encrypted and can not access their accounts.

  11. #11
    Twinkies are nice. Stopthattwinkie is offline
    MemberRank
    Feb 2007 Join Date
    In your fridge.Location
    509Posts

    Re: Access Technology

    Quote Originally Posted by Daney View Post
    So basically, all you've done is coded an 'exploit' which is essentially a login but with no password, making a server's CMS much weaker in security?

    Great.

    If you are an admin worthy of being able to access the database, why not just use their password and login the normal way?
    Passwords are hashed - this would only work if you know the database details.

  12. #12

    Re: Access Technology

    i couldn't get this to work. on my site the page just shows up blank.



Advertisement