![]() |
|
Any idea with my code? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: Any idea with my code? (/Thread-Any-idea-with-my-code--107409) |
Any idea with my code? - D0R3K - 04-17-2019 import urllib proxa = raw_input("Add http proxylist: ") file = open(proxa,'r') sor = file.readline() while sor: sor = file.readline() lines = file.read().splitlines() for i in range(len(lines)): line = lines[i] next_line = lines[i+1] next_line = file.readline() x = raw_input("Adfly link: ") proxies = {'http': sor} b = urllib.urlopen(x, proxies=proxies).read() |