Posted on June 18th, 2009 by Jans
Recently I have faced an issue with session in IFrames in IE Browsers. The issue is like session is not sharing between pages inside iframe particularly if you are accessing it in a different domain. The script will run smoothly without the iframe, but when i use the iframe in IE and safari it doesn’t [...]
Filed under: PHP, Security | No Comments »
Posted on November 22nd, 2007 by Jans
If you chose the “Remember” option for logins in webpages, you can reveal it easily. It doesn’t require any software to reveal hidden passwords under asterisks and don’t need to waste your time in cracking master password.
Simply enter the following line of javascript below at the address bar and hit enter.
Javascript:(function(){var s,F,j,f,i; s = “”; [...]
Filed under: JavaScript, Security | No Comments »
Posted on October 18th, 2007 by Jans
This is an alternative to the image and audio captcha and it is much simpler than the other two methods.
1. Add an input field to your form, with some interesting name, for example ‘URL’.
<input name=”url” type=”text” value=””/>
2. Hide the input box using css so that users(genuine) cannot see it directly.
<style>
.style1 {
display: none;
}
</style>
<p class=”style1″><input name=”url” type=”text” [...]
Filed under: Css, HTML, PHP, Security, Web | 1 Comment »
Posted on May 12th, 2007 by Jans
What is it?
A Web bug is an object that is embedded in a Web page or e-mail and is usually invisible to the user but allows checking that a user has viewed the page or e-mail. Alternative names are Web beacon, tracking bug, pixel tag, and clear gif.
Typically, a Web bug is a small (usually [...]
Filed under: Security | No Comments »