sPILL_water
Capture the TAPs that are spilling , litering in open .[Equal rights and Equal rules for all]
Content section
STEP 1 - Capture the tap .
STEP 2 - Capture the GPS location .
We would provide the database of water spilling to the NGOs and
the government facilities .
This is being all possible by the help
of you all .
The capture photograph will provide the sufficient infrmation for the tools to bring and easy to find the location .
# importing random
ReplyDeletefrom random import *
# taking input from user
user_pass = input("Enter your password")
# storing alphabet letter to use thm to crack password
password = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j','k',
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't','u','v',
'w', 'x', 'y', 'z',]
# initializing an empty string
guess = ""
# using while loop to generate many passwords untill one of
# them does not matches user_pass
while (guess != user_pass):
guess = ""
# generating random passwords using for loop
for a in password:
for b in password:
for c in password:
for d in password:
for e in password:
for f in password:
guess = str(a+b+c+d+e+f)
print(guess)
# printing guessed passwords
print(guess)
# printing the matched password
print("Your password" , guess)