Skip to main content

Types Of Hackers

hacker.jpg

Types of Hacker



Let's see the categories of Hackers on the basis on their knowledge.

Coders


1. The Real Hackers are the Coders, the ones who revise the methods and create tools that are available in the market. Coders can find security holes and weaknesses in software to create their own exploits. These Hackers can use those exploits to develop fully patched and secure systems.

2.Coders are the programmers who have the ability to find the unique vulnerability in existing software and to create working exploit codes. These are the individuals with a deep understanding of the OSI Layer Model and TCP/IP Stacks.

Admins


1. Admins are the computer guys who use the tools and exploits prepared by the coders. They do not develop their own techniques, however they uses the tricks which are already prepared by the coders. They are generally System Administration, or Computer Network Controller. Most of the Hackers and security person in this digital world come under this category.

2. Admins have experience with several operating systems, and know how to exploit several existing vulnerabilities. A majority of Security Consultants fall in this group and work as a part of Security Team.

Script Kiddies


1. Next and the most dangerous class of Hackers is Script kiddies, They are the new generation of users of computer who take advantage of the Hacker tools and documentation available for free on the Internet but don't have any knowledge of what's going on behind the scenes. They know just enough to cause you headaches but typically are very sloppy in their actions, leaving all sorts of digital fingerprints behind. Even though these guys are the teenage Hackers that you hear about in the news media, they need minimum skills to carry out their attacks.

2. Script Kiddies are the bunnies who use script and programs developed by others to attack computer systems and Networks. They get the least respect but are most annoying and dangerous and can cause big problems without actually knowing what they are doing.

Types of Hackers on the basis of activities performed by them.

White Hat Hacker


1. A White Hat Hacker is computer guy who perform Ethical Hacking. These are usually security professionals with knowledge of hacking and the Hacker toolset and who use this knowledge to locate security weaknesses and implement counter measures in the resources.

2. They are also known as an Ethical Hacker or a Penetration Tester. They focus on Securing and Protecting IT Systems.

Black Hat Hacker


1. A Black Hat Hacker is computer guy who performs Unethical Hacking. These are the Criminal Hackers or Crackers who use their skills and knowledge for illegal or malicious purposes. They break into or otherwise violate the system integrity of remote machines, with malicious intent.

2. These are also known as an Unethical Hacker or a Security Cracker. They focus on Security Cracking and Data stealing.

Grey Hat Hacker


1. A Grey Hat Hacker is a Computer guy who sometimes acts legally, sometimes in good will, and sometimes not. They usually do not hack for personal gain or have malicious intentions, but may or may not occasionally commit crimes during the course of their technological exploits.

2. They are hybrid between White Hat and Black Hat Hackers.

Comments

Popular posts from this blog

How To Upload & Publish Android Apps For Free

Upload Android Apps Free There are many independent Android app developers out there who design, code and test the apps they have been working on only to find out that Google charge a $25 to sign up as a developer and publish to  Google Play , previously known as  Android Market . There are also independent developers out there who haven't relied upon pure development but have chosen to use free third party app building services and are also looking to publish their app for free. What many of them don't realize is that  Google Play  is most certainly not the only Android Market and not all of them charge a fee. An excellent alternative market which was actually in existence before Google Play/Android Market is French Android App Market,  SlideMe . Anyone can sign up at SlideMe  as a developer and can upload their Android apps for free. Although you must register as a developer first, there are no fees charged, you can sell your app for a price if you so wis...

How to see anyone locked profile picture on facebook ?

Hello dear visiters,We are going to teach you all how to see anyone profile picture which is unclickable or lock. So follow these easy step :- Steps:- 1- First Of All You Need A User Name Or id of your victim. 2- Just Copy Profile ID Or Username. 3- Then replace the "remove-me" from the below given link with the Username or profile ID. https://graph.facebook.com/remove-me/picture?width=800 4- After That Copy All Link And Paste In Address Bar. 5-Great! you done Now You can see the locked profile picture of anyone. So,enjoy this trick and share this trick with your friends IF YOU NEED ANY TRICK DEAR VISITER SO COMMENT OR MAIL US We WILL PROVIDE YOU ALL TRICK

Opening Number Of Websites Using Python

So you just started in python programming , and want to prank your arch nemesis. Here i will teach you how to open any website on his computer using python. Before you begin download and install python from Here => http://python.org/ftp/python/2.7.6/python-2.7.6.msi Step 1: open notepad and type import webbrowser In python the "import" statement is used toadd a module to your project. In this case we want to add the webbrowser module. Step 2: webbrowser.open(' http://SITE HERE!.com') This is calling the open function on your default web browser. You pass it an url in the form of a string. Possible usages: You can add as many websites as you want like show below webbrowser.open('http:// coolhackingtrick.com ') webbrowser.open(' http://google.com ') url = " http://coolhackingtrick.com "; webbrowser.open(url) The complete code will look something like below import webbrowser webbrowser.open('http:// coolhackingtrick.com ') webbrowser....