Skip to content

Update Test #2

Merged
merged 15 commits into from
Dec 11, 2020
Prev Previous commit
Next Next commit
Files Update
Contain some parts of the project and Links
mospher committed Nov 29, 2020
commit f7c9f2fdb5a3a3fec8bbacb8a43ac37e62684ca6
11 changes: 11 additions & 0 deletions documents/enumeration.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

#subprocess.call('cat /proc/version', shell=True)

#configuration files can be read/written in /etc/
#subprocess.call('find /etc/ -readable -type f 2>/dev/null', shell=True)

#information can be found in /var/
#subprocess.call("ls -alh /var/log", shell=True)


#print("\tCurrent Directory:", "\n\t\t-> " + grabOutput("pwd"))
3 changes: 3 additions & 0 deletions documents/links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

Python Execute Unix / Linux Command Examples:
https://www.cyberciti.biz/faq/python-execute-unix-linux-command-examples/