Sartux

Members
  • Content Count

    108
  • Last visited

Everything posted by Sartux

  1. Sartux

    Hello

    Welcome Duncan. I'm new too but it seems pretty good here! :fiesta:
  2. Hi everyone, I noticed there are a lot of people wanting to learn coding (for cracking/hacking) and so I thought I'd write a really basic proxy switcher/tester in python for you to learn with. You can use this to help with scraping or just for testing out a proxy list to see which ones work. It's mainly for learning though so it doesnt do anything fancy. Let me know if you need any help and like if its useful. [hide] #we need to import a few things to make it work first from lxml.html import fromstring from itertools import cycle import requests #This sets a list of proxies. You can get this from many different sites. PROXY_LIST = ['1.10.240.135:8080', '101.109.142.5:8080', '177.124.16.178:45817', '101.109.110.221:8080'] #creates a 'pool' of proxies which is based on the list so it isn't one after another. This helps if you have many sequential proxies. proxy_pool = cycle(PROXY_LIST) #sets an empty list of working proxies which we will populate later working_proxies = [] #sets the url you want to visit - this one just returns an IP address url = 'https://www.canihazip.com/s' #goes through each proxy in the PROXY_LIST - you could set the second part (where len(PROXY_LIST) is) to a big number if you wanted to keep testing. for i in range(0,len(PROXY_LIST)): #Get the next proxy from the pool proxy = next(proxy_pool) print("Request #%d"%i) try: #print response from website response = requests.get(url, proxies={"http": proxy, "https": proxy}) print("working proxy at:"+str(response.content)) working_proxies.append(proxy) except: #if it doesnt work throw a connect error print("Connnection error") #lists all working proxies, it converts the list to a set so it only shows unique values. print("The working proxies are:"+ str(set(working_proxies))) [/hide]
  3. I personally hated ESO because it had auto-leveling enemies. Like it never felt like there was an actual challenge that you could work at and overcome. Like you know when youre playing any other RPG and you try a boss and it absolutely rapes you and then you train up and get new gear and go back and destroy it - its a good feeling right? ESO is constantly that annoying bit where you're just farming semi-tough mobs that you have to think about a tiny bit but not much. On top of that the combat just felt like slightly janky skyrim (which is already janky af)
  4. Epic store is shady af. Have a look here: https://www.reddit.com/r/PhoenixPoint/comments/b0rxdq/epic_game_store_spyware_tracking_and_you/ Even without that I hate tecent - theyre putting pressure on devs to fit everything to shitty chinese censorship and turn everything into chinese friendly grinder games
  5. I liked fallout:New Vegas the most for a post apocalyptic survival game - it's kind of old but really good. You can mod it loads and get it EXACTLY like you want it - like I wanted much stronger mobs so every fight was a proper battle and it took like 5 minutes to mod it in. Wanted weather that effected survival - modded in like 10 minutes. Also liked the Metro series but not played the last one.
  6. Hello everyone I'm new to the site but not to the scene - been cracking and hacking for a while now. Looking to learn new stuff and post some tutorials on the stuff I've picked up. Always up for a chat so PM me if you want to!