├── requirements.txt ├── CONTRIBUTING.md ├── README.md ├── LICENSE ├── CODE_OF_CONDUCT.md └── installer.py /requirements.txt: -------------------------------------------------------------------------------- 1 | git 2 | python2 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # For Contributions Contact me at https://t.me/VoldemortCommunity or https://t.me/hewhomustn0tbenamed 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebSploitInstaller 2 | All-in-One WebSploit Installer for Android Devices (Termux) 3 | 4 | - v0.1 (Uploaded on 20/02/2019 12.30 IST) 5 | 6 | ## For Educational Purposes Only!! xD 7 | ###### P.S. You Know What I Mean! xD 8 | ## Alpha Release Notes!! 9 | 10 | * Completely Functional 11 | 12 | * Report any Bugs at https://t.me/hewhomustn0tbenamed (Telegram) 13 | * Join the Group at https://t.me/VoldemortCommunity (Telegram) 14 | * Enjoy!! 15 | 16 | ### Regards, 17 | ### @voldemort1912!🖖🏻 18 | 19 | ## HOW TO USE!! 20 | * Open a Terminal Run `pkg install git && pkg install python && pkg update` 21 | * Next, Run `git clone https://github.com/jaynammodi/SpotifyChecker` 22 | * Navigate to The Directory using `cd WebSploitInstaller` 23 | * Run the All-in-One Installer using `python installer.py` 24 | * Answer "Yes" to all the questions!! 25 | * It will install all the required Modules for WebSploit! 26 | * Voilà!! 27 | 28 | 29 | 30 | 31 | * Peace!🖖🏻 32 | #### Have Questions? 33 | * Join the Conversation at https://t.me/VoldemortCommunity !! 34 | * DM me @voldemort1912 !! 35 | * DM me on Telegram https://t.me/hewhomustn0tbenamed !! 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at nflix.vol@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /installer.py: -------------------------------------------------------------------------------- 1 | #SELF DESTRUCTIVE WEBSPLOIT Installer for Termux v0.1 2 | #Created by @voldemort1912 (GitHub) 3 | #@hewhomustn0tbenamed (Telegram) 4 | #Created on 20/02/2019 10:52 IST 5 | 6 | #imports 7 | import os 8 | import sys 9 | import subprocess 10 | from time import sleep 11 | from queue import Queue 12 | from os.path import exists 13 | from subprocess import Popen 14 | from threading import Thread, RLock 15 | 16 | #body 17 | 18 | #install requirements 19 | os.system("pkg update -y") 20 | os.system("pkg upgrade -y") 21 | 22 | class Install: 23 | 24 | def __init__(self, path_to_req): 25 | self.lock = RLock() 26 | self.is_alive = True 27 | self.is_reading = True 28 | self.is_installing = False 29 | self.requirements = Queue() 30 | self.path_to_req = path_to_req 31 | 32 | @property 33 | def path_exists(self): 34 | return exists(self.path_to_req) 35 | 36 | def read_file(self): 37 | with open('requirements.txt', mode='rt') as file: 38 | for line in file: 39 | if line: 40 | with self.lock: 41 | self.requirements.put(line.replace('\n', '')) 42 | 43 | self.is_reading = False 44 | 45 | def install(self, name): 46 | print('[+] Installing {} ...'.format(name)) 47 | cmd = 'pkg install -y {}'.format(name) 48 | cmd = cmd.split() 49 | 50 | try: 51 | self.is_installing = True 52 | Popen(cmd).wait() 53 | except: 54 | print('[!] Failed to install {}'.format(name)) 55 | finally: 56 | print('\n') 57 | self.is_installing = False 58 | 59 | def install_all(self): 60 | while self.is_alive: 61 | 62 | while self.requirements.qsize(): 63 | with self.lock: 64 | name = self.requirements.get() 65 | self.install(name) 66 | 67 | def start_primary_threads(self): 68 | read_thread = Thread(target=self.read_file) 69 | install_all_thread = Thread(target=self.install_all) 70 | 71 | read_thread.daemon = True 72 | install_all_thread.daemon = True 73 | 74 | read_thread.start() 75 | install_all_thread.start() 76 | 77 | def start(self): 78 | if self.path_exists: 79 | self.start_primary_threads() 80 | 81 | while self.is_alive: 82 | 83 | try: 84 | if not self.is_reading and not self.requirements.qsize() and not self.is_installing: 85 | self.stop() 86 | sleep(0.5) 87 | except KeyboardInterrupt: 88 | self.stop() 89 | 90 | else: 91 | print('[*] Unable to locate the file requirements.txt') 92 | 93 | def stop(self): 94 | self.is_alive = False 95 | 96 | 97 | if __name__ == '__main__': 98 | path_to_req = 'requirements.txt' 99 | 100 | install = Install(path_to_req) 101 | install.start() 102 | 103 | os.system("pip install --upgrade pip") 104 | os.system("pip2 install requests") 105 | os.system("pip2 install scapy") 106 | 107 | os.system("git clone https://github.com/websploit/websploit $HOME/WebSploit") 108 | os.system("chmod +x $HOME/WebSploit/*") 109 | os.system("echo '\033[01;32;1mWebSploit has Been Installed Successfully.\n\n'") 110 | os.system("echo '\033[01;31mTHE PROGRAM WILL NOW SELF DESTRUCT...\n'") 111 | os.system("echo '\033[01;32;1m \n'") 112 | try: 113 | input("Press Enter to Continue...") 114 | except SyntaxError: 115 | pass 116 | 117 | os.system("echo '\nDeleting!!!\033[0m\n'") 118 | # end of file 119 | dir = os.getcwd() 120 | nam = sys.argv[0] 121 | #print(dir) 122 | #print(nam) 123 | os.remove(dir+'/requirements.txt') 124 | os.remove(dir+'/'+nam) 125 | os.system("rm -rf "+dir) --------------------------------------------------------------------------------