Skip to content

Instantly share code, notes, and snippets.

@betillogalvan
Created October 23, 2018 10:44
Show Gist options
  • Save betillogalvan/df6942ab44ef3efff6d8886ac783e329 to your computer and use it in GitHub Desktop.
Save betillogalvan/df6942ab44ef3efff6d8886ac783e329 to your computer and use it in GitHub Desktop.
XS><ILL.py
#!/usr/bin/env python
#XS><ILL by B2G
#twitter.com/betillogalvan1
#Requiriments | pip install splinter
import os
import time
from splinter import Browser
#Banner
banner = """
/$$ /$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$ /$$
| $$ / $$ /$$__ $$| $$ /$$/|_ $$_/| $$ | $$
| $$/ $$/| $$ \__/ \ $$ /$$/ | $$ | $$ | $$
\ $$$$/ | $$$$$$ \ $$ /$$/ | $$ | $$ | $$
>$$ $$ \____ $$ /$$/| $$ | $$ | $$ | $$
/$$/\ $$ /$$ \ $$ /$$/ \ $$ | $$ | $$ | $$
| $$ \ $$| $$$$$$/ /$$/ \ $$ /$$$$$$| $$$$$$$$| $$$$$$$$
|__/ |__/ \______/ |__/ \__/|______/|________/|________/
@betillogalvan1
"""
#Example
#https://yourpage.com/?s=
print ('\033[1;31m'+ banner)
allpayloads = []
rurl= raw_input("Enter Website: \n")
#Add payloads path
with open('/tmp/payload.txt') as f:
for line in f:
line = line.strip()
allpayloads.append(line)
for i in allpayloads:
with Browser() as browser:
finalurl = rurl+i
browser.visit(finalurl)
print ('\033[0;32m' +'Payload Injected \n'+finalurl)
#Awaiting
time.sleep(10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment