-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgithub_autopwn.py
154 lines (107 loc) · 5.08 KB
/
github_autopwn.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env python3
"""
Description: Github Autopwn - Github Scraper For Static Code Analysis
Author: Cody Winkler (twitter: c2thewinkler | github: m0rph-1)
Date: 2/12/2020
"""
import os
import time
import requests
import json
import sys
from dotenv import load_dotenv
from termcolor import colored
from base64 import b64decode
from indicators import *
from pprint import pprint
import argparse
def parse_options():
global parser
formatter = lambda prog: argparse.HelpFormatter(prog,max_help_position=50)
parser = argparse.ArgumentParser(description='Github Autopwn - Static Code Analysis Scraper', formatter_class=formatter)
parser.add_argument("-q", "--query", type=str, help="Bad code to scrape for", required=False)
parser.add_argument("-o", "--org", type=str, help="Organization to search bad code in e.g. Microsoft", required=True)
parser.add_argument("-g", "--get-code", dest="get_code", help="Get code snippets for detected indicators", action="store_true", required=False)
parser.add_argument("-a", "--autopwn", help="Find all the bugs", action="store_true", required=False)
parser.add_argument("-crl", "--check-rate-limit", dest="rate", help="Check current API request rate limit", action="store_true", required=False)
args = parser.parse_args()
return args
def get_code_snippet(git_url_key, headers):
this_req = requests.get(git_url_key, verify=True, headers=headers)
json_data = json.loads(this_req.content)
if this_req.status_code == 200:
repo_code = str(b64decode(json_data["content"]).decode('utf-8')).split('\n')
for payload in payloads:
for i in range(len(repo_code)):
if payload[0] + "(" in repo_code[i]:
print(str(repo_code[i]))
def check_rate_limit(headers):
this_req = requests.get("https://api.github.com/rate_limit", verify=True, headers=headers)
json_data = json.loads(this_req.content)
pprint(json_data["rate"])
return
def main(args):
load_dotenv()
api_key = os.getenv("API_KEY")
if api_key == None or api_key == '':
print(colored("[!] API key is not set. Specify it in .env.", "red"))
exit(1)
headers = {
"Authorization": f"Bearer {api_key}"
}
separator = "-"*100
if args.rate:
check_rate_limit(headers)
if args.query:
print(colored("[+] Searching for payload: %s" % args.query, "green"))
try:
github_api = ("https://api.github.com/search/code?q=user:{} {}").format(args.org, args.query)
this_req = requests.get(github_api, verify=True, headers=headers)
json_data = json.loads(this_req.content)
if this_req.status_code == 200:
for key in json_data["items"]:
try:
print(separator)
print(colored("[+] Found Potentially Vulnerable %s Code In The Following File!" % args.query, "green"))
pprint(key["html_url"])
print(separator)
if args.get_code:
print(colored("This should be printed if -g is specified", "yellow"))
git_url_key = key["git_url"]
get_code_snippet(git_url_key, headers)
except KeyError:
print(colored("[-] Didn't find anything. Moving on!", "red"))
if this_req.status_code != 200:
print(colored("[!] Check rate limit.", "yellow"))
pass
except Exception as e:
print(repr(e))
if args.autopwn:
for payload in payloads:
print(colored("[+] Searching for payload: %s" % payload[0], "green"))
try:
github_api = ("https://api.github.com/search/code?q=user:{} {}").format(args.org, payload[0])
this_req = requests.get(github_api, verify=True, headers=headers)
json_data = json.loads(this_req.content)
print(colored("[!] Got status code: %d" % this_req.status_code, "yellow"))
if this_req.status_code == 200:
print(colored("[+] Found Potentially %s Vulnerable Code In The Following Files!" % payload[0], "green"))
for key in json_data["items"]:
try:
pprint(key["html_url"])
time.sleep(0.5)
if args.get_code:
git_url_key = key["git_url"]
get_code_snippet(git_url_key, headers)
except KeyError as e:
print(colored("[-] Didn't find anything. Moving on!", "red"))
if this_req.status_code != 200:
print(colored("[!] Check rate limit. Sleeping for 15 seconds.", "yellow"))
check_rate_limit()
time.sleep(15)
pass
except Exception as e:
print(repr(e))
if __name__ in "__main__":
args = parse_options()
main(args)