Решил глянуть акции сберспасибо и посмотреть что ныне можно получить за бонусы и как получить сами бонусы. Сейчас на Lenta.ru за регистрацию через Сбер ID и последующей траты в день 1 минуты можно получать в сутки до 20 бонусов сберспасибо Подробные условия тут - https://slg.lenta.ru/api/v1/agreements/docs/33DCA45B8B733709BF2B3AA3226E6B3A.pdf Бонусы приходят минут за 10 в сбер, пользуйтесь кому они нужны За месяц выходит от 600 до 640 бонусов, грубо говоря при конвертации 300-320 рублей которые можно условно потратить на оплату вашего мобильного тарифа.
автокласс (к сожалению не лолстим) последних 10 новостей вот эту куку в ф12 ищите например в этом запросе число 10 можно поменять тут import requests import json import random import time def get_auth_key(cookies): headers = { 'Accept': '*/*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } id_value = f'ridG6zwA4BoU5{random.randint(10, 1000000)}s3Fd9zk' json_data = { 'id': id_value, 'params': { 'get_chain_id': True, 'enc_avatar_url_nonce': '', }, } response = requests.post('https://id.lenta.ru/api/v3/profile/getInfo', cookies=cookies, headers=headers, json=json_data) try: auth_key = response.json()['result']['profile']['info']['chain_id']['default'] print(f"auth_key получен: {auth_key}") return auth_key except (KeyError, json.JSONDecodeError) as e: print(f"Ошибка при получении auth_key: {e}") print(f"Ответ сервера: {response.text}") return None headers = { 'Accept': 'application/json, text/plain, */*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } response = requests.get('https://api.lenta.ru/v4-alfa/topics/all?limit=10&filter[type]=Topic::News', headers=headers) data = json.loads(response.text) topics = data['topics'] news_ids = [] for topic in topics: news_id = topic['headline']['info']['id'] news_ids.append(news_id) for a in news_ids: print('https://lenta.ru' + a) input('ёу') cookies = { 'rsid': '',#свою куку сюда суй } auth_key = get_auth_key(cookies) if not auth_key: print("Не удалось получить auth_key, выполнение остановлено.") else: for i in news_ids: headers_get_token = { 'Accept': '*/*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } id_value = f'ridG6zwA4BoU5{random.randint(10, 1000000)}s3Fd9zk' json_data_get_token = { 'id': id_value, 'params': {}, } response_get_token = requests.post('https://id.lenta.ru/api/v3/session/getRsidx', cookies=cookies, headers=headers_get_token, json=json_data_get_token) time.sleep(1) try: token = response_get_token.json()['result']['result']['token'] print(token) except (KeyError, json.JSONDecodeError) as e: print(f"Ошибка при получении токена: {e}") print(f"Ответ сервера: {response_get_token.text}") continue headers_increment = { 'Accept': 'application/json, text/plain, */*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } params_increment = { 'doc_key': i } json_data_increment = { 'reaction': { 'label': 'thumbsup', 'auth_key': [ auth_key, ], 'auth_type': 'rambler_id', 'attrs': { 'rsidx': token, }, }, } response_increment = requests.post('https://surge.lenta.ru/api/v1/docs/reactions/increment', params=params_increment, headers=headers_increment, json=json_data_increment) print(response_increment.text) time.sleep(2) Python import requests import json import random import time def get_auth_key(cookies): headers = { 'Accept': '*/*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } id_value = f'ridG6zwA4BoU5{random.randint(10, 1000000)}s3Fd9zk' json_data = { 'id': id_value, 'params': { 'get_chain_id': True, 'enc_avatar_url_nonce': '', }, } response = requests.post('https://id.lenta.ru/api/v3/profile/getInfo', cookies=cookies, headers=headers, json=json_data) try: auth_key = response.json()['result']['profile']['info']['chain_id']['default'] print(f"auth_key получен: {auth_key}") return auth_key except (KeyError, json.JSONDecodeError) as e: print(f"Ошибка при получении auth_key: {e}") print(f"Ответ сервера: {response.text}") return None headers = { 'Accept': 'application/json, text/plain, */*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } response = requests.get('https://api.lenta.ru/v4-alfa/topics/all?limit=10&filter[type]=Topic::News', headers=headers) data = json.loads(response.text) topics = data['topics'] news_ids = [] for topic in topics: news_id = topic['headline']['info']['id'] news_ids.append(news_id) for a in news_ids: print('https://lenta.ru' + a) input('ёу') cookies = { 'rsid': '',#свою куку сюда суй } auth_key = get_auth_key(cookies) if not auth_key: print("Не удалось получить auth_key, выполнение остановлено.") else: for i in news_ids: headers_get_token = { 'Accept': '*/*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } id_value = f'ridG6zwA4BoU5{random.randint(10, 1000000)}s3Fd9zk' json_data_get_token = { 'id': id_value, 'params': {}, } response_get_token = requests.post('https://id.lenta.ru/api/v3/session/getRsidx', cookies=cookies, headers=headers_get_token, json=json_data_get_token) time.sleep(1) try: token = response_get_token.json()['result']['result']['token'] print(token) except (KeyError, json.JSONDecodeError) as e: print(f"Ошибка при получении токена: {e}") print(f"Ответ сервера: {response_get_token.text}") continue headers_increment = { 'Accept': 'application/json, text/plain, */*', 'Accept-Language': 'ru,en;q=0.9', 'Connection': 'keep-alive', 'Content-Type': 'application/json;charset=UTF-8', 'Origin': 'https://lenta.ru', 'Referer': 'https://lenta.ru/', 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-site', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 YaBrowser/25.2.0.0 Safari/537.36', 'sec-ch-ua': '"Not A(Brand";v="8", "Chromium";v="132", "YaBrowser";v="25.2", "Yowser";v="2.5"', 'sec-ch-ua-mobile': '?0', 'sec-ch-ua-platform': '"Windows"', } params_increment = { 'doc_key': i } json_data_increment = { 'reaction': { 'label': 'thumbsup', 'auth_key': [ auth_key, ], 'auth_type': 'rambler_id', 'attrs': { 'rsidx': token, }, }, } response_increment = requests.post('https://surge.lenta.ru/api/v1/docs/reactions/increment', params=params_increment, headers=headers_increment, json=json_data_increment) print(response_increment.text) time.sleep(2)
Y4sperMaglot, ты просто через приложение или на сайт заходишь, лайкаешь любых 10 постов и получаешь 20 баллов, минута это условное время которое ты потратишь.
Orion Конечно! Вот вам код автокласса на Python. Я постарался сделать его максимально понятным и простым. https://lolz.live/posts/55713159/
Уважаемые,мамонт в ваших высоких технологиях,можете кто нибудь написать подробный гайд по данному абузу? какой софт юзать и как
Ricardo_Milos, ручками 10 раз нажать на смайлик в постах и получить 20 спасибо от сбера . Какой софт , ты че миллион решил заработать Там больше 20 нельзя в сутки получать