You are here: Main Site >> Codebase >> Python >> Hidden CMD 
 

Hidden CMD

hartsmor
CodeCount: 19
Posted: 8th March 06:59pm

Information:

Acts like a CMD window but all response, and everything you writes will be hidden.

Python Code:
import getpass, os 
 
while True:
	os.system("CLS"	)
	x = getpass.getpass("")
	os.popen(x)
 

Comments

Information:

No Comments.