Thursday, June 23, 2011
Sunday, August 16, 2009
Trojan.Bankpatch Removal Tool
1. Download and Install Norton Security Scan
Download Norton Security Scan from:
ftp://ftp.symantec.com/misc/tools/nss/NortonSecurityScan.exe
1.
Save the file to a convenient location, such as your Windows desktop2. .
3. Close all running programs.
4. Create a new folder named NSS in your C drive.
5. Locate the file that you just downloaded.
6. Double-click the NortonSecurityScan.exe file.
7. Click Run.
8. Click Browse, and then navigate to the following folder: C:\NSS
9. Click Unzip.
10. Click OK and then Close.
2. Run Norton Security Scan
1. Navigate to the following folder: C:\NSS
2. Double-click the NSS.exe file.
3. Read the License Agreement, and then click I Agree to continue.
4. Downloading Protection Update will appear on the GUI. Wait for the update process to finish before proceeding to the next step.
Click Full System Scan and then click Start Scan.
If the following system files are reported to be infected with Trojan.Bankpatch.C!inf, they will need to be restored from trusted media.
kernel32.dll
powrprof.dll
wininet.dll
If nothing is reported at this point, the system is clean and no further action is required.
5.
6. Click Next on the GUI when the scan finishes.
7. NSS will report that: "Items need attention, please resolve them". Keep the default GUI settings and click Apply.
8. Click Done and reboot the system when prompted.
3. Restore the Infected System Files
1. Insert the Windows XP/Windows Vista CD-ROM into the CD-ROM drive.
2. Restart the computer from the CD-ROM drive.
3. Press R to start the Recovery Console when the "Welcome to Setup" screen appears.
4. Select the option to access from the Recovery Console.
5. If requested, provide the administrator password and press Enter.
Download Norton Security Scan from:
ftp://ftp.symantec.com/misc/tools/nss/NortonSecurityScan.exe
1.
Save the file to a convenient location, such as your Windows desktop2. .
3. Close all running programs.
4. Create a new folder named NSS in your C drive.
5. Locate the file that you just downloaded.
6. Double-click the NortonSecurityScan.exe file.
7. Click Run.
8. Click Browse, and then navigate to the following folder: C:\NSS
9. Click Unzip.
10. Click OK and then Close.
2. Run Norton Security Scan
1. Navigate to the following folder: C:\NSS
2. Double-click the NSS.exe file.
3. Read the License Agreement, and then click I Agree to continue.
4. Downloading Protection Update will appear on the GUI. Wait for the update process to finish before proceeding to the next step.
Click Full System Scan and then click Start Scan.
If the following system files are reported to be infected with Trojan.Bankpatch.C!inf, they will need to be restored from trusted media.
kernel32.dll
powrprof.dll
wininet.dll
If nothing is reported at this point, the system is clean and no further action is required.
5.
6. Click Next on the GUI when the scan finishes.
7. NSS will report that: "Items need attention, please resolve them". Keep the default GUI settings and click Apply.
8. Click Done and reboot the system when prompted.
3. Restore the Infected System Files
1. Insert the Windows XP/Windows Vista CD-ROM into the CD-ROM drive.
2. Restart the computer from the CD-ROM drive.
3. Press R to start the Recovery Console when the "Welcome to Setup" screen appears.
4. Select the option to access from the Recovery Console.
5. If requested, provide the administrator password and press Enter.
Monday, June 29, 2009
How to find out Router mac address
MAC is acronym for for Media Access Control address. It is a unique identifier attached to almost most all networking equipment such as Routers, Ethernet cards and other devices.
If you do not have access to router admin interface (via telnet or webbased), use following method to find out router MAC address.
You need to use arp command (available on both Windows, Linux/Unixish systems).
arp manipulates the kernel's ARP cache in various ways. The primary options are clearing an address mapping entry and manually setting up one. For debugging purposes, the arp program also allows a complete dump of the ARP cache.
arp shows the entries of the specified hosts. If the hostname parameter is not used, all entries will be displayed.
Task: Find out router Mac Address
To find out your router MAC address, use arp command as follows:
$ /usr/sbin/arp -a
OR
$ arp -a
Output:
router (192.168.1.254) at 00:08:5C:00:00:01 [ether] on eth0
fbsd6 (192.168.1.16) at 00:0F:EA:91:04:07 [ether] on eth0In above example 00:08:5C:00:00:01 is MAC address of my router. If you cannot find MAC address then just ping to your router once (my router had 192.168.1.254 IP)
$ ping 192.168.1.254
And then run (type arp -a) above arp command again. If you have telnet access to router then you can just telnet into router and find out MAC address:
$ telnet 192.168.1.254
Output:
Welcome to nixCraft Router!
Login: admin
Password:Once logged in type ifconfig command:
$ ifconfig br0
Output:
br0 Link encap:Ethernet HWaddr 00:08:5C:00:00:01
inet addr:192.168.1.254 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:48574 errors:0 dropped:0 overruns:0 frame:0
TX packets:61329 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:9146189 (8.7 MiB) TX bytes:74456679 (71.0 MiB)Please note that your interface name (br0) could be different. You can also use ifconfig -a command.
Windows XP/NT/2003 find out Router Mac address
If you are using Microsoft Windows XP then you need to open MS-DOS shell prompt first. Click on Start > Run > Type cmd command followed by ENTER key. Then at C:\> prompt, type arp command as follows:
C:\> arp -a
If you do not have access to router admin interface (via telnet or webbased), use following method to find out router MAC address.
You need to use arp command (available on both Windows, Linux/Unixish systems).
arp manipulates the kernel's ARP cache in various ways. The primary options are clearing an address mapping entry and manually setting up one. For debugging purposes, the arp program also allows a complete dump of the ARP cache.
arp shows the entries of the specified hosts. If the hostname parameter is not used, all entries will be displayed.
Task: Find out router Mac Address
To find out your router MAC address, use arp command as follows:
$ /usr/sbin/arp -a
OR
$ arp -a
Output:
router (192.168.1.254) at 00:08:5C:00:00:01 [ether] on eth0
fbsd6 (192.168.1.16) at 00:0F:EA:91:04:07 [ether] on eth0In above example 00:08:5C:00:00:01 is MAC address of my router. If you cannot find MAC address then just ping to your router once (my router had 192.168.1.254 IP)
$ ping 192.168.1.254
And then run (type arp -a) above arp command again. If you have telnet access to router then you can just telnet into router and find out MAC address:
$ telnet 192.168.1.254
Output:
Welcome to nixCraft Router!
Login: admin
Password:Once logged in type ifconfig command:
$ ifconfig br0
Output:
br0 Link encap:Ethernet HWaddr 00:08:5C:00:00:01
inet addr:192.168.1.254 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:48574 errors:0 dropped:0 overruns:0 frame:0
TX packets:61329 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:9146189 (8.7 MiB) TX bytes:74456679 (71.0 MiB)Please note that your interface name (br0) could be different. You can also use ifconfig -a command.
Windows XP/NT/2003 find out Router Mac address
If you are using Microsoft Windows XP then you need to open MS-DOS shell prompt first. Click on Start > Run > Type cmd command followed by ENTER key. Then at C:\> prompt, type arp command as follows:
C:\> arp -a
How To Find Out What My DNS Servers Address Is
153 Atul 06.20.09 at 4:32 am
hiii thnx i got my DNS Address very easily, if u have some more geeky tricks for net then plzz do send me.
154 Ali 06.21.09 at 12:18 am
Yowww i iz tryin 2 set ma internet up for ma ps3 yhh buh it wnt let me cuz it sayin dah dere is a dns error n i dnt no wah ma numba is cud u tell me how to get it
155 trevor 06.23.09 at 8:17 pm
i need help finding my dns addresses it sais my ip address succeeded and then after a about 30 seconds it sais failed and it said it is because of my dns
156 magic_stick 06.28.09 at 3:48 pm
My brother had problems connecting to xbox live so i told him to try this and it worked the missing part was the part 5,12,13 & 14 the MAC address
hope this helps some of you guys
Use this to solve the DNS not resolved error:
1. Click the “Start” button on your desktop
2. Click “Run”
3. Type “cmd” if you are using Windows 2000 or Windows XP, otherwise use “command”
4. Type “ipconfig/all ” if you are using Windows 2000 or Windows XP, otherwise use “winipcfg”
5. When you get to your default enabled connection copy down the letter/number sequence called the “Physical Address” or “MAC Address”, and the “DNS Servers”
6. Unplug your modem
7. Turn on your Xbox without a disc in the drive
8. Go to “Settings”
9. Go to “Network Settings”
10. Go to “DNS settings”
11. Enter the DNS settings you copied down then apply the changes
12. Go to “Advanced”
13. Go to “MAC address”
14. Input that letter and number sequence
15. Press “ok”
16. Connect your Xbox to your modem
nameserver 203.54.1.20 : It is Name server IP address (in dot notation) of a name server that the resolver should query. All your application will use this IP address for DNS purpose.
Find out dns server ip address under Windows Vista/ XP/NT/2003
Click on Start button > Run > and Type command cmd > Press [enter] key
At DOS prompt type the command:
C:\>ipconfig /all
You should DNS server IP address, and other information related to Windows networking:
(click to enlarge)
OR
You can Click on Start button > Settings > Network connections
Double click on Local Area Connection
Click on Properties button
Select Internet Protocol (TCP/IP)
Click on Properties button and Look for Preferred DNS Server:
See also:
Free public dns server for personal and business use.
How to find and change Nintendo Wii DNS server IP address
/etc/resolve.conf example
Linux: How to setup as dns client?
hiii thnx i got my DNS Address very easily, if u have some more geeky tricks for net then plzz do send me.
154 Ali 06.21.09 at 12:18 am
Yowww i iz tryin 2 set ma internet up for ma ps3 yhh buh it wnt let me cuz it sayin dah dere is a dns error n i dnt no wah ma numba is cud u tell me how to get it
155 trevor 06.23.09 at 8:17 pm
i need help finding my dns addresses it sais my ip address succeeded and then after a about 30 seconds it sais failed and it said it is because of my dns
156 magic_stick 06.28.09 at 3:48 pm
My brother had problems connecting to xbox live so i told him to try this and it worked the missing part was the part 5,12,13 & 14 the MAC address
hope this helps some of you guys
Use this to solve the DNS not resolved error:
1. Click the “Start” button on your desktop
2. Click “Run”
3. Type “cmd” if you are using Windows 2000 or Windows XP, otherwise use “command”
4. Type “ipconfig/all ” if you are using Windows 2000 or Windows XP, otherwise use “winipcfg”
5. When you get to your default enabled connection copy down the letter/number sequence called the “Physical Address” or “MAC Address”, and the “DNS Servers”
6. Unplug your modem
7. Turn on your Xbox without a disc in the drive
8. Go to “Settings”
9. Go to “Network Settings”
10. Go to “DNS settings”
11. Enter the DNS settings you copied down then apply the changes
12. Go to “Advanced”
13. Go to “MAC address”
14. Input that letter and number sequence
15. Press “ok”
16. Connect your Xbox to your modem
nameserver 203.54.1.20 : It is Name server IP address (in dot notation) of a name server that the resolver should query. All your application will use this IP address for DNS purpose.
Find out dns server ip address under Windows Vista/ XP/NT/2003
Click on Start button > Run > and Type command cmd > Press [enter] key
At DOS prompt type the command:
C:\>ipconfig /all
You should DNS server IP address, and other information related to Windows networking:
(click to enlarge)
OR
You can Click on Start button > Settings > Network connections
Double click on Local Area Connection
Click on Properties button
Select Internet Protocol (TCP/IP)
Click on Properties button and Look for Preferred DNS Server:
See also:
Free public dns server for personal and business use.
How to find and change Nintendo Wii DNS server IP address
/etc/resolve.conf example
Linux: How to setup as dns client?
Wednesday, June 24, 2009
pc total models
Forum (Number of Posts)
RSS Hardware General
No new posts Hardware General (607)
RSS Hardware
No new posts General Discussion (35997) No new posts AMD Thunderbird (2964) No new posts Home Built (36244) No new posts Overclocking (21654)
No new posts Chips (10959)
RSS Mainboard
No new posts General Discussion (1178) No new posts ABIT (14798) No new posts AOPEN (913) No new posts ASUS (27560)
No new posts Chaintech (1042) No new posts Elitegroup (3984) No new posts Epox (3292) No new posts FIC (1393)
No new posts Gigabyte (8784) No new posts MSI-Microstar (4852) No new posts Shuttle (3030) No new posts Soyo (3178)
No new posts Supermicro (416) No new posts Tyan (2314) No new posts IWill (3)
RSS Video Card
No new posts General (4908) No new posts Nvidia (23732) No new posts ATI (22264) No new posts Matrox (1484)
RSS Peripherals
No new posts Digital Cameras (4390) No new posts Keyboards (631) No new posts PC Networking (2556) No new posts PC Storage (24260)
No new posts CDRom (737)
RSS Hardware General
No new posts Hardware General (607)
RSS Hardware
No new posts General Discussion (35997) No new posts AMD Thunderbird (2964) No new posts Home Built (36244) No new posts Overclocking (21654)
No new posts Chips (10959)
RSS Mainboard
No new posts General Discussion (1178) No new posts ABIT (14798) No new posts AOPEN (913) No new posts ASUS (27560)
No new posts Chaintech (1042) No new posts Elitegroup (3984) No new posts Epox (3292) No new posts FIC (1393)
No new posts Gigabyte (8784) No new posts MSI-Microstar (4852) No new posts Shuttle (3030) No new posts Soyo (3178)
No new posts Supermicro (416) No new posts Tyan (2314) No new posts IWill (3)
RSS Video Card
No new posts General (4908) No new posts Nvidia (23732) No new posts ATI (22264) No new posts Matrox (1484)
RSS Peripherals
No new posts Digital Cameras (4390) No new posts Keyboards (631) No new posts PC Networking (2556) No new posts PC Storage (24260)
No new posts CDRom (737)
Subscribe to:
Comments (Atom)



