Skip to content

Instantly share code, notes, and snippets.

View pascalschulz's full-sized avatar
🎯
Focusing

Pascal Schulz pascalschulz

🎯
Focusing
View GitHub Profile
@pascalschulz
pascalschulz / Owasp_juice_shop_login_amy.py
Created May 31, 2020 15:01
This python file helps you to solve the "Login Amy" challenge of OWASP Juice Shop (https://github.com/bkimminich/juice-shop)
__author__ = "@Pascalsec"
import requests
import aiohttp
import asyncio
your_juice_shop_url = "https://<YOUR OWASP JUICE SHOP URL>{}".format("/rest/user/login")
def build_queue():
queue = []
@pascalschulz
pascalschulz / getGithubRepoCloneUrls.py
Last active November 12, 2020 13:42
This code snippet takes a Github organization name as input, crawls for all its public repositories and returns a list of all the "Git clone URLs" for those repos.
import itertools
import re
import requests as rq
# Your Github organization (e.g. /Github)
organization = "/<company_name>"
response = rq.request("GET", "https://github.com{0}".format(organization))
try: