Posts

Showing posts from April, 2017

How to Change Windows Password Using Command Prompt

Image
Ethical Hacking Blog How to Change Windows Password Using Command Prompt #Author: ManishHacker1 Hello Friends.. In this article, we will learn How to create Backdoor on our Windows Operating System. Because sometimes, we forget our password then this is an alternate way to log in our Window Operating System without a reinstall. Well, Before Create a backdoor, we will learn, How to change Windows Password using command prompt. First, open your command prompt run as administrator and type following command: Ok, Now type following command in your command prompt. net user and Hit Enter Using above command, you can see your Window Account Name. In my case, I have five account( 31756, administrator, akanksha moga ,Guest and hacked ). In every Operating system for some security reason main Administrator account is always by default on off mode. Well, which account name paasword you want to change. Type following command: net user hacked * and Hit Enter In above command "net user&

What is PYDOC

Image
Python Blog How to use PYDOC #Author: ManishHacker1 Hello everyone, Today my article is about Pydoc. Pydoc is a Python Documentation Tool which help we can search everything about Python Liabrary. What is pydoc? pydoc - the Python documentation tool pydoc.py ... Show text documentation on something. may be the name of a Python keyword, topic, function, module, or package, or a dotted reference to a class or function within a module or module in a package. If contains a '\', it is used as the path to a Python source file to document. If name is 'keywords', 'topics', or 'modules', a listing of these things is displayed. pydoc.py -k Search for a keyword in the synopsis lines of all available modules. pydoc.py -p Start an HTTP server on the given port on the local machine. Port number 0 can be used to get an arbitrary unused port. pydoc.py -g Pop up a graphical interface for finding and serving docu