mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 04:01:51 +09:00
[Update] 여러 url을 연속으로 돌릴 수 있음
This commit is contained in:
parent
a2c88daa74
commit
802b8311a7
3 changed files with 15 additions and 22 deletions
|
|
@ -11,26 +11,15 @@ def is_html_url(url: str, timeout: float = 10.0) -> bool:
|
|||
"""
|
||||
|
||||
try:
|
||||
# HEAD 요청으로 헤더만 가져와도 충분하지만, 일부 서버에서 HEAD를 허용하지 않을 수 있어
|
||||
# GET 요청을 사용해도 무방합니다. 단, GET은 바디를 가져오기 때문에 HEAD보다 비용이 높을 수 있음.
|
||||
response = requests.head(url, timeout=timeout, allow_redirects=True)
|
||||
with requests.get(url, timeout=timeout, stream=True) as response:
|
||||
# 응답 코드가 200번대가 아니면 False로 간주
|
||||
if not response.ok:
|
||||
return False
|
||||
|
||||
# 만약 HEAD 요청에 실패하거나 서버가 405(Method Not Allowed)를 반환하면, GET 요청으로 재시도
|
||||
if response.status_code == 405:
|
||||
response = requests.get(url, timeout=timeout, stream=True)
|
||||
|
||||
# 응답 코드가 200번대가 아니면 False로 간주
|
||||
if not response.ok:
|
||||
return False
|
||||
|
||||
content_type = response.headers.get('Content-Type', '')
|
||||
# Content-Type에 'text/html'이 포함되어 있으면 HTML로 간주
|
||||
return content_type.lower().startswith('text/html')
|
||||
|
||||
except requests.RequestException as e:
|
||||
# 네트워크 오류, 타임아웃 등 예외 발생 시 False 반환
|
||||
# 필요하다면 로그를 찍거나 예외를 다시 던질 수 있습니다.
|
||||
print(f"Error fetching URL: {e}")
|
||||
content_type = response.headers.get('Content-Type', '')
|
||||
# Content-Type에 'text/html'이 포함되어 있으면 HTML로 간주
|
||||
return content_type.lower().startswith('text/html')
|
||||
except requests.RequestException:
|
||||
return False
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
3
main.py
3
main.py
|
|
@ -171,7 +171,8 @@ async def loop():
|
|||
"wildwoodcasino.net",
|
||||
"accounts.firefox.com",
|
||||
"addons.allizom.org",
|
||||
"api.profiler.firefox.com"]
|
||||
"api.profiler.firefox.com"
|
||||
]
|
||||
|
||||
for url in target_list:
|
||||
await scan_one_url(f'https://{url}')
|
||||
|
|
|
|||
3
oauth_providers.csv
Normal file
3
oauth_providers.csv
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
issuer,provider,oauth_uri
|
||||
https://velog.io,Google,https://v3.velog.io/api/auth/v3/social/callback/google
|
||||
https://velog.io,GitHub,https://v2.velog.io/api/v2/auth/social/callback/github?next=
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue