Skip to content

Instantly share code, notes, and snippets.

View nvzard's full-sized avatar
🚀

Nitanshu Vashistha nvzard

🚀
  • localhost
View GitHub Profile
@nvzard
nvzard / vimeo_cleanup_command.py
Created March 11, 2024 09:16
Script to delete all vimeo videos older than 6 months
## Code to Send Vimeo
## Script to delete all video ids in database older than 6 months
from django.conf import settings
from django.utils import timezone
from time import sleep
from datetime import timedelta
# Video model class attributes -> (id[pk], status[uploaded, deleted], identifier[vimeo identifier])
@nvzard
nvzard / github_bugbountyhunting.md
Created December 10, 2018 13:07 — forked from EdOverflow/github_bugbountyhunting.md
My tips for finding security issues in GitHub projects.

GitHub for Bug Bounty Hunters

GitHub repositories can disclose all sorts of potentially valuable information for bug bounty hunters. The targets do not always have to be open source for there to be issues. Organization members and their open source projects can sometimes accidentally expose information that could be used against the target company. in this article I will give you a brief overview that should help you get started targeting GitHub repositories for vulnerabilities and for general recon.

Mass Cloning

You can just do your research on github.com, but I would suggest cloning all the target's repositories so that you can run your tests locally. I would highly recommend @mazen160's GitHubCloner. Just run the script and you should be good to go.

$ python githubcloner.py --org organization -o /tmp/output