{"id":17295791,"url":"https://github.com/proditis/orunmila","last_synced_at":"2025-10-06T17:53:51.487Z","repository":{"id":64303538,"uuid":"573966741","full_name":"proditis/orunmila","owner":"proditis","description":"a simple tool to refine and produce lists for your bugbounty and pen-test engagements","archived":false,"fork":false,"pushed_at":"2025-08-26T08:15:27.000Z","size":87,"stargazers_count":7,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-26T10:20:21.473Z","etag":null,"topics":["bugbounty","dirbuster","ffuf","pen-test-tools","pen-testing","penetration-testing","pentest-tool","pentesting"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/proditis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-04T01:39:26.000Z","updated_at":"2025-08-26T08:15:29.000Z","dependencies_parsed_at":"2025-01-30T02:20:32.620Z","dependency_job_id":"756c70bf-452b-4a8b-b04e-bc29c1a905f0","html_url":"https://github.com/proditis/orunmila","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/proditis/orunmila","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proditis%2Forunmila","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proditis%2Forunmila/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proditis%2Forunmila/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proditis%2Forunmila/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/proditis","download_url":"https://codeload.github.com/proditis/orunmila/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/proditis%2Forunmila/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278654999,"owners_count":26022966,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bugbounty","dirbuster","ffuf","pen-test-tools","pen-testing","penetration-testing","pentest-tool","pentesting"],"created_at":"2024-10-15T11:11:12.610Z","updated_at":"2025-10-06T17:53:51.456Z","avatar_url":"https://github.com/proditis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Orunmila\nA simple tool to refine and produce lists for your bugbounty and pen-test engagements.\n\nThe idea behind it is fairly simple, a small sqlite(??) database with each word associated tags. Each word in the dictionary can be associated with multiple tags.\nThis provides for a way to later request the words from a database based on specific tags and use the generated wordlist with you normal tools, be it ffuf, dirbuster etc.\n\n\n## Installation\n\n```sh\nGO111MODULE=on go install github.com/proditis/orunmila@latest\n```\n\n## Building\nNOTE: This is still a really early prototype so not much of a build system into the mix.\n\n```sh\nexport CGO_ENABLED=1\ngo get github.com/mattn/go-sqlite3\ngo get github.com/sirupsen/logrus\ngo build orunmila.go\n```\n\n\n## Subcommands\n* **`add`** words from the cli\n  ```sh\n  orunmila add -tags a,b,c word1 word2 word3\n  ```\n* **`import`** words from a file\n  ```sh\n  orunmila import -tags a,b,c filename\n  ```\n* **`search`** words\n  ```\n    orunmila search -tags a,b,c filename\n  ```\n* **`vacuum`** database and apply any schema updates\n  ```sh\n  orunmila vacuum a\n  ```\n* **`describe`** a database\n  ```sh\n  orunmila describe My Description for this database\n  ```\n* **`info`** return information about a database\n  ```sh\n  $ orunmila info all\n  [version]: 0.0.0\n  [dbname]: default\n  [description]: My Description for this database\n  ```\n\n## Examples\n* Import words from `lista.txt` and tag as `lista`\n  ```\n  orunmila import -tags lista lista.txt\n  ```\n\n* List words with tag as `lista`\n  ```\n  orunmila search -tags lista\n  ```\n\n* Import words from `listb.txt` and tag as `listb`\n  ```\n  orunmila import -tags listb listb.txt\n  ```\n\n* List words with tag as `listb`\n  ```\n  orunmila search -tags listb\n  ```\n\n* Import words from `lista.txt` and `listb.txt` and tag as `listc`\n  ```\n  orunmila import -tags listc lista.txt listb.txt\n  ```\n\n* List words with tag as `listc` (should return all words)\n  ```\n  orunmila search -tags listc\n  ```\n\n### Drupal example\nTake the following hypothetical scenario, we have a target system that is based on drupal. We have already populated our `orunmila.db` with appropriate words and tags before hand.\n\nUsing orunmila we extract the keywords that match our criteria\n```sh\norunmila search -tags drupal,dir,nginx,php \u003edrupal_words.txt\nffuf -w drupal_words.txt -u https://drupal-target/FUZZ\n```\n\nThe tool supports using specific database files ie\n```\norunmila search -db programXYZ.db -tags nginx,soap,swift,api,xml\n```\n\nYou can use Orunmila to import wordlists into your database with given set of tags. Existing words will have their tags updated to include old and new ones\n```\norunmila import -db programXYZ.db -tags raft,directories,manual raft-medium-directories.txt\n```\n\nAdd a new drupal entry you discovered from the command line (without file)\n```\norunmila add -tags drupal,directory word1 word2\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproditis%2Forunmila","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproditis%2Forunmila","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproditis%2Forunmila/lists"}