Skip to content

Commit bfe126a

Browse files
committed
Update
1 parent 5f50e02 commit bfe126a

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

graphpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
from graphpython.__main__ import main
3+
from Graphpython.__main__ import main
44

55
if __name__ == '__main__':
66
main()

graphpython/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import sys
44
import argparse
55
import textwrap
6-
from graphpython.commands import outsider, auth, enum, exploit, intune_enum, intune_exploit, cleanup, locators
7-
from graphpython.utils.helpers import list_commands, print_red
6+
from Graphpython.commands import outsider, auth, enum, exploit, intune_enum, intune_exploit, cleanup, locators
7+
from Graphpython.utils.helpers import list_commands, print_red
88

99
def parseArgs():
1010

graphpython/commands/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from cryptography.hazmat.primitives.serialization import pkcs12
1313
from cryptography.hazmat.backends import default_backend
1414
from urllib.parse import urlencode, urlparse, parse_qs
15-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
15+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
1616

1717
##################
1818
# Authentication #

graphpython/commands/cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import requests
2-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
2+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
33

44
###########
55
# Cleanup #

graphpython/commands/enum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import sys
55
import time
66
from bs4 import BeautifulSoup
7-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
8-
from graphpython.utils.helpers import graph_api_get
7+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
8+
from Graphpython.utils.helpers import graph_api_get
99

1010
##########################
1111
# Post-Auth Enuemeration #

graphpython/commands/exploit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
from cryptography.hazmat.primitives import hashes, serialization
1212
from cryptography.hazmat.primitives.serialization import pkcs12
1313
from cryptography.hazmat.backends import default_backend
14-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
15-
from graphpython.utils.helpers import read_file_content, format_list_style, highlight_search_term, read_and_encode_cert
14+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
15+
from Graphpython.utils.helpers import read_file_content, format_list_style, highlight_search_term, read_and_encode_cert
1616

1717
##########################
1818
# Post-Auth Exploitation #

graphpython/commands/intune_enum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import requests
22
import json
3-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
4-
from graphpython.utils.helpers import graph_api_get
3+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
4+
from Graphpython.utils.helpers import graph_api_get
55

66
################################
77
# Post-Auth Intune Enumeration #

graphpython/commands/intune_exploit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import sys
44
import base64
55
from tabulate import tabulate
6-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
7-
from graphpython.utils.helpers import read_file_content, graph_api_get
6+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
7+
from Graphpython.utils.helpers import read_file_content, graph_api_get
88

99
#################################
1010
# Post-Auth Intune Exploitation #

graphpython/commands/locators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import requests
22
import os
33
from bs4 import BeautifulSoup
4-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
4+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
55

66
############
77
# Locators #

graphpython/commands/outsider.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from tqdm import tqdm
33
import dns.resolver
44
import os
5-
from graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
6-
from graphpython.utils.helpers import get_tenant_domains
5+
from Graphpython.utils.helpers import print_yellow, print_green, print_red, get_user_agent, get_access_token
6+
from Graphpython.utils.helpers import get_tenant_domains
77

88
############
99
# Outsider #

0 commit comments

Comments
 (0)