Skip to content

Commit

Permalink
Fix web mode ip obfuscator not working
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyfishSec committed Mar 21, 2022
1 parent 37f34f4 commit 9c361bd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rcX.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding=utf8
__Author__ = 'FlyfishSec'
__Version__ = 'v0.0.1'
__Version__ = 'v0.0.2'
__SITE__ = 'https://github.com/FlyfishSec/rcX'
__Description__ = ''''''

Expand All @@ -11,7 +11,7 @@
+
🐛 Bug fixes
+
+ Fix web mode ip obfuscator not working
'''

Expand Down Expand Up @@ -1922,6 +1922,7 @@ def gen():
elif request.form.getlist('encoder[]'):
encoder = request.form.getlist("encoder[]")
obfuscator = request.form.get("obfuscator")
ip_obfuscator = request.form.get("ip_obfuscator")
staging_url = request.form.get("staging_url")
if staging_url == "100":
staging_url = ""
Expand All @@ -1948,7 +1949,7 @@ def gen():
encoder=encoder, web=True,
platform=platform, binary_name=binary_name,
shell_path=shell_path,
obfuscator=obfuscator,
obfuscator=obfuscator, ip_obfuscator=ip_obfuscator,
staging_url=staging_url, staging_cmd=staging_cmd, localtunnel=localtunnel)
title = None
result = "<div class='alert alert-info' role='alert'>Oops, nothing found!</div>"
Expand Down

0 comments on commit 9c361bd

Please sign in to comment.