Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
de4f1c7d
Unverified
Commit
de4f1c7d
authored
Aug 05, 2022
by
kladkogex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
430_firewall_self_analysis
parent
44f7788b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
check_firewall.py
docker/check_firewall.py
+44
-0
No files found.
docker/check_firewall.py
0 → 100644
View file @
de4f1c7d
#! /usr/bin/python
import
requests
import
re
import
torpy
from
torpy
import
TorClient
def
get_my_external_ip
():
try
:
res
=
requests
.
get
(
"http://checkip.dyndns.org/"
)
myIp
=
re
.
compile
(
'(
\
d{1,3}
\
.){3}
\
d{1,3}'
)
.
search
(
res
.
text
)
.
group
()
return
myIp
except
:
return
""
print
(
"Analyzing firewall security."
)
print
(
"Determining external IP address"
)
ip
=
get_my_external_ip
()
if
(
ip
==
""
):
print
(
"sgxwallet does not have an external IP"
)
print
(
"No firewall problems detected."
)
exit
(
0
)
print
(
"sgxwallet has the following external IP: "
+
ip
)
try
:
with
TorClient
()
as
tor
:
# Choose random guard node and create 3-hops circuit
print
(
"Connecting to TOR network ..."
);
with
tor
.
create_circuit
(
1
)
as
circuit
:
print
(
"Connected to TOR network. Connecting to sgxwallet from a random external IP."
" This may take up to a minute."
)
# Create tor stream to host
with
circuit
.
create_stream
((
ip
,
1027
))
as
stream
:
print
(
"SECURITY PROBLEM: Could connect to port 1027 of sgxwallet "
+
ip
+
" from a random external IP"
)
print
(
"Firewall is not working properly. Fix the firewall and then start sgx wallet"
)
exit
(
1
)
except
:
print
(
"Analysis complete. No firewall problems detected."
)
exit
(
0
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment