This is Virus Community

Your Ultimate Tech Destination On My Web.

Friday, 5 February 2016

Some Library Of C, C++ Programming & It's Description

Some Library Of C, C++ Programming & It's Description 1. <stdio.h>: input and output function in program. 2. <conio.h>: to clear screen and pause information function. 3. <ctype.h>: function for testing characters 4. <string.h>: function for manipulating string 5. <math.h>: mathematical function  6. <stdlib.h>: utility function for number, conversion, storage allocation 7. <assert.h>:...

Tuesday, 17 November 2015

4 Ways To Be Anonymous Online

4 Ways To Be Anonymous Online Want to be anonymous online to view blocked websites, protect your self from hackers or want to hack some one and stay un-traced?. In the following post i will explain 4 easy ways by which you can stay anonymous online! 1. Using Proxies A proxy is an address ( IP address) of a Server (proxy server) that is placed between your computer and the Internet The advantage ofa proxy is that your real IP address is...

A History Of Hacking

A History Of Hacking A history of hacking Hacking has been around for more than a century. In the 1870s, several teenagers were flung off the country's brand new phone system by enraged authorities. Here's a peek at how busy hackers have been in the past 35 years. Early 1960s University facilities with huge mainframe computers, like MIT's artificial intelligence lab, become staging grounds for hackers. At first, hacker was a positive term for...

Make A Disco Keybord

Make A Disco Keybord Make a Disco Keyboards usually have small LEDs which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows. This trick uses a simple Visual Basic Script which when activated makes your Scroll lock, Caps lock and Num lock LEDs flash in a cool rhythmic way which gives the perception of a live disco on your keyboard. Keyboard tricks...

What Is Dram (Dynamic Random Access Memory)

What Is Dram (Dynamic Random Access Memory) Dynamic random access memory (DRAM) is the most common kind of random access memory (ram) for personal computers and workstations. The network of electrically-charged points in which a computer stores quickly accessible data in the form of 0s and 1s is called memory Random access means that the PC processor can access any part of the memory directly rather than having to proceed sequentially from...

Microsoft Windows History

Microsoft Windows History WINDOWS VERSION HISTORY: WINDOWS 1.0 ------>16 Bit Os (1985) WINDOWS 2.0 ------>16 Bit Os WINDOWS 3.0 ------>16 Bit Os (1990) WINDOWS 3.1 ------>16 Bit Os (1992) WINDOWS NT 3.1 ------>32 Bit Os (1993) WINDOWS 95 ------>Used WIN32 API WINDOWS 98 WINDOWS ME WINDOWS NT 4 WINDOWS 2000 (or also Known as WINDOWS NT 5) WINDOWS XP (or also Known as WINDOWS NT 5.1) WINDOWS XP PROFESSIONAL...

5 Deadly Linux Commands That Can Destroy A System

5 Deadly Linux Commands That Can Destroy A System 1. Command  rm -rf  = It will Delete Everything Explanation  It is a combination of three keywords. First is  rm It will remove all the files followed by this command. Second is  -rf This will run rm command in more effective way and will remove everything  ( all files and folders inside the specified folder ) without asking confirmation from the user. Third is This...

10 Hacking Software & Tools Contains A Following Software

10 Hacking Software & Tools Contains A Following Software - Cain and Abel (sniffer) - John the Ripper (powerful brootforce) - NetStumbler (allows to define radius of action of network WiFi in real time for the diagram it is possible to see size of a useful signal)  - Nmap (one of the best network scanner) - Putty (a quite good telnet the client) - SuperScan (powerful scanner TCP of ports, pinger and hostname resolver) - Hping...

Ubuntu 10.10

Ubuntu 10.10 Ubuntu 10.10 Settings: Configure Ctrl- Alt-Del As Task Manager How To Bind Ctrl-Alt-Del in Ubuntu Linux, Windows style??? Always swear by the Ctrl-Alt-Del combo and wants Ubuntu to have the same feature even though it hasn't crashed on you yet? Well, I understand. Familiarity is a good thing. This is for those of you who seeks familiarity in an unfamiliar surrounding. Especially for recent converts from WIndows. Right after installing...

You Wanna Backup Your Computer

You Wanna Backup Your Computer Backup the whole c drive backup c:\document files backup program files deleting a log file on c drive backup the registry Type those code on notepad and save it .bat extinction like: "backup.bat" @echo off ::script developed by Learn Advance Hacking :: variables are created for the backup drives and the command to execute set drive1=D:\ set drive2=E:\ set backupcmd=xcopy /s /c /d /e /h / i /r /y echo...

How To Write A "C" Program Without A Main Function

How To Write A "C" Program Without A Main Function Is it possible to do that.Yes there can be a C program without a main function.Here’s the code of the program without a main function… #include #define decode(s,t,u,m,p,e,d) m##s##u##t #define begin decode(a,n,i,m,a,t,e) int begin() { printf(” hello “); } Does the above program run without the main function? Yes, the above program runs perfectly fine even without a main function.But how,whats...