+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Find the index filename and Win 500 credits/points

  1. #1
    olliepop's Avatar
    olliepop is offline x10 Sophmore olliepop is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    137

    Find the index filename and Win 500 credits/points

    The first person to tell me the name of the index page (eg hello.php) of http://tribalcorp.net/project automatically wins 800 points/credits

    only regular users can enter :P
    Last edited by olliepop; 03-05-2009 at 12:17 PM.

  2. #2
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Find the index filename and Win 500 credits/points

    Can you like give us any hints because there can be googols of combinations out there.

  3. #3
    olliepop's Avatar
    olliepop is offline x10 Sophmore olliepop is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    137

    Re: Find the index filename and Win 500 credits/points

    sorry, i made this contest to see if there was any way of finding the filename

    just knowing the filename can compromise my entire website and security mainframe

    sorry man

  4. #4
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Find the index filename and Win 500 credits/points

    Technically it will be impossible because there are thousands of combinations of letters and there are many types of website file types. So that's your answer

  5. #5
    olliepop's Avatar
    olliepop is offline x10 Sophmore olliepop is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    137

    Re: Find the index filename and Win 500 credits/points

    but i want to know if there is a way for people to find the name besides guessing.
    yes it is a long name also.

  6. #6
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,998

    Re: Find the index filename and Win 500 credits/points

    Quote Originally Posted by olliepop View Post
    but i want to know if there is a way for people to find the name besides guessing.
    yes it is a long name also.
    Other than brute-force trying every single possible combination, not that I can see - I disabled javascript and could view the source of the included ajax javascript file (you may wanna look for a way to disable that from happening, not sure exactly -how- to go about that though), but there's nothing that indicates what the name of that exact page is.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  7. #7
    olliepop's Avatar
    olliepop is offline x10 Sophmore olliepop is an unknown quantity at this point
    Join Date
    Sep 2007
    Posts
    137

    Re: Find the index filename and Win 500 credits/points

    Quote Originally Posted by Livewire View Post
    Other than brute-force trying every single possible combination, not that I can see - I disabled javascript and could view the source of the included ajax javascript file (you may wanna look for a way to disable that from happening, not sure exactly -how- to go about that though), but there's nothing that indicates what the name of that exact page is.
    thanks man. you sound experienced, so you gave me some assurance ^^
    i know how to make the js file hard to find ;)

    of course, im not going to rest all my hopes for security on hiding the file names (for you skeptics :drool

    for the next load of people who read this, is it possible for me to chmod the js file from reading and writing (unreadable and unwritable by world, user and private) but yet still call the ajax functions from it?

    sorry if its going a bit off topic...
    keep trying to find the name guys!

  8. #8
    jensen's Avatar
    jensen is offline x10 Lieutenant jensen is an unknown quantity at this point
    Join Date
    Nov 2005
    Location
    At my desk
    Posts
    438

    Re: Find the index filename and Win 500 credits/points

    well i got the http://tribalcorp.net/project/register/main.php page from javascript but then that's not the main page even though it says main.php :D

    if this was posted on a white hat forum maybe you'd have got your winner by the 2nd post.
    "For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth" Romans 1:16

  9. #9
    Sohail's Avatar
    Sohail is offline x10 Spammer Sohail is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    London, UK
    Posts
    3,052

    Re: Find the index filename and Win 500 credits/points

    I managed to get one of your scripts out of it :

    "var xmlHttp;
    2var div;
    3
    4function Registration()
    5{
    6xmlHttp=GetXmlHttpObject();
    7if (xmlHttp==null)
    8 {
    9 alert ("Browser does not support HTTP Request");
    10 return;
    11 }
    12div = "mainbody";
    13document.getElementById(div).innerHTML="Loading please wait...<br/><b>T R I B A L &nbsp; &nbsp;C O R P";
    14var url="register/main.php";
    15url=url+"?sid="+Math.random();
    16xmlHttp.onreadystatechange=stateChanged;
    17xmlHttp.open("GET",url,true);
    18xmlHttp.send(null);
    19}
    20
    21function ShowCopyright()
    22{
    23xmlHttp=GetXmlHttpObject();
    24if (xmlHttp==null)
    25 {
    26 alert ("Browser does not support HTTP Request");
    27 return;
    28 }
    29div = "copyright";
    30document.getElementById(div).innerHTML="Loading please wait...<br/><b>T R I B A L &nbsp; &nbsp;C O R P";
    31var url="copyright.php";
    32url=url+"?sid="+Math.random();
    33xmlHttp.onreadystatechange=stateChanged;
    34xmlHttp.open("GET",url,true);
    35xmlHttp.send(null);
    36}
    37
    38function Advertise()
    39{
    40xmlHttp=GetXmlHttpObject();
    41if (xmlHttp==null)
    42 {
    43 alert ("Browser does not support HTTP Request");
    44 return;
    45 }
    46div = "mainbody";
    47document.getElementById(div).innerHTML="Loading please wait...<br/><b>T R I B A L &nbsp; &nbsp;C O R P";
    48var url="advertise.php";
    49url=url+"?sid="+Math.random();
    50xmlHttp.onreadystatechange=stateChanged;
    51xmlHttp.open("GET",url,true);
    52xmlHttp.send(null);
    53}
    54
    55function HideCopyright()
    56{
    57xmlHttp=GetXmlHttpObject();
    58if (xmlHttp==null)
    59 {
    60 alert ("Browser does not support HTTP Request");
    61 return;
    62 }
    63div = "copyright";
    64document.getElementById(div).innerHTML="<a href=# onclick=ShowCopyright() >Legal and Advertising</a>";
    65}
    66
    67function mainhome()
    68{
    69xmlHttp=GetXmlHttpObject();
    70if (xmlHttp==null)
    71 {
    72 alert ("Browser does not support HTTP Request");
    73 return;
    74 }
    75div = "mainbody";
    76document.getElementById(div).innerHTML="Logged in. Welcome, " + sessionname;
    77}
    78
    79function stateChanged()
    80{
    81if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    82 {
    83 document.getElementById(div).innerHTML=xmlHttp.res ponseText;
    84 }
    85}
    86
    87function GetXmlHttpObject()
    88{
    89var xmlHttp=null;
    90try
    91 {
    92 // Firefox, Opera 8.0+, Safari
    93 xmlHttp=new XMLHttpRequest();
    94 }
    95catch (e)
    96 {
    97 // Internet Explorer
    98 try
    99 {
    100 xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    101 }
    102 catch (e)
    103 {
    104 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    105 }
    106 }
    107return xmlHttp;
    108}"

    This one makes me think that register/main.php is it but I can't be sure... Are you using a URL rewrite with .htaccess?

  10. #10
    xxll_martin_llxx is offline x10 Elder xxll_martin_llxx is an unknown quantity at this point
    Join Date
    Oct 2007
    Posts
    716

    Re: Find the index filename and Win 500 credits/points

    It wouldn't happen to be in this list would it? http://www.google.co.uk/search?hl=en...t&start=0&sa=N

+ Reply to Thread
Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers