Skip to content

Instantly share code, notes, and snippets.

View Issacx's full-sized avatar

Issac Issacx

  • on brian krebs forhead
View GitHub Profile
import os
import sys
def writePassword(password)
passwd = raw_input('Enter your password: ')
file = 'pass.txt'
try:
if !(os.path.exists):
oFile = open(file, 'wr+')
oFile.write(passwd)
oFile.close