Skip to content

codingo/dorky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dorky

Dorky is a command-line tool that searches GitHub and GitLab for matches in organization names, repository names, and usernames based on a list of input words.

Installation

  1. Clone the repository:
git clone https://github.com/username/dorky.git
  1. Set your GitHub and/or GitLab access tokens as environment variables:
export GITHUB_ACCESS_TOKEN=your-github-access-token
export GITLAB_ACCESS_TOKEN=your-gitlab-access-token
  1. Build the Dorky tool:
go build -o dorky

Requirements

  • Docker
  • GITHUB_ACCESS_TOKEN and GITLAB_ACCESS_TOKEN environment variables

Docker Instructions

  1. Build the Docker image:

    docker build -t dorky .
    
  2. Run the Docker container:

    docker run --rm -it -e GITHUB_ACCESS_TOKEN=your-github-token -e GITLAB_ACCESS_TOKEN=your-gitlab-token dorky
    

    Replace your-github-token and your-gitlab-token with your GitHub and GitLab access tokens, respectively.

Usage

Pipe a list of words to the Dorky tool and use the appropriate flags to specify the search categories and platforms:

cat wordlist.txt | ./dorky -uro -gh

Available flags:

  • -o: Search for organization names (or groups in GitLab)
  • -r: Search for repository names (or projects in GitLab)
  • -u: Search for username matches
  • -max: Set the maximum number of search results per category (default: 10)
  • -c: Clean input URLs, turning them into words before performing searches
  • -gh: Search only GitHub
  • -gl: Search only GitLab
  • -s: Simple output style for piping to another tool

By default, the tool searches both GitHub and GitLab based on the provided access tokens. If both tokens are set, both platforms will be searched. If only one token is set, only that platform will be searched.

About

A tool to quickly do keyword searches over Gitlab and Github for OSINT & bug bounty recon

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 5