-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ver1.7.0 新增浏览器调用securecrt,xshell,putty等客户端终端;新增会话录像审计
- Loading branch information
root
committed
Aug 27, 2019
1 parent
0787039
commit afaec7e
Showing
98 changed files
with
6,562 additions
and
372 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+1010 KB
apploader/Windows6.1-KB2999226-x64(win7运行丢失api-ms-win-crt-runtime-l1-1-0.dll错误安装包).msu
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env python | ||
|
||
import sys | ||
import traceback | ||
import time | ||
from urllib import parse | ||
import subprocess | ||
|
||
|
||
def main(): | ||
try: | ||
tags = parse.unquote(sys.argv[1]) | ||
if tags.endswith('/'): # 当前URL PROTOCOL协议传过来的数据中无 '/' 时,默认会在字符末尾添加一个 '/',需要去掉 | ||
tags = tags[:-1] | ||
# print(tags) | ||
tags = tags.split('://') | ||
del tags[0] | ||
# print(tags) | ||
subprocess.Popen('://'.join(tags)) | ||
# time.sleep(20) | ||
except: | ||
print(traceback.format_exc()) | ||
time.sleep(20) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Windows Registry Editor Version 5.00 | ||
[HKEY_CLASSES_ROOT\apploader] | ||
"URL Protocol"="C:\\apploader.exe" | ||
@="apploader" | ||
[HKEY_CLASSES_ROOT\apploader\DefaultIcon] | ||
@="C:\\apploader.exe,1" | ||
[HKEY_CLASSES_ROOT\apploader\shell] | ||
[HKEY_CLASSES_ROOT\apploader\shell\open] | ||
[HKEY_CLASSES_ROOT\apploader\shell\open\command] | ||
@="\"C:\\apploader.exe\" \"%1\"" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"C:\Program Files\Python37\Scripts\pyinstaller" -F apploader.py | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
windows调用securecrt、xshell等客户端方法: | ||
1.复制本目录dist\apploader.exe程序到c:\根目录下 | ||
2.保存并导入apploader.reg文件到注册表。 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,5 @@ celery==4.3.0 | |
redis | ||
eventlet | ||
django-debug-toolbar | ||
selectors2 | ||
django-redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"C:\Program Files\Python37\python" manage.py proxy_sshd | ||
pause |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.