Skip to content

0.2.4 #16

Merged
merged 1 commit into from
Nov 30, 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
10 changes: 5 additions & 5 deletions src/leap.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ def privesc_2():


def privesc_3():
print("priv-esc-3")
print("priv-esc-3 by: Webb")
os.system("sudo x-terminal-emulator")


def menu():
Expand All @@ -122,12 +123,11 @@ def menu():
"8: Get MAC address by: Reece\n"
"9: priv-esc-1 by: Tazmin and Webb\n"
"10: priv-esc-2 by: Webb\n"
"11: priv-esc-3 by:\n"
"12: Quit program\n")

start = int(input())

if start == 6:
if start == 6 or 11:
start = 13

elif os == "Darwin":
Expand All @@ -142,7 +142,7 @@ def menu():
"8: Get MAC address by: Reece\n"
"9: priv-esc-1 by: Tazmin and Webb\n"
"10: priv-esc-2 by: Webb\n"
"11: priv-esc-3 by:\n"
"11: priv-esc-3 by: Webb\n"
"12: Quit program\n")

start = int(input())
Expand All @@ -162,7 +162,7 @@ def menu():
"8: Get MAC address by: Reece\n"
"9: priv-esc-1 by: Tazmin and Webb\n"
"10: priv-esc-2 by: Webb\n"
"11: priv-esc-3 by:\n"
"11: priv-esc-3 by: Webb\n"
"12: Quit program\n")

start = int(input())
Expand Down