Tuesday, March 3, 2015

#30 How to Hack

Hello,
Friend's today I am going to show you some step how to hack a computer device and network or server.
Remember these steps before you enter this field.
Keep learning



Primarily, hacking was used in the "good old days" for learning information about systems and IT in general. In recent years, thanks to a few villain actors, hacking has taken on dark connotations. Conversely, many corporations employ hackers to test the strengths and weaknesses of their own systems. These hackers know when to stop, and the positive trust they build earns them a large salary.



Part 1: Before You Hack


Step 1:

Learn a programming language. You shouldn't limit yourself to any particular language, but there are a few guidelines.

  •  C is the language the Unix was built with. It (along with assembly language) teaches something that's very important in hacking: how memory works.
 
  •  Python or Ruby is high-level, powerful scripting languages that can be used to automate various tasks.

  • Perl is a reasonable choice in this field as well, while PHP is worth learning because the majority of web applications use PHP. 
 
  • Bash scripting is a must. That is how to easily manipulate Unix/Linux systems—writing scripts, which will do most of the job for you.
 
  • Assembly language is a must-know. It is the basic language that your processor understands, and there are multiple variations of it. As the end of the day, all programs are eventually interpreted as an assembly. You can't truly exploit a program if you don't know assembly.
 
 
 
Step 2:
 
Know your target. The process of gathering information about your target is known as enumeration. The more you know in advance, the fewer surprises you'll have.
 
 
 
Part 2: Hacking
 

Step 1:

Use a *nix terminal for commands. Cygwin will help emulate a *nix for Windows users. Nmap in particular uses WinPCap to run on Windows and does not require Cygwin. However, Nmap works poorly on Windows systems due to a lack of raw sockets. You should also consider using Linux or BSD, which are both more flexible. Most Linux distributions come with many useful tools pre-installed. 



Step 2:

Secure your machine first. Make sure you've fully understood all common techniques to protect yourself. Start with the basics — but make sure you have authorization to attack your target: either attack your own network, ask for written permission, or set up your own laboratory with virtual machines. Attacking a system, no matter its content, is illegal and WILL get you in trouble. 



Step 3:

Test the target. Can you reach the remote system? While you can use the ping utility (which is included with most operating systems) to see if the target is active, you cannot always trust the results — it relies on the ICMP protocol, which can be easily shut off by paranoid system administrators. 



Step 4: 
 
Determine the operating system (OS). Run a scan of the ports, and try pOf, or nmap to run a port scan. This will show you the ports that are open on the machine, the OS, and can even tell you what type of firewall or router they are using so you can plan a course of action. You can activate OS detection in nmap by using the -O switch. 
 
 
 
Step 5:
 
Find a path or open port in the system. Common ports such as FTP (21) and HTTP (80) are often well protected, and possibly only vulnerable to exploits yet to be discovered.
 
  • Try other TCP and UDP ports that may have been forgotten, such as Telnet and various UDP ports left open for LAN gaming.
 
  • An open port 22 is usually evidence of an SSH (secure shell) service running on the target, which can sometimes be brute forced. 
 
 
 
Step 6:
 
Crack the password or authentication process. There are several methods for cracking a password, including brute force. Using brute force on a password is an effort to try every possible password contained within a pre-defined dictionary of brute force software.
 
  • Users are often discouraged from using weak passwords, so brute force may take a lot of time. However, there have been major improvements in brute-force techniques. 
 
  • Most hashing algorithms are weak, and you can significantly improve the cracking speed by exploiting these weaknesses (like you can cut the MD5 algorithm in 1/4, which will give a huge speed boost). 
 
  • Newer techniques use the graphics card as another processor — and it's thousands of times faster. 
 
  • You may try using Rainbow Tables for the fastest password cracking. Notice that password cracking is a good technique only if you already have the hash of the password.  
 
  • Trying every possible password while logging to remote machine is not a good idea, as it's easily detected by intrusion detection systems, pollutes system logs, and may take years to complete.
 
  • You can also get a rooted tablet, install a TCP scan, and get a signal upload it to the secure site. Then the IP address will open, causing the password to appear on your proxy.
 
  • It's often much easier to find another way into a system than cracking the password.



Step 7:
 
Get super-user privileges. Try to get root privileges if targeting a *nix machine, or administrator privileges if taking on Windows systems. 
 
  • Most information that will be of vital interest is protected and you need a certain level of authentication to get it. To see all the files on a computer, you need super-user privileges - a user account that is given the same privileges as the "root" user in Linux and BSD operating systems.
 
  • For routers this is the "admin" account by default (unless it has been changed); for Windows, this is the Administrator account.
 
  • Gaining access to a connection doesn't mean you can access everything. Only a super user, the administrator account, or the root account can do this.
 
 
 
Step 8:
 
Use various tricks. Often, to gain super-user status you have to use tactics such as creating a buffer overflow, which causes the memory to dump and that allows you to inject a code or perform a task at a higher level than you're normally authorized. 
 
  • In unix-like systems this will happen if the bugged software has setuid bit set, so the program will be executed as a different user (super-user for example).
 
  • Only by writing or finding an insecure program that you can execute on their machine will allow you to do this.
 
 
 
Step 9:
 
Create a backdoor. Once you have gained full control over a machine, it's a good idea to make sure you can come back again. This can be done by backdooring an important system service, such as the SSH server. However, your backdoor may be removed during the next system upgrade. A really experienced hacker would backdoor the compiler itself, so every compiled software would be a potential way to come back. 
 
 
 
Step 10:
 
Cover your tracks. Don't let the administrator know that the system is compromised. Don't change the website (if any), and don't create more files than you really need. Do not create any additional users. Act as quickly as possible. If you patched a server like SSHD, make sure it has your secret password hard-coded. If someone tries to log-in with this password, the server should let them in, but shouldn't contain any crucial information. 
 
 
 
Tips

  • Unless you're an expert or a professional hacker, using these tactics on a popular corporate or government computer is asking for trouble. Keep in mind there are people a bit more knowledgeable than you who protect these systems for a living. Once found, they sometimes monitor intruders to let them incriminate themselves first before legal action is taken. This means you might think you have free access after hacking into a system, when in fact, you're being watched, and may be stopped at any moment.
 
  • Hackers are those who built the internet, made Linux, and work on open source software. It's advisable to look into hacking as it's quite respected, and requires a lot of professional knowledge to do anything serious in real environments.
 
  • Keep in mind, if your target is not doing their best to keep you out, you won't ever become good. Of course, don't get cocky, don't think about yourself as the best of the best. Make this your goal: you must become better and better. Every day that you didn't learn something new is a wasted day. You are all that counts. Become best, at any cost. There are no half-ways, you must give fully of yourself. As Yoda would say, "Do or do not. There is no try."
 
  •  Although it's great that there are many legal, safe training grounds available for anyone, the sad truth is that you won't become even mediocre if you don't perform potentially illegal actions. You can't become anyone if you won't find real problems on real systems, with the real risk of getting caught. Keep that in mind.
 
  • Remember, hacking is not about breaking into computers, getting a well paid job, selling exploits on the black market, nor helping anyone compromise secure machines. You're not here to help the admin do his job. You're here to become the best.
 
  • Read books discussing TCP/IP networking.
 
  • There is a major difference between a hacker and a cracker. A cracker is motivated by malicious (namely: money) reasons, while hackers attempt to retrieve information and gain knowledge through exploration - ("bypassing security"), at any cost and in any way which may not always be legal.
 
 
 
Warnings

  • Misusing this information may be a local and/or federal criminal act (crime). This article is intended to be informational and should only be used for ethical - and not illegal - purposes.
 
  • Hacking into someone else's system may be illegal, so don't do it unless you are sure you have permission from the owner of the system you are trying to hack or you are sure it's worth it and you won't get caught.
 
  • Never do anything just for fun. Remember, it's not a game to hack into a network, but a power to change the world. Don't waste that on childish actions.
 
  •  Be extremely careful if you think you have found a very easy crack or a crude mistake in security management. A security professional protecting that system may be trying to trick you or setting up a honeypot.
 
  • Don't delete entire log files, instead, just remove only the incriminating entries from the file. The other question is, is there a backup log file? What if they just look for differences and find the exact things you erased? Always think about your actions. The best thing is to delete random lines of log, including yours.
 
  •  Although you may have heard the opposite, don't help anyone patch their programs or systems. This is considered extremely lame and leads to being banned from most hacking communities. And if you would release a private exploit someone found, this person may become your enemy — and this person is probably better than you are.
 
  • Be careful what you hack. You never know if it has any thing to do with the government.
 
  • If you aren't confident with your skills, avoid from breaking into corporate, government, or military networks. Even if they have weak security, they could have a lot of money to trace and bust you. If you do find a hole in such network, it's best to hand it to more experienced hacker that you trust who can put these systems to good use.

Monday, March 2, 2015

#29 HTC One M9 vs. Samsung Galaxy S6

HTC One M9 vs. Samsung Galaxy S6: specification comparison



Both HTC and Samsung unveiled their new flagship smartphones, the HTC One M9 and the Samsung Galaxy S6. We compare the two phones and look what they bring to the table.





HTC and Samsung both unveiled their latest flagship smartphones last night, the HTC One M9 and the Samsung Galaxy S6. Both phones are being highly capable and top of the line. We take a quick look at the specs and compare both phones on what they bring to the table. Let's take a look:





            HTC One M9                             Samsung Galaxy S6
  
SOC                        Qualcomm Snapdragon 810                                               Exynos 7420  

Processor                     Quad-core 1.5 GHz                                                Quad-core 1.5 GHz 
                               Cortex-A53 + Quad-core 2                                      Cortex-A53 + Quad-core 2.1
                                    GHz Cortex-A57                                                       GHz Cortex-A57
                              
RAM                                   3GB                                                                            3GB

Storage                               32GB                                                                  32 / 64 /128GB

MicroSD                       Yes, upto 128GB                                                                 No
support                                                                          

Display                               5-inch                                                                        5.1-inch

Resolution                      1920 x 1080p                                                              2560 x 1440p

Display Type                  Super LCD3                                                            Super AMOLED

4G connectivity                    Yes                                                                            Yes

Rear camera                      20.7MP                                                                16MP with OIS
Front camera                  4 Ultra Pixel                                                                   l5MP

OS                                    Android 5.0.                                                            Android 5.0.2
Battery                              2840mAh                                                                   2550mAh
 
Construction                  Metal Unibody                                                           Metal Unibody




From the specs we can see that both phones have acted-core processors, 3GB of RAM and a unibody design. While HTC is known to be the benchmark in metal unibody design, Samsung is relatively new to this design.




The HTC One M9's new 20MP camera lacks the OIS feature of the Samsung Galaxy S6's 16MP camera. Samsung has also moved on to a 2K display, whereas the HTC One M9 has stuck to the basics with a 1080p screen.




Both phones are expected to hit Indian markets in a couple of months and are expected to be priced above the Rs. 40,000 marks. We will be reviewing the phones thoroughly as and when we manage to get our hands on them.
HTC One M9Samsung Galaxy S6SOCQualcomm Snapdragon 810Exynos 7420ProcessorQuad-core 1.5 GHz Cortex-A53 + Quad-core 2 GHz Cortex-A57Quad-core 1.5 GHz Cortex-A53 + Quad-core 2.1 GHz Cortex-A57RAM3GB3GBStorage32GB32 / 64 /128GBmicroSD supportYes, upto 128GBNoDisplay5-inch5.1-inchResolution1920 x 1080p2560 x 1440pDisplay TypeSuper LCD3Super AMOLED4G connectivityYesYesRear camera20.7MP16MP with OISFront camera4 Ultra Pixel5MPOSAndroid 5.0.xAndroid 5.0.2Battery2840mAh2550ConstructionMetal UnibodyMetal Unibody - See more at: http://www.digit.in/mobile-phones/htc-one-m9-vs-samsung-galaxy-s6-specs-comparison-25429.html#sthash.MQALnqzN.dpuf
HTC One M9 vs. Samsung Galaxy S6: specs comparison

#28 Intel XDK Update

Intel XDK Update - HTML5 Games, Sublime Text* & Easier to Get Started







We are gearing up for two of the biggest shows of the year: Game Developers Conference (GDC) in San Francisco and Mobile World Conference (MWC) in Barcelona, Spain - both the week of March 2. Come look for us in the Intel® Software booths at the shows - stop by and get an Intel XDK sticker! (We'll find some ways to get them to those of you not going to the shows, too.)



As you hopefully saw in our December 2014 release, we introduced support for many HTML5 game engines: Construct2*, Cocos2D*, Phaser*, EaselJS* part of a CreateJS* suite of libraries, and Pixi*, an asset manager to help with manipulating and coding images and animation, and added several new Apache Cordova* plugins for in-app purchasing, ads, Leaderboards, etc. to help monetize your games.



One of our users is creating a new HTML5 Gaming Course. Check out: The Complete Mobile Game Development Course on Kickstarter* - a comprehensive video tutorial that will teach you how to create 15 HTML5 mobile games using JavaScript + the free Phaser library, and how to publish them to iOS*, Android* and Amazon* using the Intel XDK.



This latest update of Intel XDK continues to improve the HTML5 gaming support in time for GDC, but also includes several other important things:


Support for Sublime* Text editor: We know that many of our users find the greatest value of the Intel XDK in its ability to preview, test, and debug on-device prior to building the app, and many prefer to use their favorite editor while doing so. We made that easier for Sublime Text users with a package to Sublime Text that drive the testing and debugging options with the Intel XDK. Here is a link to the Sublime Text package for the Intel XDK.



We changed the "getting started" options for new app projects to make it even easier to start creating different kinds of HTML5 projects. We heard from users that we had too many choices to get started, and that it wasn't clear how to create an app without Cordova (a web app). Well, we changed it. We introduced the option to choose a blank "Standard HTML5" app without Cordova and plugins included, and an "HTML5 + Cordova" app already set up for Cordova. Of course, in the project settings, you can go back and add Cordova and plugins to the project as you need, as well as easily choose the targeted platforms.



We added Cordova* 4. x and Crosswalk 11 support to stay on top of the latest developments in the Apache* Cordova and Crosswalk Projects. Most of the changes are behind the scene in project set up and build-time. All you need to do is specify the version you want to use in the Build settings.
Added OS X* Yosemite as a validated platform for hosting the Intel XDK.



All of these changes also apply to the Intel XDK IoT Edition. We also added the ability to easily update the communication daemon for the Intel® IoT Developer Kit with one-click to keep connected.



Finally, this is just a heads-up. In March we're going to be rolling out some changes to improve security, and move the user forums. First, we have a user forum for Intel XDK support on the Intel Developer Zone (IDZ) site (the parent site of xdk.intel.com) that has been up for several months: Please start using it! We want to completely move off of our current Intel XDK user forums so that we can better help you, and for you to communicate with other developers. It offers a much better forum software platform that is also used by many other Intel software products and communities.



Second, we will be merging your Intel XDK accounts with the greater IDZ using a more safe/secure single sign-on infrastructure. You will finally be able to have the same account for the Intel XDK and User Forums! For those of you that do not already have an account with the Intel Developer Zone, the merge will be seamless - we'll set it up as you login to the Intel XDK. For those of you that already have an IDZ account, you may have to reset your password so that the Intel XDK and IDZ are merged properly. Finally, you will need to make sure the Intel XDK you are using is a latest version  for authentication with the latest build servers - at least version 1332 (September 2014 update) or later.
Intel XDK Update - HTML5 Games, Sublime Text* & Easier to Get Started - See more at: http://www.digit.in/apps/intel-xdk-update-html5-games-sublime-text-easier-to-get-started-25398.html#sthash.KlbktZH4.dpuf

#27 How to Avoid Getting a Computer Virus or Worm

Hi,
Friend's today I am going to show you how to avoid getting a computer virus or worm.


The internet is an integral part of our lives, and many of us use it constantly throughout the day. But that connectedness has increased the risk of infection by viruses and malware, leading to potential data loss and identity theft. Every internet user should be versed in how to prevent virus infection and what to look for. Think of it as a driver's manual for the internet superhighway. Armed with the knowledge to avoid getting and spreading virus infections, you'll not only make the internet safer for yourself, but for everyone else you connect with.




Method 1: Browsing Safely


Step 1:

Avoid clicking on everything. There are thousands of banner ads and popups on the internet that are designed to get your attention and make you click. Due to the way most modern browsers work, there are very few ways for you to get infected with something online UNLESS you click on it yourself. This means you should avoid clicking on the banners for offers that are too good to be true.

  • Make sure your browser is configured to always ask before running files and downloading automatically. If you have to confirm everything, you are much less likely to get infected.
 



Step 2:

Beware of misleading popups. Some of the most nefarious popups on the internet are designed to mimic the look of legitimate anti-virus software. These popups attempt to trick the user into thinking their antivirus software has found an infection. When you click the popup, however, the adware is actually installed.

  • Instead of clicking the warning, close the popup window and open the antivirus program on your computer. You most likely will not see any warnings. If you are still worried, run a scan using your installed software.
 
  •  Don't try clicking the "X" to close the popup window, as this will usually lead to more popups. Instead, use the Task Manager to get rid of it. Alternatively, you can install Adblock plus to prevent ads appearing in the first place.
 
  • Other popups may warn of an infection that only their software can fix. No legitimate antivirus company will advertise their product this way, so avoid clicking on any of these popups.
 
  • Check to ensure that your browser is configured to block popups.




Step 3:

Clear your cache. Popups can store information in your browser's cache, leading to them reappearing constantly. To help prevent this, clear your browser’s cache regularly.



Step 4:

Consider a different browser. If you are using Internet Explorer or an older browser such as Netscape or Safari for Windows, you may be leaving yourself exposed to security risks. Browsers such as Firefox, Chrome, and Opera are much more secure than older browsers, and more customizable. Firefox, for example, has a large array of privacy- and security-related add-ons that will help protect you online.

  • If you don't want to switch browsers, make sure that it is always up to date to help prevent unauthorized attacks.




Step 5:

Don't go where you're not supposed to. As viruses are illegal, they thrive on other illegal sites. Avoid sites that let you download copyrighted content or other illegal communities. File sharing is a quick way to get infected files. You will find that your computer is much less prone to infection if you avoid things you shouldn't be doing.

  • Besides viruses from files you download, many of these sites will have a litany of annoying popups and misleading advertisements. All of these could lead to virus and spyware infection.





Method 2: Handling Downloaded Files


Step 1: 

Be selective with your downloads. There are programs available for nearly every task you can think of, but ask yourself if you really need the program that you are about to download. Do a little research about your task; you may find that you already have a program capable of what you want to do. Downloading extra programs for every task you want to complete increases the likelihood that you'll download something malicious. 



Step 2:

Download from trusted locations only. If you are downloading a program or other piece of software, it is always advisable to try to download it from the developer's site as opposed to a download service. Many of these services, installs their own download managers, and can infect your browser with adware.

  • Downloading illegal files will always be a lottery when it comes to getting viruses and worms. If you can, download from "trusted" sources in the community to reduce the risk of infection.



Step 3: 

Look at the extension. Mischievous files often have fake extensions designed to trick you, such as ". txt. vb" or ". jpg.exe". Windows will often hide common file extensions to make browsing through your files and programs more visually appealing. Double extensions exploit this by hiding the second, dangerous extension. If you normally don't see extensions on your computer and it all of a sudden appears in a file that you've downloaded, you may have downloaded a malicious file that is hiding as something else.

  • To make your file extensions visible, open Windows Explorer, click the View tab/menu and select Options. Click the View tab in the Folder Options window, and uncheck the "Hide extensions for known file types" box.



Step 4:

Scan your downloaded files. If you have an antivirus program installed, you should make a habit of scanning files that you've downloaded from unknown locations. Most antivirus programs allow you to immediately scan specific files by right-clicking on the file and selecting your antivirus from the list of options. 

  • Always scan ZIP files as these often contain multiple files in one archive.
 
  •   Email programs will often scan your email files for viruses automatically, but you should still scan any downloaded files with your own antivirus program. 
 
 
Step 5:
 
Don't open anything you don't trust completely. A virus or worm can do nothing unless you actually run the program that it is attached to. That means that simply downloading a file does not put you in any real danger. If you decide after downloading that you don't exactly trust the file, avoid opening it or delete it until you can confirm its integrity.  
 
 
 
Step 6:
 
Read the license agreement. You know those legal documents that you always blindly accept when installing a program? Well, shady companies like to use the fact that most people skip them to sneak in clauses about installing spyware and other malicious software. Make sure to take the time to read these agreements, especially from companies that you've never heard of before.  
 
 
 
 
Method 3: Dealing with Emails
 
 
Step 1:
 
Don't download attachments from a source you don't know. Email attachments are the number 1 way that viruses and other malware get spread. You should never click an attachment or a link in an email from someone you don't recognize. If you are unsure of the sender, get confirmation from them that the file is legitimate before downloading it. 
 
 
 
Step 2:
 
Don't download attachments from a source you do know unless you were expecting it. Many times people will get infected with viruses that send emails without their knowledge. This means you can receive email, from trusted sources, but the email itself is not trustworthy. If the writing is odd or the attachment looks off, do not click it. Verify with the person that they intended to send you the attachment you received.  
 
 
 
Step 3:

Disable image previews. Many email applications can automatically load images for convenience, but this can leave you more vulnerable, as images can contain malicious code. You should only download the images in an email from a trusted source. 
 
  • Note: Some services have started changing the way email images are handled, making image loading safer. For example, Gmail no longer disables images on default. Check with your mail provider for best practices on their service.
 
 
 
Step 4:
 
Beware of odd emails from companies you do business with. A popular phishing technique is to copy the style of a company email and include links that look similar to the regular URL, but instead send you to a fake site ("power" instead of "power", for example). These sites, then collect personal information that you thought was going to a trusted server.  
 
  • Any legitimate company will never ask you for passwords or other personal information through email.
 
 
 
Method 4: Protecting Yourself
 
 
 
Step 1:
 
Install an antivirus program. An antivirus program will actively protect your computer from virus infections by scanning active programs and performing scheduled full-system scans. There are free antivirus programs that come with basic virus protection, such as AVG, Bitdefender, and Avast, and there are paid programs that come with other internet security protections such as firewalls and anti-phishing measures. Paid programs include Norton, Kaspersky, and paid versions of free antivirus options. 
 
  • You should only have one antivirus installed at a time in order to avoid conflicts between them.
    Make sure that your antivirus gets updated at least every week.
 
  • Scan your computer at least weekly, more often if you are a heavy internet user.
 
  • An antivirus program is not a foolproof system, and should not replace good browsing habits and common sense. 
 
 
 
Step 2:
 
Install an anti-spyware program. Beyond viruses, your computer can also get infected with spyware and adware. These programs are difficult to exterminate and often hijack your browsing experience. They also make your computer more susceptible to future infection. Most antivirus programs do not scan for or remove spyware and adware. 

  •  Popular programs include Malwarebytes, Spybot S&D, Hitman Pro, and Adw Cleaner.
 
  •  You can have multiple anti-spyware programs installed at once. More programs mean you are more likely to catch offending spyware.
 
 
 
Step 3:
 
Enable a firewall. Firewall software protects your network ports, which are the "doors" facing the internet that allow data to be sent back and forth. Windows comes with firewall software already installed and enabled, which is usually more than enough for most home users. There are a variety of companies that offer more powerful and customizable software as well. Most of these are the same companies that provide paid antivirus software.  
 
  • Firewalls are also available in hardware form.
 
  •    You can only have one firewall enabled at a time. If you install a software or hard firewall, you'll need to disable the Windows firewall.
     
 
 
Step 4:
 
Keep Windows updated. Many viruses and other malicious programs exploit holes in the Windows software. These holes are quickly patched by Microsoft, and updates are made available for all legitimate copies of Windows. if you don't keep your copy of Windows updated, your system will be much more exposed. In order to ensure that you're always protected, make sure that Windows is set to update automatically. 
 
  •  If you are using Windows XP, upgrade immediately. Support for Windows XP will end on April 8, 2014. This means that any exploitable cracks found after that date will no longer be fixed, and Windows XP will become very insecure. For more information on upgrading, see this article for upgrading to Windows 7, and this article for upgrading to Windows 8. 
 
 
Step 5:
 
Be careful with USB drives. USB drives are a popular vehicle for virus transmissions, usually without the owner being aware at all. You could get an infection just by inserting the USB drive, or could get your USB drive infected by plugging it into a public computer. Try to use other methods for file sharing, such as online storage or email to send files. 
 
 
 
Step 6:
 
Be wary about remote access. In our more connected world, remote access and remote sharing of resources has become much more prevalent. While this can be great for productivity, it does put your personal machine at more risk if there are a variety of other machines connecting directly to it. Ask yourself if you need that remote connection, and always ensure that your protection software is up to date.  
 
 
 
Step 7:
 
Keep a good backup. If disaster strikes, you don't want to be left without your important data. A regular backup schedule will mitigate any damage done by a virus, and will allow you to get up and running much quicker. There are a variety of ways that you can go about backing up your data, both locally and remotely. 
 
 
 
Tips 
 
  • Keep a recent backup of your personal files. This will come in handy should you get infected with a program that deletes your files, or prevents you from accessing them.
 
  • Remember: if it seems suspicious, it probably is.
 
  • Delete your browser's temporary internet files every day.
 
  • If you are fixing simple errors like a blue screen, simply shut it off and reboot it after 10 seconds.
 
  • Don't do any surveys that look suspicious and never, ever give any money away to something better than usual. 
 
 
 
Warnings
 
  •  If you don't keep a good backup of your files, you risk losing everything when a virus or spyware hits. Scan your computer once in a while.

Sunday, March 1, 2015

#26 How to Prevent Computer from Virus Infection

Hi,
Friend's today I am showing you how to prevent system from virus infection.

A computer virus is a software program which is able to replicate itself and spread from one infected computer to another. The infected objects can be system, program or document files. After infecting your computer, it might slow it down, damage the contents of the infected files, mislay the data or defect your computer systems normal operation. Get started now to learn these 3 common ways that your computer may get infected by viruses.


 STEPS



Step 1:

Don't open unknown attachments in emails or do a virus scan after opening them. (If you get an email from a person that contains one or more viruses, the viruses may infect files in the computer. The viruses might also send emails to people from your email address book or email folders automatically).




Step 2:

Download files only from trusted sites. If you download a program or a data file from the Internet or other shared networks, viruses might be transferred to your computer. Sometimes the free software programs on the Internet have viruses, especially if you are downloading from sources such as Torrent or Usenet newsgroups.



Step 3:

Remember to do a virus scan for them after peripheral devices are connected to your computer. The devices such as MP3 players, USB thumb drives, memory cards or CD drives are also means of spreading viruses.




Tips

  •  Some game cracks and key gens can contain Trojans so beware.

  •  A Virus Guard never hurts, so get one soon and make sure to update it.

  •  Use a Malware and Adware Scanner.

  •  Avoid downloading attachments with the suffix .exe on the end. These are executable files, which are often used to send viruses, worms and Trojan horses.

#25 Top 15 Displays in Tech Products Today

Top Displays in Technology Products


Display technology has come a long way from all corners of consumer technology. Not all of it may make sense, but 2k displays on smartphones and 4K displays on TVs are in now. Manufacturers like Samsung, Sony, LG and many others are working hard to give products a new selling point and displays are bigger than ever. So, with all that in mind, here are some of the best displays in consumer technology today.






Samsung Galaxy Note 4 
Let's start with smartphones shall we? The Galaxy Note 4 has perhaps the best display in the market today. Yes, even better than the Retina displays by Apple. The vivid colours on Samsung's 2K Super AMOLED displays are a treat for anyone using them.



Apple iPhone 6
 
That said, Apple still knows a thing or two about the displays. The company stuck to its Retina displays with the iPhone 6 and proved to everyone that it still works. It's a well balanced display and one of the best you can get in the market today.



LG G3/Nexus 6
 
The Nexus 6 and LG G3 both has 2k displays, but the former is slightly larger than the latter. That said, both the displays are quite great and fit amongst the best displays today.



Apple iPad Air 2
 
Next up, tablets. And when you take tablets, you talk iPads. Apple's tablets have been always good and the Retina display on the iPad Air 2 makes it even better.



Samsung Galaxy Tab S
 
Again, Samsung has a 2K Super AMOLED display to offer on its Tab S. It offers high pixel density and amazing viewing angles. The colours are a bit too saturated to call it the best, but it's definitely up there with the iPad.



Lenovo Yoga 2
 
On paper, the Yoga 2 may only have a 1080p display, but it's one of the best we've used. The display is bright and reproduces colours quite well. Would be a good option to go for.



Samsung SUHD TVs
 
The CES this year was all about televisions and Samsung kicked things off there with its SUHD TVs and Quantum-Dot technology. It's not the only company that makes them, but they look mighty good.



LG 4K TVs
 
LG had actually announced its Quantum-Dot televisions before Samsung. The company also showcased them at the CES, continuing its rich history in televisions.



Sony and its 4K story
 
When Samsung talked about quantum-dot at the CES, Sony was quick to explain that it's nothing new. The company says it has been using quantum-dot in its TVs for a long time now, showcasing them at the CES.



Asus ROG Swift PG27AQ 4K/UHD
 
Onto PC monitors then, this newly launched gaming monitor by Asus comes with Nvidia's GSYNC technology and 4K resolution, making it one of the best in the market.



BenQ XL2730Z
 
AMD's answer to Nvidia's Sync is with FreeSync. The BenQ XL2730Z is one of the few monitors that support that at the moment. It is also a 4K monitor.



Samsung S34E790C
 
Samsung has gone crazy with display tech at the CES this year. This 34-inch Curved UHD monitor was amongst them. It's one of the best you can find at the moment.



Apple Retina MacBook Pro
 
With a 2560x1600 pixel panel, the Retina MacBook Pro is one of the best laptops you can buy. It is quite expensive though.



Dell XPS 13
 
The newly refreshed XPS 13 from Dell is amongst the best laptops to buy today and it nearly bezel-less Quad-HD Infinity Display is one of the main reasons for it.


Lenovo Yoga 3 Pro 
The newly launched Lenovo Yoga 3 Pro seems a bit overpriced, but there's no denying that QHD display's quality. It's a good one if you have the money.

Nokia C1 renders leak ahead of launch, hints at 4GB RAM and dual rear cameras

Is Nokia working on its own AI assistant for smartphones? Nokia is planning its return to the smartphone industry with two new flagshi...