Created
September 21, 2020 11:31
-
-
Save nil0x42/656ccf98c00c99277ca7826bf1c43022 to your computer and use it in GitHub Desktop.
[OSINT] Get early stargazers of a GitHub repository for org/user info gathering
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get_Early_Stargazers #OSINT #recon trick, by @nil0x42 | |
# Get list of first people to star a GitHub repository. | |
# Those are more likely to be closely connected to target org/user | |
# Run this query with wanted owner/name in GitHub GraphQL explorer: | |
# - https://developer.github.com/v4/explorer/ | |
query Get_Early_Stargazers { | |
repository(owner: "sherlock-project", name: "sherlock") { | |
stargazers(first: 10, orderBy: {field: STARRED_AT, direction: ASC}) { | |
edges { | |
node { | |
login | |
} | |
starredAt | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment