Saturday, 26 March 2016

Create a second Apple ID and download apps in other countries..

Step 1: Sign out of iCloud

 

To create a new iTunes account, you'll first need to sign out of your current iTunes/iCloud account. Do this by opening Settings and tapping iCloud. Scroll to the bottom of the screen, where you'll see a button that says Sign Out. Tap Sign Out to sign out of your iTunes/iCloud account -- your iPhone will warn you that if you sign out of your account, all photo stream photos, documents, and data stored in iCloud will be removed from your iPhone.

Step 2: Create a new account

 

Once you're all signed out of your iTunes/iCloud account, you can create a new account. Go to Settings > iCloud and tap Create a new Apple ID. 















3.png

You'll be asked to enter in a birthdate, name, and email address (you'll need to enter in a different email address from your other iTunes/iCloud account). You will also be asked to choose a password, pick and answer three security questions, and input an optional rescue email address. Once you've filled everything out, tap continue (this may take a moment).

 

Step 3: Verify your account

Check your email to find Apple's verification message. Click on the link in the email message to verify your email your address. Apple will ask you to sign into your new iCloud account to verify your address.

Step 4: Choose the country on your new iTunes/iCloud account

Before you can start grabbing apps from another country, you'll need to pick the country on your new account. To do this, open the App Store and tap Featured. Scroll down to the bottom of the page, where you'll see a button that says Sign In. Tap this button and sign in using your new iTunes/iCloud credentials.
4.png

You should see a pop-up informing you that you haven't used this Apple ID on the iTunes store. Tap Review and wait a few seconds, and a list of countries will appear on the screen. Choose the country you want your new ID to be associated with, and then tap Next. Apple will ask you to agree to some terms and conditions, tap Agree. 

Next, Apple will ask for your billing info. In order to move forward, you will need to input a billing address and phone number that matches the country you chose, but you do not need to add a credit card at this time. So you can use any address -- a government building, a bank, a hotel. You won't be able to download paid apps without a credit card, but this way you'll at least get to download free apps from that country.





THANK YOU.......

FOR MORE VISIT TO....

www.4stupids.in/

AND DON'T FORGET TO SUBSCRIBE OUR YOUTUBE 

CHANNEL........

Thursday, 24 March 2016

HOW TO CONTROL YOUR C.P.U FAN SPEED

Step 1: Install Fan-Controlling Software



Control Your Computer's Fan Speeds for Better Performance When You Need It, Silence When You Don't




These will give you the most control over your fans, letting you choose how fast they're running at any given time. SpeedFan can even monitor your computer's temperatures and adjust the fans accordingly. And, if you head to SpeedFan's configuration, you can even tell it your desired temperature and have it adjust your fans automatically based on that. Just be conservative, since your motherboard's temperature values aren't always accurate to the degree.......
step-2- Tweak Your BIOS Settings



Control Your Computer's Fan Speeds for Better Performance When You Need It, Silence When You Don't

BIOS settings (usually by holding a key like Delete when you boot your computer), and search for the fan settings. They're called all sorts of different things (for example, Asus has "Q-Fan Control", while Gigabyte has "Smart Fan Control"), but generally you should be able to find it under one of the BIOS menus. Enable this feature, and tweak any settings it gives you to your liking. Some machines may only let you set it to conservative or liberal mode, while others will let you individually set temperature thresholds like SpeedFan.
                                                           It'll also offer you a choice between two regulation methods: voltage and PWM. The voltage mode adjusts the voltage of the fan, while PWM mode sends calculated voltage pulses to the fan to make it run a bit slower. For the most part, this depends on how your fans are plugged into the motherboard. Fans connected with a 4-pin connector should use PWM, while fans connected with a 3-pin connector should use voltage. Voltage is slightly less efficient, and you can't get speeds quite as low as with PWM, but PWM can be finicky sometimes too. If you find PWM is giving you problems, you can always switch to voltage. And, if you can't connect your fans to the headers on your motherboard (that is, if you're using the large, 4-pin Molex connectors), you'll need to use method 3 below. Again, your motherboard will only support this kind of fan control for a few fans, too (usually your CPU fan and a system fan). If you want to control them all, check out method three below.







THANK YOU.........

FOR MORE VISIT TO......




AND DON'T FORGET TO SUBSCRIBE 

OUR YOUTUBE CHANNEL.............


Stupidity never End.....


opera br0wser free internet 0n airtel4stupids in

uc browser free internet on airtel

Wednesday, 23 March 2016

HOW TO MAKE A PARTITON ON UBUNTU

image

After Installing Ubuntu

If you don’t create a separate home partition while installing Ubuntu, you don’t have to reinstall Ubuntu from scratch. To migrate to a separate home partition after installation, you’ll have to create a new partition (which may require resizing your existing partitions), copy the files from your existing home directory to that partition, and tell Ubuntu to mount the new partition at /home.

Step 1: Create a New Partition

If you have some free space, this step is easy. If you don’t, you’ll have to resize your system partition and create a new partition in the free space. If you have free space or don’t need to resize a system partition, you can just install GParted and create the partition without restarting from a live CD – you’ll want to create an ext4 partition.


image


Step 2: Copy Home Files to New Partition

Ubuntu makes it easy to mount the new partition – just click it under Devices in the file manager. After you do, click the Go menu and select Location to view its mount point.

image

Launch a terminal and run the following command to create a copy of your current /home directory on the new partition, where /mount/location is the location of your mounted partition:

"sudo cp -Rp /home/* /mount/location"

You’ll see an error about a .gvfs directory – this is normal; you can ignore it.

image

You should check the new home directory to verify it contains your files. However, we won’t be deleting the old home directory just yet.


image

Step 3: Locate the New Partition’s UUID

The long, random-looking string above is actually the partition’s UUID, and we’ll need it to add the partition to our fstab file, which tells Linux where to mount partitions when it boots. You can also locate the partition’s UUID by running the following command in a terminal:
"sudo blkid"

image


Step 4: Modify the fstab File

Before modifying our fstab file, we should create a backup copy that we can restore, just in case:
sudo cp /etc/fstab /etc/fstab.backup
Next, run the following command to open the fstab file in gedit. You can also use another text editor, if you prefer.
gksu gedit /etc/fstab
Add the following text to the fstab file on a new line, replacing the _____ portion with the full UUID of your new home partition from the sudo blkid command above:
UUID=_____     /home     ext4     nodev,nosuid     0     2

image

 Save the file after adding the line.

Step 5: Move Home Directory & Restart

From a terminal, run the following command to leave your home directory, move your current home directory to a placeholder location, and create a new, empty home directory which your new partition will be mounted at:
cd / && sudo mv /home /home_old && sudo mkdir /home


image

Reboot your computer after running this command. You can restart with the following command:
sudo shutdown -r now

Clean Up

After restarting your computer, you should be able to log in normally. Ubuntu is now using the separate home partition. After making sure that everything went okay and you still have all your files in your /home directory – just in case – you can you can remove your /home_old directory to free up space:
sudo rm -rf /home_old









THANK YOU........

FOR MORE VISIT TO....

www.4stupids.in/ 

AND YES NOT TO FORGET TO SUBSCRIBE OUR 

YOUTUBE CHANNEL.........






5 COOL TRICKS OF C.M.D







http://www.guidingtech.com/assets/postimages/2012/07/coolcommandprompttricks.png


So here are some great tips you can use to make yourself comfortable while working with the Command Prompt. First things first, the shortcut for Command Prompt is cmd and that’s all you need to type in the Run box or the Start "SEARCH" in order to bring it up. Now on to the cool tricks, which might be known ones for the geeky ones among you, but on the other hand, have the potential to incite the a-ha moment for many other everyday computer users among you.

1. Open Command Prompt in a Folder

When you open the command prompt, it opens up in either User or System folder depending upon whether you ran it as administrator or not. Now the thing is, if you want to execute a file in any particular folder, you would have to use the change directory(cd) command to navigate to the folder which can be a problem if the directory is nested way too deep.


OPEN COMMAND PROMPT HERE 



To ease things you can open the folder in your "WINDOWS EXPLORER" hold Shift key when you right-click in the folder and select Run command window here  to directly open the CMD prompt with the path to that folder directly.


2. Enable QuickEdit for Easy Copy/Paste..

One thing I miss the most in Command Prompt is the ability to easily copy and paste text using the conventional Windows hotkeys. Normally, one would have to use the right-click context menu options to copy and paste text, but if you enable QuickEdit, you can do them using simple shortcuts.

quickedit 


To enable the QuickEdit mode, right-click on the Command Prompt Title Bar and select Properties. In the Properties Window under the Option Tab enable QuickEdit Mode. That’s all; you can now quickly select text by dragging your mouse pointer. Pressing the enter key on the selected text will "COPY THE TEXT TO THE CLIP BOARD", and a simple left click would be enough to paste the text.

 

3. Run Command Prompt as Admin

Many commands require you to run command prompt as administrator. When you search for CMD in Start Menu, other than selecting Run as administrator from the right-click menu, you can simply press Ctrl+Shift+Enter to open it with admin privileges. This trick will work for all the programs installed on your system.


4. See Command History..

You can see last used commands in a session using the navigation buttons, but if you would like to see a list of all the commands, you can get it by pressing the F7 button.

f7 

Alternatively, you can use the command doskey /history  to list these commands in the command prompt itself.

doskey history 


5. Watch Star Wars in ASCII

star wars 


For all my nerdy friends who are diehard fans of Star Wars, you can actually watch the Star Wars Episode IV movie in the command prompt. Though it would be in ASCII, it will be fun. To start the movie, open command prompt, type in telnet towel.blinkenlights.nl. and press enter. 



THANKYOU ............

FOR MORE VISIT T0 ......

www.4stupids.in/

AND YES NOT TO SUBSCRIBE OUR YOUTUBE

CHANNEL........

 

 


Tuesday, 22 March 2016

TOP 5 USES OF INTERNET

1. COMMUNICATION

Internet is today one of the most important part of our daily life. There are large numbers of things that can be done using the internet and so it is very important. You can say that with the progress in the internet we are progressing in every sphere of life as it not only makes our tasks easier but also saves a lot of time. Today internet is used for different purposes depending upon the requirement. Here in this very article we have mentioned then ten best uses of the internet. Here goes the list.

Communication



At the moment the easiest thing that can be done using the internet is that we can communicate with the people living far away from us with extreme ease. Earlier the communication used to be a daunting task but all that chanced once internet came into the life of the common people. Now people can not only chat but can also do the video conferencing. It has become extremely easy to contact the loved ones who are in some other part of the world. Communication is the most important gift that the internet has given to the common man. Email, social networking sites are some of the prime example of it. This is one such gift of the internet which is cherished by everyone and has made our life easier to much extent.

2.RESEARCH

 Research

 

Now the point that has been placed next is research. In order to do research you need to go through hundreds of books as well as the references and that was one of the most difficult jobs to do earlier. Since the internet came into life, everything is available just a click away. You just have to search for the concerned topic and you will get hundreds of references that may be beneficial for your research. And since internet is here to make your research public, you can then benefit a large amount of people from the research work that you have done. Research is one such thing which has got lots of benefit from this evolution of internet. Research process has now got wings and has gained the most due to the internet.


3.EDUCATION

Education 

The next point that we have in this list is education. Yes you read it right. Education is one of the best things that the internet can provide. There are a number of books, reference books, online help centres, expert’s views and other study oriented material on the internet that can make the learning process very easier as well as a fun learning experience. There are lots and lots of websites which are related to different topic. You can visit them and can gain endless amount of knowledge that you wish to have. With the use of internet for education, you are non-longer dependent on some other person to come and teach you. There are various number of tutorials available over the internet using which you can learn so many thing very easily. There can’t be any excellent use of the internet other than education as it is the key to achieve everything in life.


4. Financial Transaction

 

Financial Transaction 

The next use mentioned here is financial transaction. Financial transaction is the term which is used when there is exchange of money. With the use of internet in the financial transaction, your work has become a lot easier. Now you don’t need to stand in the queue at the branch of your particular bank rather you can just log in on to the bank website with the credential that has been provided to you by the bank and then can do any transaction related to finance at your will. With the ability to do the financial transaction easily over the internet you can purchase or sell items so easily. Financial transaction can be considered as one of the best uses of resource in the right direction. 

5. Real Time Updates

Real Time Updates 

 

Real time updates have been placed at the number fifth position here. This has been mentioned here in regards to the news and other happenings that may be on-going in different parts of the world but with the use of internet we come to know about it very easily and without any difficulty. There are various websites on the internet which provides you with the real time updates in every field be it in business, sports, finance, politics, entertainment and others. Many a time the decisions are taken on the real time updates that are happening in various parts of the world and this is where internet is very essential and helpful.

THANK YOU........

FOR MORE VISIT TO............

4stupids 

AND YES NOT TO FORGET TO SUBSCRIBE OUR

YOUTUBE CHANNEL...

 

 


How to tell if your phone is rooted

HOW TO INSERT GTA SAN ANDREAS MODS USING IMG TOOL

How to Mod GTA Sa In IMG Tool 2.0
In this tutorial you will learn how to place mods in your "gta3.img" file in your GTA San Andreas models folder.
Posted by - Intermediate Players Modelling
In this tutorial you will learn how to place mods in your "gta3.img" file in your GTA San Andreas models folder.
First of all the "gta3.img" files is the one that haves most part of the game models, textures, collision files, some path nodes and some animation files.
Things you can install in SA with the "gta3.img" file:
  • Car mods.
  • Weapon mods.
  • Player mods.
  • Map mods.
  • Any texture mod.
There also others files with the ".img" extension, like "player.img" that has all the player clothes and vestments you can buy in the game, including the hair styles also.
What do you need to install mods in the IMG's?
  • An IMG editing tool.
Note that not all released IMG editing tools work with every GTA. It is recommended you find the very latest release of a program in order for it to work with the latest games. Always read the readme.
Some common IMG editing programs are:
You can find them in the Tools section of GTAGarage (Gtagarage.com).
Now that you downloaded the IMG Tool you can open it, the first thing you will see is this:
IMG Tool interface.


Well, now you can open the "gta3.img" file from the models folder of your GTA San Andreas. When done the IMG TOOL will load all the archives that are inside the IMG file, this can take some time depending of the computer. When done you will see something like this:


IMG Tool - gta3.img loaded.


There you will see all the files inside the gta3.img. Now i will teach you how to ADD new files in the archive. In fact most of the mods are for replacing existing files, like cars, weapons ans so on. But for this example in my Night Vision Crimes you have to ADD 2 files, "nikko.dff" and "nikko.txd". Check this image:



IMG Tool - How to ADD



You have to click "Commands" then "Add" and now you have to search in your computer the files you want to ADD to your gta3.img. In my example case the "nikko.dff" and then the "nikko.txd" . Alway add or replace 1 file at at time.




IMG Tool - Search




Now when you have to Replace an existent file you first have to search it in the gta3.img, to do this you have to go to "Edit" then "Search", type the name of the file you have to put as a replace in the gta3.img. For example: you have to replace the "ballas1.txd" file because in my mod is a slightly different texture included in the Fix Patch, you type that "ballas1.txd" in the search and the IMG Tool will search it. Now you are ready to replace:

Click on "Commands" then "Replace" and search for the exact file the IMG Tool found, in your computer. Then hit ok and the old "ballas1.txd" will be replaced with the one you have.
Thats all for Adding or Replacing files in the IMG's files. I hope you learn something useful today.
PS: Rebuild The Archive When Done!!





THANK YOU.........

FOR MORE VISIT TO......

www.4stupids.in/

AND YES NOT TO FORGET TO SUBSCRIBE

OUR YOUTUBE CHANNEL......

HOW CAN I SHUTDOWN OTHER PC USING C.M.D



1.FIRST OF ALL OPEN CMD....
   IMPORTANT NOTE: YOU MUST CONNECT TO A WIRELESS 
                                       NETWORK.........


https://www.mssqltips.com/tipimages2/2010_shutdowngui.jpg


2.AFTER THAT TYPE THERE "shutdown -i"


3.AT THIRD STEP YOU CAN SEE A "DIALOG BOX"....


4.AT THAT DIALOG BOX YOU  HAVE TO CLICK ON "ADD"
   BUTTON...ON THAT "ADD" BUTTON YOU HAVE TO
   GIVE THE SERVER NAME...

5.AT LAST YOU CAN SELECT "RESTART/SHUTDOWN/SLEEP" ..........






THANK YOU...............

FOR MORE VISIT TO OUR SITE ....

www.4stupids.in/

AND YES NOT TO FORGET TO SUBSCRIBE

OUR YOUTUBE CHANNEL.....................

HOW TO CREATE A HOTSPOT USING C.M.D

1.FIRST OF ALL OPEN C.M.D

2.AT SECOND YOU HAVE TYPE A CODE ON
    C.M.D.

https://swapnilkatre.files.wordpress.com/2014/08/create-a-wifi-hotspot-using-the-command-prompt-step-5.jpg

3.THAT CODE IS "netsh wlan set hostednetwork mode=allow
    ssid=4stupids key=4stupids"

4.THEN YOU CAN SEE ON YOUR ANY DEVICE..
   A NETWORK NAMED "4STUPIDS".........




THANK YOU..........

FOR MORE YOU CAN VISIT OUR 

OFFICIAL SITE.....

www.4stupids.in/ 

AND YES NOT TO FORGET TO

SUBSCRIBE OUR YOUTUBE CHANNEL...   

Restore system files and settings in WINDOWS 7

System Restore helps you restore your computer's system files to an earlier point in time. Typically, you want to restore your computer to a restore point that was created just before the date and time when you started noticing problems. The descriptions of the restore points that are created automatically correspond with the name of an event, such as Windows Update installing an update. System Restore returns your computer to the state that it was in before the restore point that you choose.

To restore system files and settings using a recommended restore point

  1. Open System Restore by clicking the Start button Picture of the Start button. In the search box, type System Restore, and then, in the list of results, click System Restore. Administrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
  2. Click Recommended restore, and then click Next.
    If there isn't a recommended restore point, follow the steps below to choose a specific restore point.
  3. Review the restore point, and then click Finish.

To restore system files and settings using a specific restore point

  1. Open System Restore by clicking the Start button Picture of the Start button. In the search box, type System Restore, and then, in the list of results, click System Restore. Administrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
  2. Do one of the following:
    • If there is a recommended restore point, click Choose a different restore point, and then click Next.
    • If there isn't a recommended restore point, click Next.
  3. Click the restore point that you want, and then click Next.
    To view the programs and drivers that will be affected (which could include programs that will be deleted), click Scan for affected programs.
  4. Review the restore point, and then click Finish.

HOW CAN I TEST CHECK MY INTERNET SPEED

1.FIRST OF ALL VISIT THIS SITE "WWW.SPEEDTEST.NET"

https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTN15bCxSS46XXECx0dOKAvMkUDX5JGYvk08WVwmTFpdvcFiQCp


2.YOU CAN SEE THERE ......
    THERE SOMEWHERE WRITTEN "TEST YOUR SPEED"
    AFTER CLICKING THAT YOU CAN SEE YOUR ORIGINAL
    SPEED.....








http://www.howtogeek.com/wp-content/uploads/2013/06/650x405xspeedtest.png.pagespeed.gp+jp+jw+pj+js+rj+rp+rw+ri+cp+md.ic.AWQb4LMxKT.png


3.IF YOU WANT TO TEST YOUR SPEED ONCE AGAIN.....
   THEN YOU HAVE TO CLICK "TRY AGAIN"...........





THANK YOU.....

FOR MORE YOU CAN VISIT OUR SITE

www.4stupids.in

AND YES NOT TO FORGET TO SUSCRIBE 

OUR YOUTUBE CHANNEL.........

Monday, 21 March 2016

How To Hack Any Email Account



So lets start with some basics about Email Hacking,
This has become a very common way to hack any email account,This type of Email Hacking is known as--Phishing attack in the language of the hackers.

Yes,This is the very famous phishing attack.This is the most famous hacking trick used by many hackers.
As the target of this kind of attack are the social people.

There are two types of phishing attack :-

1.Normal Phishing.
2.Desktop Phishing.


The basic idea behind the phishing attack is to make victim fool by rediecting him to a website same as original site,while saving his password.

Which he thinks is login into his account and gets hacked.




HOW TO HACK ?

To Hack Any Email ID you have to just follow the following simple steps.


STEP 1: You have to create your website or to have an account on any Free webhosting service which have php enabled service.

NOTE:[For most of the newbies,i would recommend you to register for a free webhosting service such as www.110mb.com or any free webhosting service that comes with php enabled in it.But 110mb is best because of its user friendly service they provide] 

Another webhosting service : 000webhost, zoho, freelancer, gdk.mx etc.









2. After you have setup your account on any free webhosting service,you have to upload your phisher on to the the file directory of your site.


3. For that you have to make your own phishing page which is discused on this webpage -

Click Here To view how to make your own phisher.


NOTE:[Phisher page will be the login page same as of the Email service your victim is using Like :-Gmail, Yahoomail, Paypal etc....
It will Look Just as same as you are asked to login to your Email acount,Thats where the victim gets tricked Or 
HACKED]



4. There will be another file needed also named as "login.php" .Which will give the condition to save the username and password typed by the user.

[NOTE:- I will not be providing the login.php to you,You have to get the login.php by yourself.
if you have some knowledge about the php language you can make your own login.php
For those who dont have knowledge about php language i recommend you search for
login.php on Google,you will surely get that file]



5. So,After you have created you phisher it is time to edit them,so as to make them save the username and password typed by the victim.

Here are the simple steps to edit the phisher :-


i. Open your phisher in a web browser,Right click in Somewhere in middle of the web browser and then click on View Source.


ii. A new windows will pop up,click on Edit>Search and type action in the search box,and then click on search.


iii. It will take you to the First action String, after the equals two mark type login.php in replace of the the text written after it.


iv. Click on Seach again,this time it will take you to another action string,after the equal to mark type http://www.your-site.yourservice.com/login.php in replace of the text written in front of the equals to mark.


NOTE: [you have to type you your sites name in replace of your-site,and your free webhosting service against yourservice in http://www.your-site.yourservice.com/login.php.
written over in step iv] 


6. So, Now you have done the difficult part it is time for some HACKING.

NOTE: You have to upload all the files on your free webhosting service directory,including in index_files Folder in the directory.Or it wount work.
The Directory Will be :-


i. index.html
ii. index_files [Folder which you saved]
iii. login.php
iv. login.txt




7. Now you have to just send the victim to your phisher site http://www.your-site.yourservice.com/




You can send him the message to visit your phisher for example :-

Hi,
How is it going.
You know what, i visited a site yesterday it is a new look of [Victims Email Service].
just check out.
its http://www.your-site.yourservice.com/
Its really good.
bye.

You can make your own message and send it to victim.


9. To view the saved password you have to just logon to your free webhisting service account and open login.txt to view the saved password.


10. And you are done,In just ten steps you have learned the phishing attack.



NOTE: [This hacking tips&tricks is for educational purposes,We are not responsible for any misuse or damage by you.]


ENJOY :-)

Stupidity never end...







How To Hack Gmail Account.

              How To Create Your Own Phisher


Phisher page is the login page as same of the service your victim is uding like--> gmail,yahoomail,paypal,facebook,twitter etc.
It will Look as same as you are asked to login to your Email acount,Like that your victim get Tricked or Hacked.

So,Lets start.
To create Your Own Phisher page you have to follow these simple steps ----

1. You have to go to the website for which you want to make your phisher page like-- gmail,yahoomail,paypal etc..


2. When you are at your Login Page just click on File>Save As
[ remember to rename it as index.html while saving the web page ]


3. When you have saved the web page,open the index.html in notepad.


4. Search for ".gif " and replace the text written before the image name with



You Have To Do that for all the images named there, Or you can use "replace all" option.

5.There will be another file needed also named as login.php .Which will give the condition to save the username and password typed by the user.

[NOTE:- I will not be providing the login.php to you,You have to get the login.php by yourself.
if you have some knowledge about the php language you can make your own login.php
For those who dont have knowledge about php language i recommend you search for login.php on Google,you will surely get that file
.
]

6. After you have done this,click on Edit>Search and type action in the search box,and then click on search.

7. It will take you to the First Step,after the equals to mark type login.php in replace of the the text written after it.









8. Click on Seach again,this time it will take you to another Step,after the equal to mark type
in replace of the text written in front of the equals to mark.
NOTE: You have to type you your sites name in replace of your-site,and your free webhosting service against yourservice in
http://www.your-site.yourservice.com/login.php.

9. Now you are all done.

NOTE: You have to upload all the files on your free webhosting service directory,including in index_files Folder in the directory.Or it wount work.
The Directory Will be ---
i. index.html
ii. index_files [Folder which you saved]
iii. login.php
iv. login.txt

10. You can Make any websites phisher by these steps like --- Gmail,Yahoomail,Paypal,Facebook,Twitter etc....





NOTE:This hacking tricks&tips is for educational purposes,We are not resposible for any misuse or damage by you... 

ENJOY :-)

Wednesday, 16 March 2016

Using CMD(command prompt)

To access the command prompt window from Vista or Windows 7:
1. Go to the Start menu
2. Type cmd in the Search field
3. Press Enter
On a Windows XP computer:
1. Click the Start menu
2. Choose Run
3. Type cmd
4. Press Enter
From an open command prompt window, you can type shutdown, and then the option you wish to execute.
To shut down your computer type: shutdown /s
To restart your computer type: shutdown /r
To log off your computer type: shutdown /l
For a complete list of options type: shutdown /?

























How to delete ro clean virus without any anti virus softwares,using CMD.

How to delete ro clean virus without any anti virus softwares,using CMD.





Yes,You can delete dangerous virus like "Torjan","$Recyclebin$","System32" etc.Remove virus without any software by using a CMD.



watch this video and remove your whole computer's viruses.











Tuesday, 15 March 2016

Ram Boost upto 2gb in all android devices.





Boost your name upto 2gb in all android devices.Follow a steps and speed your devices with best performance....





Activate Windows Vista by Skipping Activation Process


Activate Windows Vista by Skipping Activation Process










Hackers are going all out to crack Windows Vista activation procedure which is enhanced by Software Protection Platform (SPP). Until now, Microsoft has an upper hand, with no permanent or foolproof ways to crack or bypass Windows Vista activation request emerged. Instead, various workarounds and tricks to bypass, skip, delay, disable or spoof Vista activation has been suggestion to various degree of success, such as extend evaluation period, rearm method, install Vista in future year, ‘frankenbuild’ Vista by replacing RTM build WPA files with RC build files, activate against spoofed KMS server, or run and activate Vista with own local KMS server and etc.
Now, there is new crack method that able to permanently stop the countdown timer of time left to activate Windows Vista, effectively running Vista OS in full functionality evaluation mode forever.
Install Windows Vista Ultimate edition (or other edition) without product key.Windows Vista needs to be applied with 2099-ReArm trick, so that the counter of minutes to no activation required period will not return to normal after reboot.
Click on Start button.Select “All Programs”, then “Accessories”.Right click on “Command Prompt, then select “Run as Administrator (A)”.If User Account Control (UAC) prompt a warning message, click on “Continue”.In the command prompt, type date and press Enter.
You will see the following:
————————————————————————————
Microsoft Windows [Version 6.0.6000]
Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\Windows\system32>date
Current date: 12/19/2006 Thursday
Enter new date: Enter 12/31/2099 (December 31, 2099).Next, type cscript slmgr.vbs -rearm. You will see something like the following:
C:\Windows\system32>cscript slmgr.vbs -rearm
Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.
The command completed successfully.
———————————————————————————–
To make the change effectively, please restart the system. Then reset the date of the system to current date again by typing date again.
You will see the following:
Microsoft Windows [Version 6.0.6000]Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\Windows\system32>date
Current date: 12/31/2099 Thursday
Enter new date:
  1. Type in current date, i.e. 12/19/2006.
  2. Exit from command prompt, but do not restart the computer.
  3. Download  StopTimer.zip (torrent file). (Permanently_Activate_Windows_Vista.3583796.TPB.torrent)
  4. Extract the downloaded archive file into a folder. It should contains “Vista test crack.exe” and “timerstop.sys”.
  5. Execute or run the “Vista test crack.exe” by right click on “Vista test crack.exe”, and select “Run as Administrator (A)”.
  6. Optional: Press in Test button, and it will pop up a message says 4 timers are stopped. At this time, the counter should be freezed, Check with slmgr.vbs -dlv command, with the minutes left should be the same after a few minutes interval. If it’s the case, continue with the following steps to run the crack every startup.
  7. Optional: Press in Test button, and it will pop up a message says 4 timers are stopped. At this time, the counter should be freezed, Check with slmgr.vbs -dlv command, with the minutes left should be the same after a few minutes interval. If it’s the case, continue with the following steps to run the crack every startup.
  8. In the Vista test crack window, click on “Install” button. You will be prompted with “Service installed” message if everything is done properly and correctly. The crack will copy the patched stoptimer.sys to system folder and install a new service named “timerstop” to stop kernel-mode timers in spsys.sys system file.
  9. Exit from the crack, and restart the computer.
  10. The hacking is basically done. Next few steps to to verify that the activation grace period built-in countdown timer is actually stopped and disable the timers from working properly, and make sure that the crack is installed properly. After restart, log on to Windows Vista. Run for a few minutes.
  11. Press on Windows + R keys.
  12. Type slmgr.vbs -dlv to check the time left to activate Windows Vista. If the time left is 43200 minutes that’s mean the crack is successful.
With the crack, you will have the following in the registry:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\TimerStop]
“Type”=dword:00000001
“Start”=dword:00000002
“ErrorControl”=dword:00000000
“ImagePath”=hex(2):5c,00,3f,00,3f,00,5c,00,45,00,3a,00,5c,00,57,00,69,00,6e,00,\
64,00,6f,00,77,00,73,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,\
00,5c,00,54,00,69,00,6d,00,65,00,72,00,53,00,74,00,6f,00,70,00,2e,00,73,00,\
79,00,73,00,00,00
“DisplayName”=”TimerStop”



Enjoy:-)

please comment us how much you like it.And don't forget to feeds in 4stupids fb,twitter,youtube page etc.

Monday, 14 March 2016

How To Hack Anybodys Facebook Account Using 3 Friends

How To Hack Anybodys Facebook Account Using 3 or 4 Active Friends.Mostly Chatting or Access friends list recommended. 



NOTE:- This is for Educational Purpose Only. 4STUPIDS Group is not responsible for any damage done by You.



Everyone knows that most of the websites prompt their users to select security question, so that in case you forget your password, you can easily reset it. But when it comes to Facebook, things can become worst if you have selected your security question. Recently i was just playing with Facebook password reset process and just found that there is a easy way to Bypass Facebook’s Security Question. Here’s how:
Go to Facebook’s Forgot password page and enter any of the details of your Friend and click search. Facebook will now search appropriate account that is associated with the information you provided. Select you account and Click “This is My Account”. Next Facebook will present to you the available options to recover your account.
Now Click “No Longer have access to these?” and Facebook will now ask for New email addresse, so that it can send you messages about recovering your account. Enter the New email address and click Submit and as expected there is also another level of security called “Security Question”. Now here comes the Critical vulnerability.. Interestingly If you Provide wrong answers three times in a row, you will Just Bypass this level of security and Facebook will now provide another interesting way to get back your account with the help of 3 friends.
As you can see above there are Three Steps involved in the the recovery process. First you will have to select 3 Trusted Friends for the help (If you are trying to hack your friends password, then you may select yourself and 2 more friends).
Disclaimer:- please select Trusted Friends only because any of the Friend can potentially gain access to your friends Facebook account through standard password recovery Process.
Once you Select 3 Trusted Friends of yours, Facebook will then email Security codes to each of your selected Friends. Now your Job is to call your Friends and Get the 3 Security codes. Once you collect the 3 security code, enter them one by one in step 3. Finally Facebook will then allow you to reset your password through standard email recovery process.
Important: Note that The Victims account will be locked for 24 hours after this password change and also the user’s old email address will receive a notification of the password change including  the names of the 3 friends who were involved in this password change. Yes you guessed it right, you could also create 3 fake profiles and add them to your victims friends list first and then carry out this hacking Process.




Enjoy:-)

please don't foreget to comment, share your feeds to us.