Vodafone Ücretsiz Vodafone 50 - 500 GB Arası Internet Paketleri

Lucas.Rintaro

Uzman Üye
Uzman Üye
MIUI Sever
SMS Onaylı
Adım
Lucas
Cihazım
Redmi Note 10 P
Yaş
31
Konum
İzmir
Katılım
15 Eylül 2019
Konular
17
Mesajlar
2.669
Çözümler
5
Tepkime puanı
1.541
Puanları
188
Keşke şifre vermeden nasıl yapacağımızı söyleseydin
 

AftPro

Elit üye
Premium Üye
MIUI Sever
Acemi Üye
Adım
Selçuk
Cihazım
redmi 11
Yaş
26
Konum
ankara
Katılım
16 Temmuz 2024
Konular
1
Mesajlar
54
Çözümler
1
Tepkime puanı
45
Puanları
18
Python koduyla yapılıyor da bendeki kod tek seferlik 50 GB için geçerli.

Kod:
import subprocess
import sys
import time
import requests
import os
import pyfiglet
import base64
import json

def install_module(module):
    subprocess.check_call([sys.executable, "-m", "pip", "install", module])

def check_module(module):
    try:
        __import__(module)
        print(f"[✓] {module} modülü mevcut.")
    except ImportError:
        print(f"[!] {module} modülü bulunamadı. Yükleniyor...")
        install_module(module)

required_modules = ["requests", "pyfiglet"]

for module in required_modules:
    check_module(module)


print(pyfiglet.figlet_format("BAHTSIZ"))
time.sleep(5)
def load_data():
    data = """
    {
        "VP8": {
            "name": "Some Name",
            "age": 30,
            "location": "Some Location"
        }
    }
    """
    return json.loads(data)

data = load_data()


os.system("clear")

telno = input("[+] Tel No Gir 0 olmadan: ")
password = input("[+] VF Şifren'i Gir: ")

headers = {
    "User-Agent": "VodafoneMCare/2308211432 CFNetwork/1325.0.1 Darwin/21.1.0",
    "Content-Length": "83",
    "Connection": "keep-alive",
    "Accept-Language": "tr_TR",
    "Accept-Encoding": "gzip, deflate, br",
    "Host": "m.vodafone.com.tr",
    "Cache-Control": "no-cache",
    "Accept": "*/*",
    "Content-Type": "application/x-www-form-urlencoded"
}

url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"

data = {
    "context": "e30=",
    "username": telno,
    "method": "twoFactorAuthentication",
    "password": password
}

response = requests.post(url, headers=headers, data=data)
proid = response.json().get('process_id')
if proid is None:
    print("[x] Şifre veya Numara Yanlış")
    raise SystemExit()
else:
    print("[✓] Şifre Doğrulama Başarılı")

kod = input("[+] SMS ile Gelen Kodu Gir: ")

veri = {
    "langId": "tr_TR",
    "clientVersion": "17.2.5",
    "reportAdvId": "0AD98FF8-C8AB-465C-9235-DDE102D738B3",
    "pbmRight": "1",
    "rememberMe": "true",
    "sid": proid,
    "otpCode": kod,
    "platformName": "iPhone"
}

base64_veri = base64.b64encode(json.dumps(veri).encode('utf-8'))

data2 = {
    "context": base64_veri,
    "grant_type": "urn:vodafone:params:oauth:grant-type:two-factor",
    "code": kod,
    "method": "tokenUsing2FA",
    "process_id": proid,
    "scope": "ALL"
}

response2 = requests.post(url, headers=headers, data=data2)
sonuc2 = response2.json()

o_head = {
    "Accept": "application/json",
    "Language": "tr",
    "ApplicationType": "1",
    "ClientKey": "AC491770-B16A-4273-9CE7-CA790F63365E",
    "sid": proid,
    "Content-Type": "application/json",
    "Content-Length": "54",
    "Host": "m.vodafone.com.tr",
    "Connection": "Keep-Alive",
    "Accept-Encoding": "gzip",
    "User-Agent": "okhttp/4.10.0"
}

print("[✓] Giriş Yapıldı")
time.sleep(1)


while True:
    os.system("clear")
    print("[?] Hangi İşlemi Yapmak İstiyorsun: ")
    print("\n[1] 50GB Promo İnternet Al\n")
    sec = input("[#] Seçiminiz: ")
    if sec == "1":
        promo_url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"
        print("[+] İnternet Yapılıyor Ayda 1 kere Yapılır")
        data3 = {
            'method': 'getNetworkPromo',
            'promoType': 'growth',
            'sid': proid
        }
        response_x = requests.post(promo_url, headers=headers, data=data3).json()
        sonuc = response_x.get("result")
        if sonuc == "SUCCESS":
            print("[+] 50GB İnternet Yapıldı")
        else:
            print("×", response_x.get("resultDesc", "Bilinmeyen bir hata oluştu"))
        time.sleep(3)
    else:
        print("[!] Geçersiz seçim, tekrar deneyin.")
        time.sleep(2)
 

erdemturan

Tecrübeli Üye
Tecrübeli Üye
MIUI Sever
SMS Onaylı
Adım
Erdem Turan
Cihazım
Xiaomi 11T Pro
Yaş
35
Konum
İstanbul
Katılım
16 Eylül 2017
Konular
23
Mesajlar
573
Çözümler
1
Tepkime puanı
558
Puanları
108
Kod ile denedim, çalışıyor. Teşekkür ederim.
 

WestSemih123

Üye
MIUI Sever
Acemi Üye
SMS Onaylı
Adım
WestSemih123
Cihazım
Redmi
Konum
Türkiye
Katılım
3 Ocak 2022
Konular
25
Mesajlar
74
Tepkime puanı
12
Puanları
8
Python koduyla yapılıyor da bendeki kod tek seferlik 50 GB için geçerli.

Kod:
import subprocess
import sys
import time
import requests
import os
import pyfiglet
import base64
import json

def install_module(module):
    subprocess.check_call([sys.executable, "-m", "pip", "install", module])

def check_module(module):
    try:
        __import__(module)
        print(f"[✓] {module} modülü mevcut.")
    except ImportError:
        print(f"[!] {module} modülü bulunamadı. Yükleniyor...")
        install_module(module)

required_modules = ["requests", "pyfiglet"]

for module in required_modules:
    check_module(module)


print(pyfiglet.figlet_format("BAHTSIZ"))
time.sleep(5)
def load_data():
    data = """
    {
        "VP8": {
            "name": "Some Name",
            "age": 30,
            "location": "Some Location"
        }
    }
    """
    return json.loads(data)

data = load_data()


os.system("clear")

telno = input("[+] Tel No Gir 0 olmadan: ")
password = input("[+] VF Şifren'i Gir: ")

headers = {
    "User-Agent": "VodafoneMCare/2308211432 CFNetwork/1325.0.1 Darwin/21.1.0",
    "Content-Length": "83",
    "Connection": "keep-alive",
    "Accept-Language": "tr_TR",
    "Accept-Encoding": "gzip, deflate, br",
    "Host": "m.vodafone.com.tr",
    "Cache-Control": "no-cache",
    "Accept": "*/*",
    "Content-Type": "application/x-www-form-urlencoded"
}

url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"

data = {
    "context": "e30=",
    "username": telno,
    "method": "twoFactorAuthentication",
    "password": password
}

response = requests.post(url, headers=headers, data=data)
proid = response.json().get('process_id')
if proid is None:
    print("[x] Şifre veya Numara Yanlış")
    raise SystemExit()
else:
    print("[✓] Şifre Doğrulama Başarılı")

kod = input("[+] SMS ile Gelen Kodu Gir: ")

veri = {
    "langId": "tr_TR",
    "clientVersion": "17.2.5",
    "reportAdvId": "0AD98FF8-C8AB-465C-9235-DDE102D738B3",
    "pbmRight": "1",
    "rememberMe": "true",
    "sid": proid,
    "otpCode": kod,
    "platformName": "iPhone"
}

base64_veri = base64.b64encode(json.dumps(veri).encode('utf-8'))

data2 = {
    "context": base64_veri,
    "grant_type": "urn:vodafone:params:oauth:grant-type:two-factor",
    "code": kod,
    "method": "tokenUsing2FA",
    "process_id": proid,
    "scope": "ALL"
}

response2 = requests.post(url, headers=headers, data=data2)
sonuc2 = response2.json()

o_head = {
    "Accept": "application/json",
    "Language": "tr",
    "ApplicationType": "1",
    "ClientKey": "AC491770-B16A-4273-9CE7-CA790F63365E",
    "sid": proid,
    "Content-Type": "application/json",
    "Content-Length": "54",
    "Host": "m.vodafone.com.tr",
    "Connection": "Keep-Alive",
    "Accept-Encoding": "gzip",
    "User-Agent": "okhttp/4.10.0"
}

print("[✓] Giriş Yapıldı")
time.sleep(1)


while True:
    os.system("clear")
    print("[?] Hangi İşlemi Yapmak İstiyorsun: ")
    print("\n[1] 50GB Promo İnternet Al\n")
    sec = input("[#] Seçiminiz: ")
    if sec == "1":
        promo_url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"
        print("[+] İnternet Yapılıyor Ayda 1 kere Yapılır")
        data3 = {
            'method': 'getNetworkPromo',
            'promoType': 'growth',
            'sid': proid
        }
        response_x = requests.post(promo_url, headers=headers, data=data3).json()
        sonuc = response_x.get("result")
        if sonuc == "SUCCESS":
            print("[+] 50GB İnternet Yapıldı")
        else:
            print("×", response_x.get("resultDesc", "Bilinmeyen bir hata oluştu"))
        time.sleep(3)
    else:
        print("[!] Geçersiz seçim, tekrar deneyin.")
        time.sleep(2)
Hocam bunun denildigi gibi 650 gb lik versiyonu varmidir acaba :)
 

gsli_falc

Deneyimli Üye
Deneyimli Üye
MIUI Sever
Adım
Hnsl
Cihazım
Note 10s
Konum
İzmir
Katılım
11 Şubat 2023
Konular
21
Mesajlar
229
Tepkime puanı
32
Puanları
28
Python koduyla yapılıyor da bendeki kod tek seferlik 50 GB için geçerli.

Kod:
import subprocess
import sys
import time
import requests
import os
import pyfiglet
import base64
import json

def install_module(module):
    subprocess.check_call([sys.executable, "-m", "pip", "install", module])

def check_module(module):
    try:
        __import__(module)
        print(f"[✓] {module} modülü mevcut.")
    except ImportError:
        print(f"[!] {module} modülü bulunamadı. Yükleniyor...")
        install_module(module)

required_modules = ["requests", "pyfiglet"]

for module in required_modules:
    check_module(module)


print(pyfiglet.figlet_format("BAHTSIZ"))
time.sleep(5)
def load_data():
    data = """
    {
        "VP8": {
            "name": "Some Name",
            "age": 30,
            "location": "Some Location"
        }
    }
    """
    return json.loads(data)

data = load_data()


os.system("clear")

telno = input("[+] Tel No Gir 0 olmadan: ")
password = input("[+] VF Şifren'i Gir: ")

headers = {
    "User-Agent": "VodafoneMCare/2308211432 CFNetwork/1325.0.1 Darwin/21.1.0",
    "Content-Length": "83",
    "Connection": "keep-alive",
    "Accept-Language": "tr_TR",
    "Accept-Encoding": "gzip, deflate, br",
    "Host": "m.vodafone.com.tr",
    "Cache-Control": "no-cache",
    "Accept": "*/*",
    "Content-Type": "application/x-www-form-urlencoded"
}

url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"

data = {
    "context": "e30=",
    "username": telno,
    "method": "twoFactorAuthentication",
    "password": password
}

response = requests.post(url, headers=headers, data=data)
proid = response.json().get('process_id')
if proid is None:
    print("[x] Şifre veya Numara Yanlış")
    raise SystemExit()
else:
    print("[✓] Şifre Doğrulama Başarılı")

kod = input("[+] SMS ile Gelen Kodu Gir: ")

veri = {
    "langId": "tr_TR",
    "clientVersion": "17.2.5",
    "reportAdvId": "0AD98FF8-C8AB-465C-9235-DDE102D738B3",
    "pbmRight": "1",
    "rememberMe": "true",
    "sid": proid,
    "otpCode": kod,
    "platformName": "iPhone"
}

base64_veri = base64.b64encode(json.dumps(veri).encode('utf-8'))

data2 = {
    "context": base64_veri,
    "grant_type": "urn:vodafone:params:oauth:grant-type:two-factor",
    "code": kod,
    "method": "tokenUsing2FA",
    "process_id": proid,
    "scope": "ALL"
}

response2 = requests.post(url, headers=headers, data=data2)
sonuc2 = response2.json()

o_head = {
    "Accept": "application/json",
    "Language": "tr",
    "ApplicationType": "1",
    "ClientKey": "AC491770-B16A-4273-9CE7-CA790F63365E",
    "sid": proid,
    "Content-Type": "application/json",
    "Content-Length": "54",
    "Host": "m.vodafone.com.tr",
    "Connection": "Keep-Alive",
    "Accept-Encoding": "gzip",
    "User-Agent": "okhttp/4.10.0"
}

print("[✓] Giriş Yapıldı")
time.sleep(1)


while True:
    os.system("clear")
    print("[?] Hangi İşlemi Yapmak İstiyorsun: ")
    print("\n[1] 50GB Promo İnternet Al\n")
    sec = input("[#] Seçiminiz: ")
    if sec == "1":
        promo_url = "https://m.vodafone.com.tr/maltgtwaycbu/api/"
        print("[+] İnternet Yapılıyor Ayda 1 kere Yapılır")
        data3 = {
            'method': 'getNetworkPromo',
            'promoType': 'growth',
            'sid': proid
        }
        response_x = requests.post(promo_url, headers=headers, data=data3).json()
        sonuc = response_x.get("result")
        if sonuc == "SUCCESS":
            print("[+] 50GB İnternet Yapıldı")
        else:
            print("×", response_x.get("resultDesc", "Bilinmeyen bir hata oluştu"))
        time.sleep(3)
    else:
        print("[!] Geçersiz seçim, tekrar deneyin.")
        time.sleep(2)
Aktif mi?
 

ikoox

Yeni Üye
Yeni Üye
MIUI Sever
Adım
İlker
Cihazım
Note 12 pro
Yaş
24
Konum
Ev
Katılım
17 Ekim 2024
Konular
0
Mesajlar
1
Tepkime puanı
0
Puanları
1
Merhaba arkadaşlar Vodafone uygulaması üzerinden 50 gb hediye veriyor bazı kullanıcılarına sistem açığından dolayı farklı şekilde bu paketi DAHA ÖNCEDEN HİÇ ALMAYANLAR İÇİN 50 ve katları şeklinde hediye gb veriyor en yüksek aldığım 650 GB oldu yaptirmak isteyenler tlf no ve yanımda şifresi S yazıp 7000 e SMS gönderip bilgileri vermeniz tamamen ücretsiz yapiyorum. Telegram @slymndknl



Resimleri görmek için giriş yapmanız gerekmektedir.
Hocam daha detaylı anlatabilirmisiniz ne yazıp gönderecez
 
Üst Alt