Skip to main content

Posts

How to Change Windows Password Using Command Prompt

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

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...

How to install Linux(Ubuntu) on Windows Machine

Python Blog How to install Linux(Ubuntu) on Windows Machine #Author: ManishHacker1 Hello everyone Today I will teach you, how to install Linux in your windows machine using vmware workstation. First of all we learn, how to install vmWare workstation on a windows machine. First, we have to Download an updated vmWare. Then open your browser and goto your google search engine and type: "Download vmWare workstation" . Download Link (Unofficial): VMWare Official Link: VMWare After the Downloading of vmWare.exe file, Run this file and follow the givin below steps. After that click next button Follow the step by step picture shown below After installation , launch your VMWare Machine You can see below Picture on your VMWare Machine. Now you can create a New Virtual Machine by clicking on that button. You will see a pop up window in front of you. After that select Custom(Advanced) tab and click next Button. Now you will see below picture. Again clic...
Python Blog How to use UNIX/Linux Commands in your Windows Operating System #Author: ManishHacker1 Hello everyone , Many people work on windows and some of them work on UNIX/Linux but when they work on window operating system then they get confused using command in MS-DOS(Command Prompt). Most of people don't use UNIX/Linux or don't familiar on UNIX operating system and don't know, how to install and use it. But some time those people needs to use UNIX/Linux operating sytem or it's commands and they don't know ,how to use it UNIX operating system or its commands. Some times We want to practice basic UNIX commands but we have not UNIX/Linux operating system. If you don't know how to install UNIX/Linux operating system. Don't worry about that, In my next article i will teach you that how to install UNIX/Linux operating system in your Windows machine. If you want to practice basic UNIX command on your Windows Operating System, you can downloa...

Create Transparent Digital Watch Using wxPython

Krypsec Digital Watch Create Transparent Digital Watch Using wxPython Today we will create Transparent Digital Watch using wxPython. Code #Krypsec Digital Watch #Author: ManishHacker1 import wx import time class MyDialog(wx.Dialog): def __init__(self, parent, id, title): wx.Dialog.__init__(self, parent, id, title, size = (480, 210)) self.Bind(wx.EVT_PAINT, self.OnPaint) self.timer = wx.Timer(self) self.Bind(wx.EVT_TIMER, self.OnTimer, self.timer) self.timer.Start(1000) def Draw(self, dc): t = time.localtime(time.time()) st = time.strftime("%b %d %y,%a \n \t \t \t %I:%M:%S", t) dc.SetBackground(wx.GREY_BRUSH) self.SetTransparent(225) dc.Clear() dc.SetFont(wx.Font(50, wx.SWISS, wx.NORMAL, wx.NORMAL)) tw, th = dc.GetTextExtent(st) dc.DrawText(st, 20, 20) def OnTimer(self, evt): ...