Jump to content

talor123

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

talor123's Achievements

Member

Member (2/5)

0

Reputation

  1. hey, this is what i maiming for on my website.. 1) you click a link/button 2) a table popups in middle of the page 3) the tables centered and not transparet but the background is transparent its sort of like a login box overlaying the page and a 'sheet' of gray goes over the webpage(webpage is transparent,but box is not) ive got it working perfect so far.. but everytime i make the background go transparent(have a sheet of gray over it)... the table also goes transparent.. any help on how i can make the table not transparent?? thanks in advance
  2. yea i aint tryign to exploit something.. im trying to get a window alert on ym myspace.. doesnt really seem to harmfull a?
  3. hey, i know javascript isnt enabled on myspace... but all im looking for is just a window alert saying hey or something... heres my code Heres what i place on my myspace.. i "encrypted" the javascript bit to get past the tag filter <form action="%6A%61%76%61%73%63%72%69%70%74:%73%65%6C%66.%6C%6F%63%61%74%69%6F%6E.%68%72%65%66='%6A%61%76%61%73%63%72%69%70%74:%61%6C%65%72%74()';"> <input type="submit"> heres what it would say normally(un encrypted) <form action="javascript:self.location.href='javascript:alert()';"> <input type="submit"> when i submit it.. it works .. theres just one problem i get this as the url http://www.myspace.com/javascript:self.location.href='javascript:alert()'; i want the url just to be javascript:self.location.href='javascript:alert()'; so it would create the window alert how could i acheive this??? thancks in advance ps: if anyone could get this working.. it could lead to a myspace hoole and enable more malicious javascripts
  4. yea.. its not setting the background for the table row
  5. sorry if i wasnt clear, the question is why is my code not doing what it meants to be doing(what i explained at first)
  6. hey, i have no idea whats rong with my code... what meants to happen is if a user submits the rong user/password to login.php.. it will send back what the variable 'message' is equal to.. (eg: message=1) which will then be turned into the necessary image like so... if($number == "1") {$img = "invaild.png";}.. then that image will be used as a table row background on the login form... so the user knows what they have done rong. heres my code.. <? if(isset($_GET["message"])) { $number = $_GET["message"]; if($number == "1"){$img = "invalid.png";} elseif($number == "3"){$img = "details.png";} $bg = "<tr style='background-image:url($img);'></tr>"; } ?> <table class="tableclose" cellpadding="0" cellspacing="0" id="logtable"> <form action="login.php" method="post"> <tr style="background-color:43BF4F;"><td>Login</td></tr> <?=$bg?> <tr><td>Username:</td><td><input type="text" name="user"></td></tr> <tr><td>Password:</td><td><input type="password" name="password"></td></tr> <tr><td></td><td><input type="submit" value="Login"></td></tr> </table> thanks in advance
  7. i just use this putenv('TZ=Australia/Sydney'); $time= ''.date('Y-m-d--H:i:s-A').''; echo $time; it will show in this format: 2008-07-12--22:33:46-PM heres more info which youll probly need: timezones: http://au2.php.net/datetime how to display the time(eg hour/minute/second): http://au2.php.net/manual/en/function.date.php
  8. i have a easy to install php script which does the following: registers accounts (user,password,email,sex,name,ip address) logs in accounts admin login to check which ip addresses have been viewing website(will soon have more features) u just gota add a few directorys and a few files... comment me if you want it
  9. sort of same deel as my last post... if anyone has the time , could you give a shot at trying obtain password for this account on my website. no need to go overboard.. ive already tryed to use php injections like the include function n all that.. i cant get it so far... http://talor.freehostia.com/ username: betty again.. if you find any faults on my site .. please tell me... thank you
  10. so rarebit.. what you think i should do... make it so if you enter just a username and not password.. it sais enter password... then if u enter both username and password and one is incorect it will say... invalid user or password ??
  11. data is like the main file sort of... if you look at get ur ip address.. /Data/index.php?do=ip so if you try to go to data/ and you have not given it an action "do=" it tells you..
  12. hey,recently ive created a website from scratch.. just the main files like registering user accounts, logging in ect... before i go ahead with all the css and making it look good i would like anyone who has the time to see if they can get around my scripts... eg: use php injections.. view usernames/passwords, try editing the pages any form of hacking it.. and well if you can. please tell me how so i can patch it lol heres some info to use on my webpage if u want Username: bob Password: 12345 and heres my webpage http://talor.freehostia.com/ thank you! ps: tell me if you cant hack it.. and just ask if your having trouble with anything
  13. i have written up a login/register script in php, register makes new directorys/files in the folder "Data/account_info", and login script reads those files to verify password and user(i use fread to get info from files) my problem is that if i want the script to work, "Data/account_info" has to be 'viewable' for people viewing my website... i want it so if they try to access the folder they get denied but also i want it so my login/register script can still have access for reading/writing files to "Data/account_info"... so basicly no one can view "Data/account_info" but scripts can access it....... if you want my script just ask thank you
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.