Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tiny modification and addition in UNSTABLE #1

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@
### Nasıl Kullanılır? - How To Use?
>python3 UNSTABLE.py

Video: https://www.youtube.com/watch?v=2hib9WjpJo8
$ pip install -r requirement.txt

$ python3 UNSTABLE.py

Bu araç sadece eğitim amaçlı kodlanmış olup, doğabilecek zararlardan tamamen kullanıcı sorumludur.
after done requirements, do everything by giving instructions while executing scrip

This tool was coded for educational purposes only and tiny modification by A1python

/Bu araç sadece eğitim amaçlı kodlanmış olup, doğabilecek zararlardan tamamen kullanıcı sorumludur.


Contact: [email protected]
19 changes: 5 additions & 14 deletions UNSTABLE.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
import socket
import socks
import threading
import random
import re
import urllib.request
import os
import sys

from bs4 import BeautifulSoup
import socket,socks,threading,re,urllib.request,random,os,sys,logging

import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) # C0d3d by UN5T48L3

if sys.platform.startswith("linux"): # C0d3d by UN5T48L3
Expand Down Expand Up @@ -131,7 +122,7 @@ def floodport():

def proxymode():
global choice2
choice2 = input("Do you want proxy/socks mode? Answer 'y' to enable it: ")
choice2 = input("Do you want proxy/socks mode?(Y or N): ").lower()
if choice2 == "y":
choiceproxysocks()
else:
Expand All @@ -145,18 +136,18 @@ def choiceproxysocks():
elif choice3 == "1":
choicedownsocks()
else:
print ("You mistyped, try again.")
print("You mistyped, try again.")
choiceproxysocks()

def choicedownproxy():
choice4 = input("Do you want to download a new list of proxy? Answer 'y' to do it: ")
choice4 = input("Do you want to download a new list of proxy?(Y or N): ").lower()
if choice4 == "y":
choicemirror1()
else:
proxylist()

def choicedownsocks():
choice4 = input("Do you want to download a new list of socks? Answer 'y' to do it: ")
choice4 = input("Do you want to download a new list of socks?(Y or N): ").lower()
if choice4 == "y":
choicemirror2()
else:
Expand Down
4 changes: 4 additions & 0 deletions requirement.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pysocks
bs4
scapy
beautifulsoup4