diff --git a/README.md b/README.md index c9c3140..23fcd18 100644 --- a/README.md +++ b/README.md @@ -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: iletisim@UN5T48L3.com diff --git a/UNSTABLE.py b/UNSTABLE.py index 1483105..3ae662b 100644 --- a/UNSTABLE.py +++ b/UNSTABLE.py @@ -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 @@ -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: @@ -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: diff --git a/requirement.txt b/requirement.txt new file mode 100644 index 0000000..37082e2 --- /dev/null +++ b/requirement.txt @@ -0,0 +1,4 @@ +pysocks +bs4 +scapy +beautifulsoup4 \ No newline at end of file