This project is for educational purposes and I, the developer, am not responsible for who or what happens with this script. This was mostly for cybersecurity research purposes on my end.
- In the
Auto_Vote.pyyou'll have to change this todriver.get("<Your Voting page URL>")with your URL to who you want to vote for the CampusTech giveaway. For the script to work correctly, you'll need to use ahttps://campustech.org/tech-the-halls?entry_id=xxxURL, you can get that URL by clicking the share button on whoever you want to spam vote. - At the bottom of
Auto_Vote.py, there's these couple lines, where it saysfor _ in range(100), change the 100 to whatever number of instances you want to run. If you choose a high number like 100 and stop the script mid-way, the script will essentially be a virus and you'll see why if that happens to you, so don't stop the script mid-way.
if __name__ == "__main__":
processes = []
for _ in range(100):
p = multiprocessing.Process(target=vote)
p.start()
processes.append(p)
time.sleep(random.randint(10, 600))
for p in processes:
p.join()- Run
python install -r requirements.txtorpy install -r requirements.txtto install the dependencies - And then run
python Auto_Vote.pyorpy Auto_Vote.pyto run the script
Should be easy to understand