adiz,
I need free web space with serverside scripting php or asp ? I have already searched AO and most of links are old. Have you used one ?
Dr_Evil
Printable View
adiz,
I need free web space with serverside scripting php or asp ? I have already searched AO and most of links are old. Have you used one ?
Dr_Evil
Their another thread on that where I suggest a JavaScript name GateKeeper. The password is the name of the webpage so it's paintfull to crack.
Good Luck
I may be painfull to crack if you don't know what the next page is called. But what happens if they email the url pointing to your "secret" page? Right, no passwords asked it just shows your "secret" page. So basicly it's crap (as others noted in the same thread) and I would steer clear from this kind of "protection".
I SUGGEST YOU GO TO WWW.BLACKCODE.COM IT HAS HELLEPED ME ALOT. IT MAY BE JUST WHAT YOU ARE LOOKING FOR. IF NOT I AM STILL LOOKING.:)
If you can only use client-side scripting, try this script. its not safe, but its safer than the one you use now...
if you type "mypassword" into your input-box the script will redirect you to the page mypassword.htm.Code:<script language="javascript">
function open_page() {
var password;
password=this.document.yourform.yourinputbox.value;
loc=password + '.htm'
location.href=loc;
}
</script>
form name="yourform">
<input type="password" name="yourinputbox">
[img]image.jpg[/img]
</form>
You have to know the name of the page to get access to it. I would name it something like 23jkli11.htm.
This script doesnt work well with directory browsing allowed =).
its unsafe, its not something I recommend using for any sensitive information but hey, its better than nothing (almost).