├── CTF ├── 429final │ ├── ctf_auto.py │ ├── ctf_auto_2.py │ └── delete.sh ├── __init__.py ├── boolean-base-blind.py ├── bypass-gd.py ├── competitive_exp.py ├── competitive_exp2.py ├── flask_server.py ├── fuzz_sql_waf.py ├── fuzz_xss_tags.py ├── id_monitor.py ├── md5collision.py ├── openssl_cbc.py ├── padding.py ├── padding_oracle.py └── php_rand_exp.py ├── POC and EXP ├── KeyLogger │ ├── keylogger.py │ └── pyHook-1.5.1 │ │ ├── CHANGELOG.txt │ │ ├── HookManager.py │ │ ├── LICENSE.txt │ │ ├── MANIFEST.in │ │ ├── PKG-INFO │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── aa hook.py │ │ ├── build │ │ └── lib.linux-x86_64-2.7 │ │ │ └── pyHook │ │ │ ├── HookManager.py │ │ │ ├── __init__.py │ │ │ ├── aa hook.py │ │ │ ├── cpyHook.py │ │ │ ├── doc.py │ │ │ └── example.py │ │ ├── cpyHook.i │ │ ├── cpyHook.py │ │ ├── cpyHook_wrap.c │ │ ├── doc.py │ │ ├── example.py │ │ └── setup.py ├── SSTI_demo │ ├── .idea │ │ ├── .name │ │ ├── SSTI_demo.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── app1 │ │ ├── __init__.py │ │ ├── config.py │ │ ├── flask_main.py │ │ ├── ssrf_server.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── evil.html │ │ │ └── sql.html │ │ ├── uwsgi.ini │ │ └── wsgi.py │ ├── curl-exp.py │ ├── payloads.py │ ├── quick.py │ ├── requests-exp.py │ ├── requirements.txt │ ├── sandbox.py │ └── urllib2-exp.py ├── serialization │ ├── __init__.py │ ├── marshal-exp.py │ ├── pickle_gen.py │ └── yaml-exp.py ├── store_rootpass │ └── store_root_pass.py └── xss_csp.php ├── README.md ├── algorithm and encryption ├── AES │ └── AES.py ├── DES_GUI │ ├── Main_GUI.py │ ├── cipher_text │ ├── plain_text.txt │ ├── pyDes.py │ └── test.txt ├── Pydijkstra │ ├── dijkstra.py │ └── in.txt └── Vigenere_cipher.py ├── discovery and brute ├── ARP_discovery │ ├── arp.py │ ├── arp_file.py │ ├── arping.sh │ └── arping_file.sh ├── Buffer_overflow │ ├── Fuzzing_POP3(110).py │ └── Test_POP3(110).py ├── OS_identification │ └── TTL_OS.py ├── SEdict_generate │ ├── dir_s.txt │ └── socialE_dict_generate.py ├── arp │ ├── arping.py │ └── scapy_.py └── ssh-brute │ ├── brute-ssh.py │ ├── getIP.py │ ├── lib │ ├── __init__.py │ └── consle_width.py │ ├── log │ └── sshd │ ├── shodan-export-Unicom.xml │ ├── shodan_data.xml │ └── sshBrute.py ├── file manipulation ├── FindLine_inFiles.py ├── batch_replace │ └── replace.py ├── countlines │ └── countfilelines.py ├── filemap │ └── filemap.py ├── generate_directory_tree │ ├── LR_test_.trees │ ├── LR_test_trees.txt │ ├── generate_directory_tree_trees.txt │ └── gentrees.py ├── shodan-xml-re │ ├── shodan_xml_re.py │ └── stacked_poc.py └── split4subDomain.py └── service and network ├── HTTP_Server ├── BJTU_wifi_A │ ├── file │ │ ├── Authen_success.html │ │ └── index.htm │ ├── image │ │ ├── bjtu.jpg │ │ └── cdxy.png │ └── index.html ├── http1.py └── httpserver.py ├── SMTP_Client ├── anony_client.py ├── auth_client.py └── auth_ssl.py ├── curl_statuscode.py └── ip2long.py /CTF/429final/ctf_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/429final/ctf_auto.py -------------------------------------------------------------------------------- /CTF/429final/ctf_auto_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/429final/ctf_auto_2.py -------------------------------------------------------------------------------- /CTF/429final/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/429final/delete.sh -------------------------------------------------------------------------------- /CTF/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/__init__.py -------------------------------------------------------------------------------- /CTF/boolean-base-blind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/boolean-base-blind.py -------------------------------------------------------------------------------- /CTF/bypass-gd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/bypass-gd.py -------------------------------------------------------------------------------- /CTF/competitive_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/competitive_exp.py -------------------------------------------------------------------------------- /CTF/competitive_exp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/competitive_exp2.py -------------------------------------------------------------------------------- /CTF/flask_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/flask_server.py -------------------------------------------------------------------------------- /CTF/fuzz_sql_waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/fuzz_sql_waf.py -------------------------------------------------------------------------------- /CTF/fuzz_xss_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/fuzz_xss_tags.py -------------------------------------------------------------------------------- /CTF/id_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/id_monitor.py -------------------------------------------------------------------------------- /CTF/md5collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/md5collision.py -------------------------------------------------------------------------------- /CTF/openssl_cbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/openssl_cbc.py -------------------------------------------------------------------------------- /CTF/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/padding.py -------------------------------------------------------------------------------- /CTF/padding_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/padding_oracle.py -------------------------------------------------------------------------------- /CTF/php_rand_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/CTF/php_rand_exp.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/keylogger.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/CHANGELOG.txt -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/HookManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/HookManager.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/LICENSE.txt -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/MANIFEST.in -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/PKG-INFO -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/README.txt -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/__init__.py: -------------------------------------------------------------------------------- 1 | from HookManager import * -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/aa hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/aa hook.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/HookManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/HookManager.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/__init__.py: -------------------------------------------------------------------------------- 1 | from HookManager import * -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/aa hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/aa hook.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/cpyHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/cpyHook.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/doc.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/build/lib.linux-x86_64-2.7/pyHook/example.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook.i -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/cpyHook_wrap.c -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/doc.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/example.py -------------------------------------------------------------------------------- /POC and EXP/KeyLogger/pyHook-1.5.1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/KeyLogger/pyHook-1.5.1/setup.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/.name: -------------------------------------------------------------------------------- 1 | SSTI_demo -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/SSTI_demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/.idea/SSTI_demo.iml -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/.idea/misc.xml -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/.idea/modules.xml -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/.idea/vcs.xml -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/.idea/workspace.xml -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/__init__.py: -------------------------------------------------------------------------------- 1 | # !/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/config.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/flask_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/flask_main.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/ssrf_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/ssrf_server.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/templates/base.html -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/templates/evil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/templates/evil.html -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/templates/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/templates/sql.html -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/uwsgi.ini -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/app1/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/app1/wsgi.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/curl-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/curl-exp.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/payloads.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/quick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/quick.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/requests-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/requests-exp.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/requirements.txt: -------------------------------------------------------------------------------- 1 | pycurl -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/sandbox.py -------------------------------------------------------------------------------- /POC and EXP/SSTI_demo/urllib2-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/SSTI_demo/urllib2-exp.py -------------------------------------------------------------------------------- /POC and EXP/serialization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/serialization/__init__.py -------------------------------------------------------------------------------- /POC and EXP/serialization/marshal-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/serialization/marshal-exp.py -------------------------------------------------------------------------------- /POC and EXP/serialization/pickle_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/serialization/pickle_gen.py -------------------------------------------------------------------------------- /POC and EXP/serialization/yaml-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/serialization/yaml-exp.py -------------------------------------------------------------------------------- /POC and EXP/store_rootpass/store_root_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/store_rootpass/store_root_pass.py -------------------------------------------------------------------------------- /POC and EXP/xss_csp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/POC and EXP/xss_csp.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MyScript 2 | 3 | 我的python脚本库,实现日常使用中的需求 4 | -------------------------------------------------------------------------------- /algorithm and encryption/AES/AES.py: -------------------------------------------------------------------------------- 1 | import pycrypto 2 | 3 | __author__ = 'xy' 4 | -------------------------------------------------------------------------------- /algorithm and encryption/DES_GUI/Main_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/DES_GUI/Main_GUI.py -------------------------------------------------------------------------------- /algorithm and encryption/DES_GUI/cipher_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/DES_GUI/cipher_text -------------------------------------------------------------------------------- /algorithm and encryption/DES_GUI/plain_text.txt: -------------------------------------------------------------------------------- 1 | String to Pad -------------------------------------------------------------------------------- /algorithm and encryption/DES_GUI/pyDes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/DES_GUI/pyDes.py -------------------------------------------------------------------------------- /algorithm and encryption/DES_GUI/test.txt: -------------------------------------------------------------------------------- 1 | String to Pad -------------------------------------------------------------------------------- /algorithm and encryption/Pydijkstra/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/Pydijkstra/dijkstra.py -------------------------------------------------------------------------------- /algorithm and encryption/Pydijkstra/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/Pydijkstra/in.txt -------------------------------------------------------------------------------- /algorithm and encryption/Vigenere_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/algorithm and encryption/Vigenere_cipher.py -------------------------------------------------------------------------------- /discovery and brute/ARP_discovery/arp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ARP_discovery/arp.py -------------------------------------------------------------------------------- /discovery and brute/ARP_discovery/arp_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ARP_discovery/arp_file.py -------------------------------------------------------------------------------- /discovery and brute/ARP_discovery/arping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ARP_discovery/arping.sh -------------------------------------------------------------------------------- /discovery and brute/ARP_discovery/arping_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ARP_discovery/arping_file.sh -------------------------------------------------------------------------------- /discovery and brute/Buffer_overflow/Fuzzing_POP3(110).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/Buffer_overflow/Fuzzing_POP3(110).py -------------------------------------------------------------------------------- /discovery and brute/Buffer_overflow/Test_POP3(110).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/Buffer_overflow/Test_POP3(110).py -------------------------------------------------------------------------------- /discovery and brute/OS_identification/TTL_OS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/OS_identification/TTL_OS.py -------------------------------------------------------------------------------- /discovery and brute/SEdict_generate/dir_s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/SEdict_generate/dir_s.txt -------------------------------------------------------------------------------- /discovery and brute/SEdict_generate/socialE_dict_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/SEdict_generate/socialE_dict_generate.py -------------------------------------------------------------------------------- /discovery and brute/arp/arping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/arp/arping.py -------------------------------------------------------------------------------- /discovery and brute/arp/scapy_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/arp/scapy_.py -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/brute-ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/brute-ssh.py -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/getIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/getIP.py -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/lib/consle_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/lib/consle_width.py -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/log/sshd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/shodan-export-Unicom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/shodan-export-Unicom.xml -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/shodan_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/shodan_data.xml -------------------------------------------------------------------------------- /discovery and brute/ssh-brute/sshBrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/discovery and brute/ssh-brute/sshBrute.py -------------------------------------------------------------------------------- /file manipulation/FindLine_inFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/FindLine_inFiles.py -------------------------------------------------------------------------------- /file manipulation/batch_replace/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/batch_replace/replace.py -------------------------------------------------------------------------------- /file manipulation/countlines/countfilelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/countlines/countfilelines.py -------------------------------------------------------------------------------- /file manipulation/filemap/filemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/filemap/filemap.py -------------------------------------------------------------------------------- /file manipulation/generate_directory_tree/LR_test_.trees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/generate_directory_tree/LR_test_.trees -------------------------------------------------------------------------------- /file manipulation/generate_directory_tree/LR_test_trees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/generate_directory_tree/LR_test_trees.txt -------------------------------------------------------------------------------- /file manipulation/generate_directory_tree/generate_directory_tree_trees.txt: -------------------------------------------------------------------------------- 1 | generate_directory_tree/ 2 | -------------------------------------------------------------------------------- /file manipulation/generate_directory_tree/gentrees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/generate_directory_tree/gentrees.py -------------------------------------------------------------------------------- /file manipulation/shodan-xml-re/shodan_xml_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/shodan-xml-re/shodan_xml_re.py -------------------------------------------------------------------------------- /file manipulation/shodan-xml-re/stacked_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/shodan-xml-re/stacked_poc.py -------------------------------------------------------------------------------- /file manipulation/split4subDomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/file manipulation/split4subDomain.py -------------------------------------------------------------------------------- /service and network/HTTP_Server/BJTU_wifi_A/file/Authen_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/BJTU_wifi_A/file/Authen_success.html -------------------------------------------------------------------------------- /service and network/HTTP_Server/BJTU_wifi_A/file/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/BJTU_wifi_A/file/index.htm -------------------------------------------------------------------------------- /service and network/HTTP_Server/BJTU_wifi_A/image/bjtu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/BJTU_wifi_A/image/bjtu.jpg -------------------------------------------------------------------------------- /service and network/HTTP_Server/BJTU_wifi_A/image/cdxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/BJTU_wifi_A/image/cdxy.png -------------------------------------------------------------------------------- /service and network/HTTP_Server/BJTU_wifi_A/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/BJTU_wifi_A/index.html -------------------------------------------------------------------------------- /service and network/HTTP_Server/http1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/http1.py -------------------------------------------------------------------------------- /service and network/HTTP_Server/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/HTTP_Server/httpserver.py -------------------------------------------------------------------------------- /service and network/SMTP_Client/anony_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/SMTP_Client/anony_client.py -------------------------------------------------------------------------------- /service and network/SMTP_Client/auth_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/SMTP_Client/auth_client.py -------------------------------------------------------------------------------- /service and network/SMTP_Client/auth_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/SMTP_Client/auth_ssl.py -------------------------------------------------------------------------------- /service and network/curl_statuscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/curl_statuscode.py -------------------------------------------------------------------------------- /service and network/ip2long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyntax/MyScript/HEAD/service and network/ip2long.py --------------------------------------------------------------------------------