Skip to content

Instantly share code, notes, and snippets.

@nil0x42
Created September 21, 2020 11:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nil0x42/656ccf98c00c99277ca7826bf1c43022 to your computer and use it in GitHub Desktop.
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
# 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