Thursday, 15 January 2009

RazerCopperhead (Mouse) Boot Problem


If you have RazerCopperhead you should have noticed the cold boot problem in whcih the mouse doesnt work (no lights on) and may have to pull the USB cord and reconnect to make it work again.

This can be easily solved by 4 Methods:

1. press Ctrl+R (to bring run prompt) and enter devmgmt.msc and hit enter key.
Expand Universal Serial Bus Controllers.
There you will find many "USB Root Hub "
right click each one of them and select Properties--->Power Management--->Uncheck the option "Allow the computer to turn off this device to save power.
When done its good to reboot your computer. And See if it works.......... :-)

2. You can also download a fix/patch for the same (try google u may find it there ,also i will provide a link for patch)

3.You can go here and do what is instructed there

4. Simple unplug and replug your Razer mouse. (Preferred if u have laptop).


You may want to know from where i've got the mouse:
Its available in Relience Electronics (Rs4500) ,BUT I DON'T recommend u to purchase from them as there prices are fairly high.Instead you can either go to Nehru Place (New Delhi,India) or Laminghton Road (Mumbai,India). There you may get the same thing for Rs3500 or so.




I suggest you purchase Lachesis(4000 DPI) mouse ,Rs4400 from :

SMC INTERNATIONAL
#B 10 & 11, 94, Megh Doot Building
Nehru Place
Kalkaji
Delhi-110019
Landmark: Near Paras Cinema Hall
Phone: 011-26293001/2 , 26220546,26220710
India


Your feedback is damn essential for me !

:-) Happy Fragging.... !





'MyFreeCopyright.com

Wednesday, 14 January 2009

BackTrack 3 Final HardDrive Install with XP already Installed !


How to install BackTrack 3 Final from the shell, dual boot Win XP
I managed to install Back|Track 3 Final

- in a dual boot configuration with Win XP
- without touching my existing MBR
- on an IBM Thinkpad X41, keeping the IBM recovery partition functional
- installing Grub boot loader on the boot partition, not the MBR

This is a hard disk install, not a live install of Backtrack, for those who do not want to run

BackTrack from a CD or USB device.

In this Howto the 60 GB hard disk has got two existing partitions, the Win XP ntfs partition and

the IBM recovery partition:
/dev/sda1 HPFS/NTFS
/dev/sda2 Compaq diagnostics

If you are following this Howto on a Win XP machine that is not a Thinkpad, you might only have

one existing NTFS partition and your Devices (sda2, sda3, ...) will be different, so you need to

adjust the commands accordingly.

What you need
Computer with Win XP installed
BackTrack 3 Final iso on a CD or DVD or USB stick to boot from
Internet connection to download Grub

Backup
Back up your entire system, there is no guarantee that it will not break.

Defrag your XP NTFS partition
While still in Win XP, defrag your NTFS drive. You will resize it to make space for the BackTrack

partitions.

Boot BackTrack live from CD, DVD or USB device

Unmount the existing partitions, the BackTrack Live has automatically mounted them.
Code:

umount /dev/sda1
umount /dev/sda2

Run QTParted to resize the NTFS partition
KDE menu > System > QTParted
Resize sda1 to make free space for BackTrack and save changes. Exit QTParted.
Note: On this 60 GB drive I reduced the Win XP partition to about 10 GB, leaving enough space for

a BackTrack, a /boot, a swap and a data partition.
The data partition would this way be able to hold for example some wordlists for WPA cracking.

Create Linux partitions for BackTrack
Code:

fdisk /dev/sda

Create a primary partition number sda3 1 GB in size, this will be swap
change type of primary partition sda3 to 82
Create an extended partition number sda4, use rest of free disk space
Create a new partition sda5 100 MB, this will be for /boot
Create a new partition sda6 9 GB, this will be for Backtracks root file system /
Create a new partition sda7 of remaining space, this will be for data like WPA wordlists
write partition table
quit fdisk

Format the new partitions
Code:

mkswap /dev/sda3
swapon /dev/sda3
mkfs.ext3 /dev/sda5
mkfs.ext3 /dev/sda6
mkfs.vfat /dev/sda7

Mount the new partitions so you can install BackTrack on them
Code:

mkdir /mnt/backtrack
mount /dev/sda6 /mnt/backtrack/
mkdir /mnt/backtrack/boot/
mount /dev/sda5 /mnt/backtrack/boot/
mkdir /mnt/bacltrack/boot/boot
mkdir /mnt/sda7
mount /dev/sda7 /mnt/sda7

Install BackTrack files
Code:

cp /boot/vmlinuz /mnt/backtrack/boot/boot/
cp --preserve -R /{bin,dev,home,pentest,root,usr,etc,lib,opt,sbin,var} /mnt/backtrack/
mkdir /mnt/backtrack/{mnt,proc,sys,tmp}
mount --bind /dev/ /mnt/backtrack/dev/
mount -t proc proc /mnt/backtrack/proc/

Connect to the Internet
Using for example KDE menu > Internet > Wireless Assistant

Download and install Grub on the /boot partition and configure the menu.lst
Code:

cd /mnt/sda7
wget ftp://ftp.slackware.com/pub/slackware/slackware-current/extra/grub/grub-0.97-i486-6.tgz
installpkg grub-0.97-i486-6.tgz
grub-install --root-directory=/mnt/backtrack/root/ /dev/sda5

vi /mnt/backtrack/boot/grub/menu.lst

Code:

default 1
timeout 30

title Backtrack 3 KDE
rootnoverify (hd0,4)
kernel /boot/vmlinuz vga=791 root=/dev/sda6 ro autoexec=xconf;kdm
boot

title Backtrack 3
rootnoverify (hd0,4)
kernel /boot/vmlinuz vga=791 root=/dev/sda6 ro
boot

Making the Dual Boot
I'm using a USB stick mounted on /mnt/sdb1 to transfer the following file to Win XP. But you

could also mount sda1 or sda7 and creat the .mbr file there.
Code:

dd if=/dev/sda5 of=/mnt/sdb1/backtrack3.mbr bs=512 count=1

Now reboot into Win XP and copy the backtrack3.mbr file in the root of your c:\ drive.
Now clear the read-only attribute of c:\boot.ini to be able to edit this file in notepad.
In notepad add the following line at the end of the boot.ini file:
Code:

c:\backtrack3.mbr="Backtrack 3"

Now you can activate the read-only attribute of c:\boot.ini again.

Reboot into your new BackTrack 3 Final
When you reboot now you can check that pressing your blue Access IBM button will still boot you

into the IBM Recovery console.
Otherwise you will now have two boot options given by boot.ini, Win XP and BackTrack 3. Select

BackTrack 3 and this will bring up the Grub boot menu, now boot into BackTrack 3 KDE.

Monday, 5 January 2009

How to Configure PORT FORWARDING your MODEM/ROUTER for CS1.6 Server !

*updated on 2nd April 2009
Remember : All the Modems/Routers are manufactured on the principles of Computer Networking....hence they should allow every authentic user to have no problems in inbound/outbound packet transferring capabilities......It s always us who are not able to configure it properly...
There is very slight to no difference in configuring any modem...as explained here..
Please use your common sense while you configure modem/router webpage (explore each and every tab of Modem/Router page and get as much information about it as you can).
It is equally essential to configure your modem to let outside data packets to interact with your Already running Counter Strike 1.6 Server.

If you notice that Your serever is not listed in the Server List Display inside you game.
This is where you need to think that your Modem may not be rightly counfigured for outside data acceptance.

Note:It really doesnt matter much which modem you have....most of the default settings work just fine (nowadays most of the ADSL2+ Modems are autoport forwarding).
Please Watch this High Qwality Video by Clicking HERE
Or Follow the Steps below to get started...
CounterStrike 1.6 Server Port Forwarding Router/Modem Configuration
Airtel Beetle 220BX (not Beetle 220BXI)
Steps:
  1. Open your browser (preferably Opera or Firefox). Type the address which is provided below in the address bar of your browser.Open your browser (preferably Opera or Firefox). Type the address which is provided below in the address bar of your browser.

    http://192.168.1.1/main.html (This link takes you to advanced option menu.)

    Do not enter http://192.168.1.1/index.html as this will take you to basic options menu and you will not be able to enter advanced setup from here.
  2. When enter the above address you will be asked username and password, the default username and password is given below.
    (for Beetle 220BX/BXI model)
    username: admin

    Password: password

    If you are not able to enter the modem�s configuration page using the above password you can call the airtel customer care regarding that.

  3. Now click the Advance Setup button on the left sidebar of the screen.
  4. Now click the NAT button on the left sidebar of the screen
  5. Click the Add button in the screen which you get after doing the above step.
  6. In the Add port screen you have to enter the following data:

    a. Select Service: Do not enter anything here.

    b. Custom Service: Enter a description for your port. (For Identification Purpose)

    c. Server IP Address: Usually 192.168.1.2 (Your Lan�s IP Address)

    In the table which is after these fields fill the following data in the respective columns:
    d. External Port Start: Enter the port number which you would like to forward e.External Port End: Enter the port number which you entered in the first column.

    For example if you want to ports 42963 to 42968 then you have to fill the start number as 42963 and ending number as 42968
  7. Protocol: Make sure that it is set to TCP/UDP
  8. Internal Port Start and End: Do not enter anything here.
  9. portforwarded ports will be listed at this point.
  10. In the final step you should save and reboot the modem as shown in the screenshot below.
That�s all now your ports are successfully portforwarded.


Now to find your External Ip go to whatismy.com or try Whatismyip.com
and now give that ip in this format to your freind so that he can connect to your server
example 122.144.34.32:27015
where
122.144.34.32 is the external ip shown by whatismy.com
27015 is default port on which u r server is running
Thats All Folks..nJoy !

Please feel free to comment on this...
CounterStrikeTutes.blogspot.com Team
'MyFreeCopyright.com