Change your processor name

Type the following lines in notepad


Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0]
"ProcessorNameString"="Intel Neo(Prince) 8.0GHz"

and save as processor.reg and run it.

To see new processor name Click on “My computer” and right click and choose property,
which will show “ Intel Xeon 8.0 GHZ. In the place of Intel Neo(Prince) 8.0GHz

How to Install Windows from USB

Today i will share with you, how to install windows from USB with the help of UltraIso. With this trick you can install Windows XP/Vista/Windows 7 using the USB or pen drive. Note: For installing windows from your USB Make sure your motherboard is capable of booting off a USB drive or this will not work. Also, backup any files on your USB drive because it will be formatted.

Note: USB must be formatted in NTFS file format prior to writing files to disk. otherwise it may show errors.


How to Install Windows from USB Steps:

1. Download the free UltraISO trial. Click here to download.
2. Start UltraISO as administrator

3. "Burn" the iso image to the USB stick by following these steps
- Open the image of Vista/Win7 with UltraISO
- Under BOOTABLE tab choose WRITE DISK IMAGE
- Choose your USB stick under "Disk Drive"
- Choose a method (It's recommended to use USB-HDD+)
- Press Write

4. After Writing to disk is complete. Boot the system with the USB drive.
5. Make sure to change your BOOT order in BIOS to boot from your USB drive first.

That's all the tutorial, if you have any queries ask me in form of comments.

I hope you like this easy but important tutorial. Share your experience in form of comments.

Read more: http://www.isoftdl.com/2011/01/how-to-install-windows-from-usb.html#ixzz1GdzcENrw
Under Creative Commons License: Attribution

Find address of BSNL caller and Trace or catch the caller


Wanna know Address of the girl you like?, or address of your friend?. It is so easy to trace the addresses, just you need is their phone number.

EXAMPLE: For tracing the address of a number located in GOA (India) just log in to

http://www.bsnl.co.in/onlinedirectory.htm

After logging in, select the area (city) to which the phone number belong and then proceed further.

In the option “Search by” , select Telephone number. select the station to which the phone no. belongs and finally write the phone number in the “Search key field” . In this way the address of that particular number will be traced.

For selecting any other state of India, log on to http://www.bsnl.co.in/index.html .

In the Right hand side you see the “BSNL units” option (above Username field), select your state from the menu and then proceed further.

How to Tell if a Website is Fraud ? (Scam)


No Doubt Internet Is Full of Scam and Fraud Websites. People are Getting Scammed Knowingly and If you are a Newbie internet user, The Chances of getting Scammed are enormous. The Worst Part is some Major Advertising Networks do allow these fraud websites to advertise on their Network. I remember My earlier days when i was New to Internet, I used to Try a hell lot of such “Make money” Schemes. I was Introduced to Internet in such a way that the only thing in my Mind was “make money Online and Get Rich Quickly” and Believe me i was Scammed 100 times.

How to Tell if a Website is Scam Fraud elena dating scam redhotpie dating scam red hot pie dating scams internet dating scams nigerian dating scammers nigerian romance scammers Get Rich schemes are all over the internet. Almost all of them claim to have the secret to making money fast and with very little effort or time, once you know their secret. Of course, the truth is that if ANYONE had a secret to Get Rich Quick, it would be headline news and certainly they wouldn’t have wasted time in selling that Secret. But there are some legitimate affiliate programs, work from home plans and other means to earn money in your spare time. But How do i Recognize the Scam Website from the Legitimate Websites?

Before you checkout at any Website you must ask yourself these questions: Is that website legitimate? Should you give them your credit card number? Or is it a scam? Some websites look great and offer you great prices on hot products or get-rich schemes. But is it for real? It is difficult to know whether a flashy, professional looking website has a real, reputable company behind it. There is no way to ask the Website Itself, but if a website exhibits any of the the Below listed Features, You Should Flag it as likely scam. Here are Some Features of Scam or Fraud Website:

* No Contact Information or uses Only Contact Form. Refuses to give you a physical address or Gives Wrong Contact Information including Wrong Phone Number.
* Makes an offer that sounds too good to be true. For eg: Promises that you can win money, make money, or Get Rich Quickly.
* Asks for money to enter a contest, win a sweepstakes or lottery, or claim a prize and Refuses to send you written information before you agree to buy or donate.
* Refuses to give you the details of the offer before you make any payment.
* Requests your bank account or credit card number when you are not making a purchase with that account.
* Uses scare tactics or pressure, so that you act immediately.
* Private listing at Whois, or the listing names are associated with other scams. Go to www.whois.net and look up the Website domain name.

-Still Confused ?

Fraud scam websites FraudlentIf you are Still Confused with any Website whether it is legitimate or Scam, Do a Simple Google Search. For example if you want to Know if www.xyz.com is a Scam or Not, Just Type in ‘xyz.com Scam‘ You will have Thousand Reasons to Give up that Website.

I am damn sure you will not Give up Trying those Scam Websites saying: am not Loosing anything, whats wrong in Trying That, I have Lots of Spare Time. The Reason You Shouldn’t Try those is that normally those make money websites offer Referral Program and there are 100% Chances that you will try to earn from that Unknowingly that you are Pushing other people or your Friends into a Scam. Believe It!

What is SQL Injection – is it Dangerous Attack?

SQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. A malicious hacker can do a lot of harm using these attacks. In India According to Indian Cyber Crime dept malicious hackers usually attack govt sites, as they are open to it.
Vocabulary:
• SQL: Server Query Language-used in web applications to interact with databases.
• SQL Injection: Method of exploiting a web application by supplying user input designed to manipulate SQL database queries.
• Injection: You enter the injections into an html form which is sent to the web application. The application then puts you input directly into a SQL query. In advertantly, this allows you to manipulate to query..

Applications:
Hacking a SQL database-driven server (usually only the ones that use unparsed user input in database queries). There is still a surprising number of data-driven web applications on the net that are vulnerable to this type of exploit. Being as typical as all method, the frequency of possible targets decreases over time as the method becomes more known. This is one those exploits that aren’t easily prevented by a simple patch but by a competent programmer.
How it is Used and where it is used?
First, let’s look at a typical SQL query:
SELECT fieldName1, fieldName2 FROM databaseName WHERE restrictionsToFilterWhichEntriesToReturn
Now, to dissect…
The red areas is where criterion is inputted. The rest of the query structures the query.
# SELECT fieldName1, fieldName2 – Specifies the of the names of fields that will be returned from the database.
# FROM databaseName – Specifies the name of the database to search.
# WHERE restrictionsToFilterWhichEntriesToReturn – Specifies which entries to return.
Here is an example for somebody’s login script:
SELECT userAcessFlags FROM userDatabase WHERE userName=”(input here)” AND userPass=”(input here)”
The idea is guess what that application’s query looks like and input things designed to return data other than what was intended.
In the above example, input like the following could give gain access to the administrator account:
User: administrator
Pass: ” OR “”=”
Making the query like this:
SELECT userAcessFlags FROM userDatabase WHERE userName=”administrator” AND userPass=”" OR “”=“”
As you can see, “”=”" (nothing does indeed match nothing)
Note: Injections are rarely as simple as this…
One can be creative and use error messages to your advantage to access other databases, fields, and entries. Learn a little SQL to use things like UNION to merges query results with ones not intended. On the security side, parse user data and get rid of any extra symbols now that you know how it’s done.
The idea in this example is to break out of the quotation marks.
When stuff is inside quotation marks, the stuff isn’t processed as code or anything but as a phrase and what it is.
The password injection was: ” OR “”=”
What this does is close the string that was started by the quotation mark in the part userPass=”. Once you break out, THEN stuff is considered code. So, I put OR “”=” after I break out of the string. You will notice that it is comparing two quotation marks with one, but the quotation mark already built in by the application finishes it so we have this:
userPass=”" OR “”=”"
Notice how the first and last quotation marks are not colored and are not built in.
Additional Information about SQL Injection:
This was just an extremely simplified version and you will probably need to learn a little SQL to fully understand. Here are a few SQL terms that do other things:
UNION: You use this to merge the results of one query with another. You may put things like SELECT after UNION in order to search other databases and stuff. Sometimes you may need to use ALL in conjuction to break out of certain clauses. It does no harm so when in doubt you could do something like:
” UNION ALL SELECT 0,”,’hash’ FROM otherDatabase WHERE userName=”admin
The key when using UNION is to make your new query return the same amount of columns in the same datatype so that you may get the results you want.
# This works sometimes to terminate the query so that it ignores to the rest of the stuff that might be fed afterwards if you don’t like it. For example:
SELECT * FROM userDatabase WHERE userName=”admin”;–” AND userPass=”aH0qcQOVz7e0s”
NOT IN: If you have no idea which record you want you could record cycle (you request vague info, and you put what you already got in the NOT IN clause so that you can get the next entry)
Usage:
SELECT userName userPass FROM userDatabase WHERE userName NOT IN (‘Dehstil’,'Twistedchaos’)
EXEC: This command should never work, but if it does…you win; you could do anything. For instance, you could inject something like this:
‘;EXEC master.dbo.xp_cmdshell ‘cmd.exe dir c:
All my examples so far have dealt with read processes. To manipulate a write process, here is an example for those who know what their doing:
INSERT INTO userProfile VALUES(”+(SELECT userPass FROM userDatabase WHERE userName=’admin’)+” + ‘Chicago’ + ‘male’)
This example would theoretically put the admins password in your profile… enjoy.