Programmer

Programmer This page is all about Hacking, tracking, programming, computer tips, tricks and tweaks. Tell you later...

01/11/2017

METHOD FOR MAKING WINDOWS XP GENUINE.

Bypass and Remove “This copy of Windows is not genuine and You may be victim of software countereiting”.
1) Lauch Windows Task Manager by pressing cltr + Alt + Del.
2) End wgatray.exe process in Task Manager.
3) Restart Windows XP in Safe Mode.
4) Delete WgaTray.exe from c:\Windows\System32.
5) Delete WgaTray.exe from c:\Windows\System32\dllcache.
6) Lauch RegEdit.
7) Browse to the following location:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon\Notify

8) Delete the folder ‘WgaLogon’ and all its contents
9) Reboot Windows XP.

And You Are Done!

~~~ Hope, you will enjoy ! ~~~~

11/09/2017

You May Try it...

15/06/2017

Hi Guys,
Today I’m going to share with you another very useful notepad trick. i.e.. How to Blink Keyboard’s Led?

Let’s begin the trick to blink the keyboard led like Disco using notepad.

1) Open notepad.
2) Copy and paste the code below into the notepad

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

3) Save the file with name anything.vbs
4) Double click on the saved file and your keyboard Led’s will start blinking like disco lights.
5) To stop the disco lights open task manager (ALT+CTRL+DEL)
6) Now look for wscript.exe and select it. Click on “End Process “

Note: If there is any antivirus in your system that may delete this file, because it seems as a virus. But in reality, it not a virus. So, just be informed about it.

15/06/2017

Today, I'm going to post some useful Application file name (Shortcut word) to open the application from the RUN or Command Prompt. Better you can use RUN to open.

It is very easy to use. Just type these Application File Name in RUN or COMMAND PROMPT.

COMMANDS TO OPEN APPLICATION:

 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

 Date and Time Properties = timedate.cpl
 DDE Shares = 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/desk.cpl
 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 = ipconfig

 Java Control Panel (If Installed) = jpicpl32.cpl
 Java Application Cache Viewer (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 = sfc
 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

Enjoy!!

23/04/2017

Only for PC Lover:

I'm going to explain how to create a Free USB Antivirus, using the windows notepad and a few little scripts. This Free USB Antivirus is very powerful against autorun.inf virus, and it takes no time to create and no time to run.

If you are at good command of DOS and Batch files you can customize it. I want to warn you to be careful when using this procedure, because you may loose data on your hard disk or
USB Flash Memory Device, and I am not going take any responsibility of any damage of your data. So be aware about it.

:

Open your notepad or any text editor.

:

Type the exact text in notepad:

@ echo off
del F
:\*.inf
@ echo file deleted or no file exists
pause
Explanation:
@ echo off

Actually, It is a DOS Command that makes the system provides no confirmation messages

del F:\*.inf
“del” is the command that deletes the desired file from the drive
“F:”

Where, “F:” is your USB drive letter

and you can change it as you wish

“*.inf” is the file that must be deleted

:

Save the file giving the extension bat to the created file so it should be like that

mysimpleantivirus.bat

:

Test your simple antivirus by creating a dummy autorun.inf file on your USB Drive. But be careful as I told you above.

When you double click the file mysimpleantivirus.bat it will delete the autorun.inf

Now you have added 50% protection to your system for Free

Enjoy!!

Now You have created your own Free USB Antivirus.😎😎

22/04/2017

How to hack Windows Password (XP, Vista, Windows 7)

: For XP only (Easiest one way)

1) Open Windows in Safe Mode (Administrator A/c)

2) Open Run, and Type "Control UserPasswordS2" without semicolon.

And then click on Administrator and change the Password. Or Even you can remove Password by clicking on Remove "Password option".

It will not ask for the old password.

Enjoy!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

: For XP Only

If you have an Administrator Account (Not Guest), then the XP Users' Passwords can be reset using Command Prompt.

1) Open Run and type "CMD" to open Command Prompt.

2) Now type "NET USER"
(Now You can see the list of all user available in the System/ Computer)

Suppose, there are three Administrator Users with the name of Admin1, Admin2, Admin3.

3) Then type the Password of Any User can be changed by Logging into the Account of any one Administrator.

For Example, if we want to change the password of Admin1,

then we can change the Password of Admin1 by using following command in Command Prompt.

Syntax:
NET USER

Command:
NET USER ADMIN1 Password@123

Hints.: Password@123 is the new password. Where you can give any one which you want.

Limitations: The Above method will only work if you are logged in as the ADMINISTRATOR user.

Enjoy!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

: For XP Only.

Windows Recovery Option.

Boot from the Windows XP CD and Press Enter when you are prompted to Install Windows Copy on the next screen, there is a repair Existing Windows version. This method is also known as Windows Recovery Method.

The Repair Option will take as much time as the installation would have taken because the Windows file system is replaced including the same file where the password is stored.

C:\WINDOWS\SYSTEM32\CONFIG\SAM

Whereas the users' setting remain untouched.

Thus the users' Password is reset to null value.

Enjoy!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

: For XP Only.

Boot the comp in Safe Mode.

Disable Password.

:D :D :D

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

: For XP, Vista, Windows 7

Boot your computer from a live Linux CD or DVD which has an NTFS/HPFS file-system support.

Then count the drive which has windows copy Installed on it. Copy the SAM file on the location.

C:\WINDOWS\SYSTEM32\CONFIG\SAM

Which will be mentioned as /MEDIA/DISK-1/WINDOWS/SYSTEM32/CONFIG/SAM

It is a common Misconception that SAM file can be viewed through normal text editor, SAM File isn't a normal text file.

GNOME, KDE or VIM Text Editors won't display the content of this file.

Open the file using EMACS editor (available in nearly all the distributions of live Linux). It will be hard to find the password Hashes, so go for the User-Name Passwords' hashes can be found out, copy the code between "%" sign and on the Google Search for the Rainbow Tables, they will provide the DECRYPTED value which have already been brute-forced earlier. This isn't a sure shot method, as the rainbow project is still under development. The Password can be set to null by deleting the content, but this might result in the corruption of the SAM file, and recovery is the only option left after it.

Limitations: This method can corrupt your SAM file, which may lead to a repair of Windows XP, and you can risk your personal data with that.

Enjoy!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

: For XP, Vista, Windows 7

Bestest way that works in all windows platform but you need to be a admin to do this.

1) Go to run

2) Type COMPMGMT.MSC

3) Click on local users and groups.

4) Open up the ‘users’ folder

5) Click on the user name whom you want to change password of. Look for password never expires option which is checked

6) Uncheck password never expires option and apply and press OK.

7) Then go back to the user name and right click the mouse there you will get

- set password…
- all tasks
- delete
- rename
- properties
- help

And now you are done.

Enjoy!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

21/04/2017



BASIC OF HACKING
Hacker means someone who finds weaknesses in a computer or computer network, though the term can also refer to someone with an advanced understanding of computers and computer networks.Hackers may be motivated by a multitude of reasons, such as profit, protest, or challenge. The subculture that has evolved around hackers is often referred to as the computer underground but it is now an open community. While other uses of the word hacker exist that are not related to computer security, they are rarely used in mainstream context.

Classifications:-

Several subgroups of the computer underground with different attitudes use different terms to demarcate themselves from each other, or try to exclude some specific group with which they do not agree. Eric S. Raymond (author of The New Hacker's Dictionary) advocates that members of the computer underground should be called crackers. Yet, those people see themselves as hackers and even try to include the views of Raymond in what they see as one wider hacker culture, a view harshly rejected by Raymond himself. Instead of a hacker/cracker dichotomy, they give more emphasis to a spectrum of different categories, such as white hat, grey hat, black hat and script kiddie.

White Hat:-

A white hat hacker breaks security for non-malicious reasons, perhaps to test their own security system or while working for a security company which makes security software. The term "white hat" in Internet slang refers to an ethical hacker. This classification also includes individuals who perform pe*******on tests and vulnerability assessments within a contractual agreement. The EC-Council , also known as the International Council of Electronic Commerce Consultants has developed certifications, course ware, classes, and online training covering the diverse arena of Ethical Hacking.

Black Hat:-

A "black hat" hacker is a hacker who "violates computer security for little reason beyond maliciousness or for personal gain" (Moore, 2005). Black hat hackers form the stereotypical, illegal hacking groups often portrayed in popular culture, and are "the epitome of all that the public fears in a computer criminal". Black hat hackers break into secure networks to destroy data or make the network unusable for those who are authorized to use the network.

Part 1: Targeting

The hacker determines what network to break into during this phase. The target may be of particular interest to the hacker, either politically or personally, or it may be picked at random. Next, they will port scan a network to determine if it is vulnerable to attacks, which is just testing all ports on a host machine for a response. Open ports—those that do respond—will allow a hacker to access the system.

Part 2: Research And Information Gathering

It is in this stage that the hacker will visit or contact the target in some way in hopes of finding out vital information that will help them access the system. The main way that hackers get desired results from this stage is from "social engineering", which will be explained below. Aside from social engineering, hackers can also use a technique called "dumpster diving". Dumpster diving is when a hacker will literally search through users' garbage in hopes of finding documents that have been thrown away, which may contain information a hacker can use directly or indirectly, to help them gain access to a network.

Part 3: Finishing The Attack

This is the stage when the hacker will invade the preliminary target that he/she was planning to attack or steal. Many "hackers" will be caught after this point, lured in or grabbed by any data also known as a honeypot (a trap set up by computer security personnel).

Grey Hat:-

A grey hat hacker is a combination of a Black Hat and a White Hat Hacker. A Grey Hat Hacker may surf the internet and hack into a computer system for the sole purpose of notifying the administrator that their system has been hacked, for example. Then they may offer to repair their system for a small fee.

Elite Hacker:-

A social status among hackers, elite is used to describe the most skilled. Newly discovered exploits will circulate among these hackers. Elite groups such as Masters of Deception conferred a kind of credibility on their members.

Script Kiddi:-

A script kiddie (or skiddie) is a non-expert who breaks into computer systems by using pre-packaged automated tools written by others, usually with little understanding of the underlying concept—hence the term script (i.e. a prearranged plan or set of activities) kiddie (i.e. kid, child—an individual lacking knowledge and experience, immature).

Neophyt:-

A neophyte, "n00b", or "newbie" is someone who is new to hacking or phreaking and has almost no knowledge or experience of the workings of technology, and hacking.

Blue Hat:-

A blue hat hacker is someone outside computer security consulting firms who is used to bug test a system prior to its launch, looking for exploits so they can be closed. Microsoft also uses the term BlueHat to represent a series of security briefing events.

Hacktivis:-

A hacktivist is a hacker who utilizes technology to announce a social, ideological, religious, or political message. In general, most hacktivism involves website defacement or denial-of-service attacks. Nation state Intelligence agencies and cyberwarfare operatives of nation states.

Attack:-

A typical approach in an attack on Internet-connected system is:

1. Network enumeration: Discovering information about the intended target.

2. Vulnerability analysis: Identifying potential ways of attack.

3. Exploitation: Attempting to compromise the system by employing the vulnerabilities found through the vulnerability analysis.

In order to do so, there are several recurring tools of the trade and techniques used by computer criminals and security experts.

Security Exploit:-

A security exploit is a prepared application that takes advantage of a known weakness. Common examples of security exploits are SQL injection, Cross Site Scripting and Cross Site Request Forgery which abuse security holes that may result from substandard programming practice. Other exploits would be able to be used through FTP, HTTP, PHP, SSH, Telnet and some web-pages. These are very common in website/domain hacking.
Techniques

Vulnerability Scanner:-

A vulnerability scanner is a tool used to quickly check computers on a network for known weaknesses.Hackers also commonly use port scanners. These check to see which ports on a specified computer are "open" or available to access the computer, and sometimes will detect what program or service is listening on that port, and its version number. (Note that firewalls defend computers from intruders by limiting access to ports/machines both inbound and outbound, but can still be circumvented.)

Password Cracking:-

Password cracking is the process of recovering passwords from data that has been stored in or transmitted by a computer system. A common approach is to repeatedly try guesses for the password.

Packet Sniffer:-

A packet sniffer is an application that captures data packets, which can be used to capture passwords and other data in transit over the network.

Spoofing Attack (Phishing):-

A spoofing attack involves one program, system, or website successfully masquerading as another by falsifying data and thereby being treated as a trusted system by a user or another program. The purpose of this is usually to fool programs, systems, or users into revealing confidential information, such as user names and passwords, to the attacker.

Rootkit:-

A rootkit is designed to conceal the compromise of a computer's security, and can represent any of a set of programs which work to subvert control of an operating system from its legitimate operators. Usually, a rootkit will obscure its installation and attempt to prevent its removal through a subversion of standard system security. Rootkits may include replacements for system binaries so that it becomes impossible for the legitimate user to detect the presence of the intruder on the system by looking at process tables.

Social Engineering:-

When a Hacker, typically a black hat, is in the second stage of the targeting process, he or she will typically use some social engineering tactics to get enough information to access the network. A common practice for hackers who use this technique, is to contact the system administrator and play the role of a user who cannot get access to his or her system.

Trojan Horses:-

A Trojan horse is a program which seems to be doing one thing, but is actually doing another. A trojan horse can be used to set up a back door in a computer system such that the intruder can gain access later. (The name refers to the horse from the Trojan War, with conceptually similar function of deceiving defenders into bringing an intruder inside.)

Viruses:-

A virus is a self-replicating program that spreads by inserting copies of itself into other executable code or documents. Therefore, a computer virus behaves in a way similar to a biological virus, which spreads by inserting itself into living cells. While some are harmless or mere hoaxes most computer viruses are considered malicious.

Worm:-

Like a virus, a worm is also a self-replicating program. A worm differs from a virus in that it propagates through computer networks without user intervention. Unlike a virus, it does not need to attach itself to an existing program. Many people conflate the terms "virus" and "worm", using them both to describe any self-propagating program.

Key Loggers:-

A key logger is a tool designed to record ('log') every keystroke on an affected machine for later retrieval. Its purpose is usually to allow the user of this tool to gain access to confidential information typed on the affected machine, such as a user's password or other private data. Some key loggers uses virus-, trojan-, and rootkit-like methods to remain active and hidden. However, some key loggers are used in legitimate ways and sometimes to even enhance computer security. As an example, a business might have a key logger on a computer used at a point of sale and data collected by the key logger could be used for catching employee fraud.

21/04/2017

Let's talk about the Programming....
Are you crazy to be a Programmer??
How much??

28/07/2014

What we think, we'll do. We all are dedicated to serve you.
Our IT Experts have you covered.

Remember us for Software Development and Training by The Expert Programmers.

28/07/2014

This page is all about Hacking, tracking, programming, computer tips, tricks and tweaks.

You May Try it...
24/07/2014

You May Try it...

Address

Biratnagar/
Biratnagar

Website

Alerts

Be the first to know and let us send you an email when Programmer posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Programmer:

Share