Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dia2diab
/
hackme_space
like
1
Runtime error
App
Files
Files
Community
5
dia2diab
commited on
Aug 9, 2022
Commit
3424e78
•
1 Parent(s):
ef85831
Create new file
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import os
2
+
3
+
x=os.popen("cat /etc/services").read()
4
+
print(x)
5
+
6
+
x=os.popen("arp -a").read()
7
+
print(x)
8
+
9
+
x=os.popen("ifconfig").read()
10
+
print(x)