Skip to content

0.2.0 #12

Merged
merged 1 commit into from
Nov 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/leap.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
import time
import platform
import ctypes
from uuid import getnode as get_mac

start = int(input("which line of code would you like to try?\n 1: enum-1 by: Tazmin \n 2: enum-2 by: Jacob\n 3: enum-3 by: Webb\n 4: enum-4 by:Jordan\n 5: enum-5 by:Jacob\n 6: enum-6 by:Joe and tazmin\n 7: enum-7 by:Joe\n 8: enum-8 by:\n 9: priv-esc-1 by:\n 10: priv-esc-2 by:\n 11: priv-esc-3 by:\n"))

start = int(input("which line of code would you like to try?\n 1: enum-1 by: Tazmin \n 2: enum-2 by: Jacob\n 3: enum-3 by: Webb\n 4: enum-4 by:Jordan\n 5: enum-5 by:Jacob\n 6: enum-6 by:Joe and tazmin\n 7: enum-7 by:Joe\n 8: enum-8 by:Reece\n 9: priv-esc-1 by:\n 10: priv-esc-2 by:\n 11: priv-esc-3 by:\n"))
if start == 1:
print("enum-1")
Username = os.getlogin()
Expand Down Expand Up @@ -50,9 +52,12 @@
print('not privilege escalation')
input()
elif start == 8:
print("enum-8")
#placeholder
elif start == 9:
print("enum-8")#
macaddress = get_mac()
print(macaddress)
input()

elif start == 9:
print("priv-esc-1")
input()
#placeholder
Expand Down