Skip to content

0.1.4 #8

Merged
merged 2 commits into from
Nov 25, 2021
Merged
Changes from 1 commit
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
Next Next commit
Update leap.py
scholesj2 committed Nov 25, 2021
commit 6b37ce155e9eb9f5ae5c56f36c26b458ce1d98f9
14 changes: 9 additions & 5 deletions src/leap.py
Original file line number Diff line number Diff line change
@@ -15,20 +15,24 @@
input()
elif start == 3:
print("enum-3")

opsys_name = platform.system()

if opsys_name == "Darwin":
opsys_name = "Mac OS"

opsys_release = platform.release()

print(f"{opsys_name} {opsys_release}")

input()
elif start == 4:
print("enum-4")
#placeholder
#Imports
import os
import time
#Enumeration
print("List of all users")
print()
data = os.popen("net user")
data = data.read()
print(data)
elif start == 5:
print("enum-5")
#placeholder