Wednesday, August 27, 2025

Cyber How to hv tge specific engine offline for the intranet-marinha-pt access

 
















import requests

proxies = {
    'http': 'http://192.168.1.1:8080',
    'https': 'http://192.168.1.1:8080',
}

url = 'http://192.168.1.100/internal-api'
response = requests.get(url, proxies=proxies)

print(response.text)

curl -x http://192.168.1.1:8080 http://192.168.1.100/internal-api

headers = {'Authorization': 'Bearer YOUR_TOKEN'}
response = requests.get(url, headers=headers, proxies=proxies)


No comments:

Hack mil elsa GET REQUEST special character defesa.pt

  https://example.com/api/data?query=hello%20world https://example.com/api/data?search=rock%26roll%3Dawesome%23fun https://intranet.marinha....