https://github.com/edivangalindo/travis-test
A little tool to fastly test if Travis tokens are valid
https://github.com/edivangalindo/travis-test
bugbounty infosec osint osint-tool token-leaked tool travis travis-ci
Last synced: 5 months ago
JSON representation
A little tool to fastly test if Travis tokens are valid
- Host: GitHub
- URL: https://github.com/edivangalindo/travis-test
- Owner: edivangalindo
- Created: 2022-04-19T23:07:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-19T23:17:47.000Z (about 4 years ago)
- Last Synced: 2024-06-20T17:45:07.861Z (about 2 years ago)
- Topics: bugbounty, infosec, osint, osint-tool, token-leaked, tool, travis, travis-ci
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# travis-test
Sometimes, during the day as an offensive security engineer or bug hunter, we come across a leaked token and we need to test it. This tool was born out of my need to do this routinely with tokens coming from Travis-CI.
Single URL:
```
echo travisExampleToken12312313 | travis-test
```
Multiple tokens:
```
cat tokens.txt | travis-test
```
## Installation
First, you'll need to [install go](https://golang.org/doc/install).
Then run this command to download + compile travis-test:
```
go install github.com/edivangalindo/travis-test@latest
```
You can now run `~/go/bin/travis-test`. If you'd like to just run `travis-test` without the full path, you'll need to `export PATH="/go/bin/:$PATH"`. You can also add this line to your `~/.bashrc` file if you'd like this to persist.