Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
도구/GitHubGitHub/proviesec/google-dorks
OSINT (Open Source Intelligence)ReconnaissanceVulnerability AnalysisInformation GatheringWeb SecuritySecret DetectionMisconfigurationCurated Resources
GitHubproviesec/google-dorks

google-dorks

# 웹 보안 및 버그 바운티에 유용한 Google Dorks

저장소 보기
1.3k24271개월 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

google-dorks (2026년 1월 업데이트)

License contributions Proviesec logo Twitter Buy Me A Coffee Buy Me A Coffee 이 글도 읽어보세요, 제 Medium 블로그:👩‍💻Proviesec Security Medium 기사 - 읽어보기

Table of Contents

  • 소개
  • 내가 사랑하는 google dork
  • 검색 필터
  • 연산자
    • 검색어
    • OR
  • 아이디어
  • 링크
  • 예시
  • GOOGLE DORKS 방지

소개

⭐ GitHub에서 Star를 눌러주세요 — 큰 동기부여가 됩니다! ⭐

google dork가 있으면 PullRequest를 만들거나 트위터로 저에게 알려주세요. Twitter

Google Dorks에 관한 제 Medium 기사 google dorks 사용 방법

내가 사랑하는 google dork

root@kitploit:~
intext:"index of" "parent directory"

검색 필터

연산자

검색어

이 연산자는 따옴표 안의 정확한 용어만 검색합니다. 예를 들어 찾는 용어가 모호하거나 다른 것과 쉽게 혼동될 수 있거나 관련 결과가 충분하지 않을 때 사용할 수 있습니다.

예시는 다음과 같습니다.

root@kitploit:~
"Admin Loginpage"

OR

이 연산자는 특정 검색어 또는 다른 검색어를 검색합니다.

root@kitploit:~
site:instagram.com | site:github.com

AND

이 연산자는 특정 검색어와 다른 검색어를 함께 검색합니다.

root@kitploit:~
site:github.com & site:twitter.com

연산자 조합

이 연산자는 검색어를 결합합니다.

root@kitploit:~
(site:instagram.com | site:twitter.com) (intext:"admin")
(site:instagram.com | site:twitter.com) & intext:"admin"

결과 포함

검색어가 나타난 횟수에 따라 결과를 정렬합니다.

root@kitploit:~
site:twitter.com +site:twitter.*

결과 제외

root@kitploit:~
site:twitter.* -site:twitter.com

더 나은 결과 (하위 도메인)

root@kitploit:~
site:*.site.com

site:*.*.site.com

site:*.*.*.site.com

동의어

root@kitploit:~
~set

Glob 패턴 (*)

root@kitploit:~
site:*.com

아이디어

  • Git google dorks
  • phpmyadmin google dorks
  • phpinfo google dorks
  • 로그 파일 google dorks
  • 엑셀 파일용 google dorks
  • 프레젠테이션용 Google Dorks
  • 최고의 google dorks 보고서
  • google dorks로 AWS 시크릿 찾기
  • google dorks로 JS 시크릿 찾기
  • CMS google dorks
    • Wordpress
    • Typo3
    • Magento
    • Joomla
    • Drupal
    • Shopify
  • Admin google dorks

링크

  • exploit-db.com
  • nvd.nist.gov
  • cxsecurity.com
  • vulnerability-lab.com

라이트업

https://infosecwriteups.com/my-first-reflected-xss-bug-bounty-google-dork-xxx-92ac1180e0d0 https://dewangpanchal98.medium.com/microsoft-bug-bounty-writeup-5ee4a7264dbf

예시

이미지

GOOGLE DORKS 방지

사용자 이름, 비밀번호 등 민감한 데이터를 인코딩/암호화하세요. 자신의 사이트에 검색을 실행하여 민감한 데이터를 찾을 수 있는지 확인하세요. 민감한 정보를 발견하면 Google Search Console을 활용하여 검색 결과에서 해당 정보를 제거할 수 있습니다. 사이트 루트 디렉터리에 있는 robots.txt 문서를 활용하여 민감한 콘텐츠를 보호하세요. robots.txt를 활용하면 Google이 사이트를 색인하는 것을 막을 수 있지만, 공격자에게 민감한 데이터가 어디에 있는지 알려줄 수도 있습니다.

root@kitploit:~
User-agent: * 
Disallow: / 

특정 디렉터리를 웹 크롤링에서 제외하도록 차단할 수도 있습니다. /phpinfo 사이트가 있고 이를 보호해야 한다면 다음 코드를 안에 넣으세요:

root@kitploit:~
User-agent: *   
Disallow: /phpinfo/ 

특정 파일에 대한 액세스를 제한하세요:

root@kitploit:~
User-agent: *   
Disallow: /member/info.html 

? 기호가 포함된 동적 URL에 대한 액세스를 제한하세요:

root@kitploit:~
User-agent: *   
Disallow: /*?  

면책 조항: 나쁜 사람이 되지 마세요!

말할 필요도 없이, 이 도구를 매우매우 주의해서 사용하세요. 저자는 어떤 결과에도 책임을 지지 않습니다.

도구 다운로드
필터설명예시
allintext지정된 모든 키워드의 발생을 검색합니다.allintext:"keyword"
intext키워드가 한 번에 또는 연속해서 나타나는 경우를 검색합니다.intext:"keyword"
intitle제목에 키워드가 모두 또는 하나 포함된 페이지를 검색합니다.intitle:"keyword"
allintitle모든 키워드가 동시에 나타나는 페이지를 검색합니다.allintitle:"keyword"
inurl키워드 중 하나와 일치하는 URL을 검색합니다.inurl:"keyword"
allinurl쿼리의 모든 키워드와 일치하는 URL을 검색합니다.allinurl:"keyword"
site특정 웹사이트만 검색하여 해당 웹사이트의 모든 결과를 나열합니다.site:"www.github.com"
filetype쿼리에 지정된 특정 파일 형식을 검색합니다.filetype:"pdf"
link페이지로 연결되는 외부 링크를 검색합니다.link:"keyword"
numrange검색에서 특정 숫자를 찾는 데 사용됩니다.numrange:33-43
before/after지정된 날짜 범위 내에서 검색하는 데 사용됩니다.filetype:pdf & (before:2021-01-01 after:2021-05-01)
allinanchor (및 inanchor도 포함)링크 앵커에 키워드가 포함된 웹사이트를 링크 수가 많은 순서대로 표시합니다.inanchor:rat
allinpostauthor (및 inpostauthor도 포함)블로그 검색 전용으로, 특정 작성자가 쓴 블로그 게시물을 찾아냅니다.allinpostauthor:"keyword"
related지정된 웹페이지와 "유사한" 웹페이지를 나열합니다.related:www.github.com
cacheGoogle 캐시에 저장된 웹페이지 버전을 표시합니다.cache:www.github.com
  • 모니터링 페이지 - google dorks
  • Google Dorks - Github 페이지