search on web

Cmd commands

Cmd commands

Accessibility Controls :access.cpl

Add Hardware Wizard :hdwwiz.cpl

Add/Remove Programs :appwiz.cpl

Administrative Tools :control admintools

Automatic Updates :wuaucpl.cpl


Bluetooth Transfer Wizard :fsquirt

Calculator :calc

Certificate Manager :certmgr.msc

Character Map :charmap

Check Disk Utility :chkdsk

Clipboard Viewer :clipbrd

Command Prompt :cmd

Component Services :dcomcnfg

Computer Management :compmgmt.msc

timedate.cpl :ddeshare

Device Manager :devmgmt.msc

Direct X Control Panel (If Installed)* :directx.cpl

Direct X Troubleshooter :dxdiag

Disk Cleanup Utility :cleanmgr

Disk Defragment :dfrg.msc

Disk Management :diskmgmt.msc

Disk Partition Manager :diskpart

Display Properties :control desktop

Display Properties :desk.cpl

Display Properties (w/Appearance Tab Preselected)
:control color

Dr. Watson System Troubleshooting Utility
:drwtsn32

Driver Verifier Utility :verifier

Event Viewer :eventvwr.msc

File Signature Verification Tool :sigverif

Findfast :findfast.cpl

Folders Properties :control folders

Fonts :control fonts

Fonts Folder :fonts

Free Cell Card Game :freecell

Game Controllers :joy.cpl

Group Policy Editor (XP Prof) :gpedit.msc

Hearts Card Game :mshearts

Iexpress Wizard :iexpress

Indexing Service :ciadv.msc

Internet Properties :inetcpl.cpl

IP Configuration (Display Connection Configuration)
:ipconfig /all

IP Configuration (Display DNS Cache Contents)
:ipconfig /displaydns

IP Configuration (Delete DNS Cache Contents)
:ipconfig /flushdns

IP Configuration (Release All Connections)
:ipconfig /release

IP Configuration (Renew All Connections)
:ipconfig /renew

IP Configuration (Refreshes DHCP & Re-Registers DNS)
:ipconfig /registerdns

IP Configuration (Display DHCP Class ID)
:ipconfig /showclassid

IP Configuration (Modifies DHCP Class ID)
:ipconfig /setclassid

Java Control Panel (If Installed)
:jpicpl32.cpl

Java Control Panel (If Installed)
:javaws

Keyboard Properties :control keyboard

Local Security Settings :secpol.msc

Local Users and Groups :lusrmgr.msc

Logs You Out Of Windows :logoff

Microsoft Chat :winchat

Minesweeper Game :winmine

Mouse Properties :control mouse

Mouse Properties :main.cpl

Network Connections :control netconnections

Network Connections :ncpa.cpl

Network Setup Wizard :netsetup.cpl

Notepad :notepad

Nview Desktop Manager (If Installed) :nvtuicpl.cpl

Object Packager :packager

ODBC Data Source Administrator :odbccp32.cpl

On Screen Keyboard :osk

Opens AC3 Filter (If Installed) :ac3filter.cpl

Password Properties :password.cpl

Performance Monitor :perfmon.msc

Performance Monitor :perfmon

Phone and Modem Options :telephon.cpl

Power Configuration :powercfg.cpl

Printers and Faxes :control printers

Printers Folder :printers

Private Character Editor :eudcedit

Quicktime (If Installed) :QuickTime.cpl

Regional Settings :intl.cpl

Registry Editor :regedit

Registry Editor :regedit32

Remote Desktop :mstsc

Removable Storage :ntmsmgr.msc

Removable Storage Operator Requests :ntmsoprq.msc

Resultant Set of Policy (XP Prof) :rsop.msc

Scanners and Cameras :sticpl.cpl

Scheduled Tasks :control schedtasks

Security Center :wscui.cpl

Services :services.msc

Shared Folders :fsmgmt.msc

Shuts Down Windows :shutdown

Sounds and Audio :mmsys.cpl

Spider Solitare Card Game :spider

SQL Client Configuration :cliconfg

System Configuration Editor :sysedit

System Configuration Utility :msconfig

System File Checker Utility (Scan Immediately)
:sfc /scannow

System File Checker Utility (Scan Once At Next Boot)
:sfc /scanonce

System File Checker Utility (Scan On Every Boot)
:sfc /scanboot

System File Checker Utility (Return to Default Setting)
:sfc /revert

System File Checker Utility (Purge File Cache)
:sfc /purgecache

System File Checker Utility (Set Cache Size to size x)
:sfc /cachesize=x

System Properties
:sysdm.cpl

Task Manager :taskmgr

Telnet Client :telnet

User Account Management :nusrmgr.cpl

Utility Manager :utilman

Windows Firewall :firewall.cpl

Windows Magnifier :magnify

Windows Management Infrastructure :wmimgmt.msc

Windows System Security Tool :syskey

Windows Update Launches :wupdmgr

Windows XP Tour Wizard :tourstart

Wordpad :write    

Wireless to wired soft AP Creation using airbase-ng

Wireless to wired soft AP Creation using airbase-ng[TUT]

Airbase-ng is a very powerful tool in the aircrack-ng suite, I'll be using it today to show you how you can use this tool to:
  • create a full access point
  • bridge your software access point with your wired internet connection so that connected clients will have full internet access
  • set yourself up to orchestrate a man in the middle attack

    I won't go fully into detail on everything airbase-ng can do, but I urge you to do so yourself at the aircrack-ng website



For this tutorial I'll be using Backtrack 5.
You'll also need two network cards, I'll be using the alfa awus036h and my laptops on board nic plugged into my router.


Alright! Lets get started! First things first, we need to get our network cards ready for the attack.

First the Wired interface:

Run a cable from your ethernet port to your router so that eth0 has internet connection. It should automatically connect but you can always use Wicd network manager to verify.

Now your wireless interface:

Open up your terminal and bring your interface into monitor mode, I'll be using my alfa card for this which is on wlan1:
Code:
airmon-ng start wlan1

Now that our network cards are ready, its time to make our software access point. I like to pick something that people will want to connect to:

Code:
airbase-ng --essid FREE-WIFI -c 6 mon0



You should see that the access point has started and created a tap interface (at0). So note that we now have an open authentication access point created through software that anyone can connect to with the name "FREE-WIFI", however there is not internet access and clients cannot connect to internet, they'll receive a DHCP error.


To fix that, we're going to create a bridge between our tap interface and our laptops wired interface (at0 and eth0 respectively.) Do that by issuing the following commands:

Code:
brctl addbr FREE-WIFI-bridge
brctl addif FREE-WIFI-bridge eth0
brctl addif FREE-WIFI-bridge at0
ifconfig eth0 0.0.0.0 up
ifconfig at0 0.0.0.0 up

Now that everything is configured we'll assign an IP Address to our bridge to ping the gateway and test that everything works.

Code:
ifconfig FREE-WIFI-bridge 192.168.0.123 up
ping 192.168.0.1

Now if your ping requests are going through everything worked and you have a wireless to wired soft access point with full internet capability! All that's left now is to enable ipv4 forwarding in the kernel.

Code:
echo 1 > /proc/sys/net/ipv4/ip_forward


Once a client connects to you, you'll see it on the terminal still running airbase-ng. From here you can open up wireshark and start sniffing on the at0 interface. This is like a router sniffing its own packets, so we can see everything from here!


Now that everything is configured We're ready to get ready for an attack. Remember that not only are we now the man in the middle since all of the traffic is going through our machine, but we can also launch an attack as one machine on a lan to another. There's many things that we can do from here such as metasploit, session hijacking, and webpage redirection to name a few. I won't be going into depth on any of the actual attacks at this time because the possibilities are virtually endless, but there are many great tutorials around CHF, so see what you can come up with from here!

How to Unlock Idea Netsetter USB Modem 2G/3G

DRIVERS AND SOFTWARE Lenovo G480 (2184, 20149), G580 (2189, 20150), G780


Conexant Audio Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Conexant Audio Driver
0qau10ww.exe
104MB
Windows 7 32bit,
Windows 7 64bit
8.54.32.50(Smart Audio: 6.0.131.0)28 May 2012
Realtek Audio Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Realtek Audio Driver
0lau07ww.exe
187MB
Windows 7 32bit,
Windows 7 64bit
6.0.1.654915 Aug 2012
Bluetooth Driver (CyberTan, Liteon) for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Bluetooth Driver (CyberTan, Liteon)
0lbl09ww.exe
515MB
Windows 7 32bit,
Windows 7 64bit
6.5.1.2602/7.4.0.103/7.4.0.130/6.5.1.260215 Aug 2012
Bluetooth Driver (CyberTan/Broadcom, Liteon/Broadcom, Liteon/Atheros) for Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Bluetooth Driver (CyberTan/Broadcom, Liteon/Broadcom, Liteon/Atheros)
0qbl10ww.exe
320MB
Windows 7 32bit,
Windows 7 64bit
6.5.1.3200/7.4.0.13509 Apr 2013
TouchPad Driver (Synaptics, Elan) for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
TouchPad Driver (Synaptics, Elan)
0lto15ww.exe
267MB
Windows 7 32bit,
Windows 7 64bit
16.0.5.3/10.4.6.315 Aug 2012
Touchpad Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Touchpad Driver (Synaptics, ElanTECH)
0qto10ww.exe
272MB
Windows 7 32bit,
Windows 7 64bit
16.0.5.1/11.4.3.302 Sep 2012
Atheros LAN Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Atheros LAN Driver
0qla04ww.exe
5.33MB
Windows 7 32bit,
Windows 7 64bit
2.0.14.1528 May 2012
Wireless LAN Driver (Liteon/Atheros, CyberTan/Broadcom) for Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Wireless LAN Driver (Liteon/Atheros, CyberTan/Broadcom)
0qwm05ww.exe
61.6MB
Windows 7 32bit,
Windows 7 64bit
9.2.0.502/5.100.82.11209 Apr 2013
Intel WiMax Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Intel WiMax Driver
0qwo03ww.exe
64.0MB
Windows 7 32bit,
Windows 7 64bit
7.0.1010.2631 Mar 2012
Wireless LAN Driver (CyberTan, Liteon) for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Wireless LAN Driver (CyberTan, Liteon)
0lwo04ww.exe
79.3MB
Windows 7 32bit,
Windows 7 64bit
5.100.82.95/9.2.0.502/9.2.0.41915 Aug 2012
Intel Wireless LAN Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2184, 20149), G580 (2189, 20150), G780
NameOperating SystemVersionReleasedAdd to download listDownload now
Intel Wireless LAN Driver
0qwl06ww.exe
229MB
Windows 7 32bit,
Windows 7 64bit
15.0.0.7531 Mar 2012
Intel Wireless LAN Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Intel Wireless LAN Driver
0lwl04ww.exe
229MB
Windows 7 32bit,
Windows 7 64bit
15.0.0.7529 Mar 2012
Intel Wimax Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Intel Wimax Driver 
0lwm03ww.exe
90.3MB
Windows 7 32bit,
Windows 7 64bit
7.0.1010.2629 Mar 2012
Atheros Wireless Lan Driver for Microsoft Windows 7 (32-bit, 64-bit) - Lenovo G480 (2688, 20156), G580 (2689, 20157)
NameOperating SystemVersionReleasedAdd to download listDownload now
Atheros Wireless Lan Driver
0lla04ww.exe
5.31MB
Windows 7 32bit,
Windows 7 64bit
2.0.9.929 Mar 2012
Lenovo Energy Management for Windows 7 (32-bit, 64-bit) - Notebook
NameOperating SystemVersionReleasedAdd to download listDownload now
Lenovo Energy Management
cagt26ww.exe
21.2MB
Windows 7 32bit,
Windows 7 64bit
7.0.3.424 Oct 2012

Add