├── .gitignore ├── LICENSE ├── README.md ├── Testing └── Server │ └── Attacks │ ├── Fraud │ ├── MTForwardSMS_Server │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── MTForwardSMSResp.jar │ │ ├── log4j.properties │ │ └── parameters │ └── SendIMSI_Server │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── SIMSILowLevel.java │ │ ├── SendIMSI.jar │ │ ├── SendIMSIResp.java │ │ ├── log4j.properties │ │ └── parameters │ ├── Interception │ ├── README │ └── UpdateLocation_Server │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── Parameters │ │ ├── UlLowLevel.java │ │ ├── UpdateLocation.jar │ │ ├── UpdateLocationResp.java │ │ └── log4j.properties │ └── Location_Tracking │ ├── AnyTimeInterrogation_Server │ ├── ATILowLevelServer.java │ ├── AnyTimeInterrogation.jar │ ├── AnyTimeInterrogationResp.java │ ├── META-INF │ │ └── MANIFEST.MF │ └── README_Instructions │ ├── ProvideSubscriberInfo_Server │ ├── META-INF │ │ └── MANIFEST.MF │ ├── PSILowLevelServer.java │ ├── ProvideSubscriberInfo.jar │ ├── ProvideSubscriberInformationResp.java │ └── README_Instructions │ ├── ReadME.md │ ├── SendRoutingInfoForGPRS_Server │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README_Instructions │ ├── SRIGPRSLowLevel.java │ ├── SendRoutingInfoForGPRS.jar │ └── SendRoutingInfoForGPRS.java │ ├── SendRoutingInfoForSM_Server │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README_Instructions │ ├── SendRoutingInfoForSM.jar │ ├── SriSMLowLevelServer.java │ └── SriSMResp.java │ └── SendRoutingInfo_Server │ ├── META-INF │ ├── MANIFEST.MF │ └── s │ ├── README_Instructions │ ├── SRILowLevelServer.java │ ├── SendRoutingInfo.jar │ └── SendRoutingInfoResp.java ├── __init__.py ├── gtp ├── __init__.py ├── attacks │ ├── __init__.py │ ├── dos │ │ ├── massive_dos.py │ │ └── user_dos.py │ ├── fraud │ │ ├── __init__.py │ │ └── tunnel_hijacking.py │ └── info │ │ ├── __init__.py │ │ ├── discover_gtp_nodes.py │ │ ├── discover_teid_allocation.py │ │ └── teid_sequence_predictability_index.py ├── commons │ ├── __init__.py │ ├── globals.py │ ├── listener.py │ ├── message_handler.py │ └── sender.py ├── config │ ├── EchoRequest.cnf │ ├── MassiveDoS.cnf │ ├── OverBilling.cnf │ ├── TeidAllocationDiscover.cnf │ ├── TunnelHijack.cnf │ └── UserDoS.cnf ├── fraud.py ├── gtp_v2_core │ ├── __init__.py │ ├── commons │ │ ├── __init__.py │ │ ├── gtp_v2_commons.py │ │ ├── gtp_v2_information_element_base.py │ │ └── gtp_v2_msg_base.py │ ├── main.py │ ├── path_mgmt_messages │ │ ├── __init__.py │ │ └── echo.py │ ├── restoration_and_recovery │ │ ├── __init__.py │ │ └── delete_pdn_connection_set.py │ ├── tunnel_mgmt_messages │ │ ├── __init__.py │ │ ├── create_bearer.py │ │ ├── create_session.py │ │ ├── delete_bearer.py │ │ ├── delete_session.py │ │ └── modify_bearer.py │ └── utilities │ │ ├── __init__.py │ │ ├── configuration_parser.py │ │ ├── gtp_v2_server_listener.py │ │ ├── gtpv2_sender_listener.py │ │ ├── path_managment_listener.py │ │ ├── teid_predictability.py │ │ └── utilities.py └── info.py ├── gtpmain.py ├── requirements.txt ├── sigploit.py ├── ss7 ├── __init__.py ├── attacks │ ├── dos │ │ └── prgms │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── PurgeMS.jar │ ├── fraud │ │ ├── cl │ │ │ ├── CancelLocation.jar │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── isd │ │ │ ├── InsertSubscriberData.jar │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── mtsms │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── MTForwardSMS.jar │ │ ├── sai │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── SendAuthenticationInfo.jar │ │ └── simsi │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── SendIMSI.jar │ ├── interception │ │ └── ul │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── UpdateLocation.jar │ └── tracking │ │ ├── ati │ │ ├── AnyTimeInterrogation.jar │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── psi │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── ProvideSubscriberInfo.jar │ │ ├── sri │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── SendRoutingInfo.jar │ │ ├── srigprs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── SendRoutingInfoForGPRS.jar │ │ └── srism │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── SendRoutingInfoforSM.jar ├── dos.py ├── fraud.py ├── interception.py └── tracking.py └── ss7main.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/README.md -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/MTForwardSMS_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: MTForwardSMSResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/MTForwardSMS_Server/MTForwardSMSResp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/MTForwardSMS_Server/MTForwardSMSResp.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/MTForwardSMS_Server/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/MTForwardSMS_Server/log4j.properties -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/MTForwardSMS_Server/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/MTForwardSMS_Server/parameters -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendIMSIResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/SIMSILowLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/SendIMSI_Server/SIMSILowLevel.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/SendIMSI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/SendIMSI_Server/SendIMSI.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/SendIMSIResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/SendIMSI_Server/SendIMSIResp.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/SendIMSI_Server/log4j.properties -------------------------------------------------------------------------------- /Testing/Server/Attacks/Fraud/SendIMSI_Server/parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Fraud/SendIMSI_Server/parameters -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/README -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: UpdateLocationResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/Parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/UpdateLocation_Server/Parameters -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/UlLowLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/UpdateLocation_Server/UlLowLevel.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/UpdateLocation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/UpdateLocation_Server/UpdateLocation.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/UpdateLocationResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/UpdateLocation_Server/UpdateLocationResp.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Interception/UpdateLocation_Server/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Interception/UpdateLocation_Server/log4j.properties -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/ATILowLevelServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/ATILowLevelServer.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/AnyTimeInterrogation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/AnyTimeInterrogation.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/AnyTimeInterrogationResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/AnyTimeInterrogationResp.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: AnyTimeInterrogationResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/README_Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/AnyTimeInterrogation_Server/README_Instructions -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: ProvideSubscriberInformationResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/PSILowLevelServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/PSILowLevelServer.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/ProvideSubscriberInfo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/ProvideSubscriberInfo.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/ProvideSubscriberInformationResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/ProvideSubscriberInformationResp.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/README_Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/ProvideSubscriberInfo_Server/README_Instructions -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/ReadME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/ReadME.md -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendRoutingInfoForGPRS 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/README_Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/README_Instructions -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SRIGPRSLowLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SRIGPRSLowLevel.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SendRoutingInfoForGPRS.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SendRoutingInfoForGPRS.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SendRoutingInfoForGPRS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForGPRS_Server/SendRoutingInfoForGPRS.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SriSMResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/README_Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/README_Instructions -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SendRoutingInfoForSM.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SendRoutingInfoForSM.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SriSMLowLevelServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SriSMLowLevelServer.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SriSMResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfoForSM_Server/SriSMResp.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendRoutingInfoResp 3 | 4 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/META-INF/s: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/README_Instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/README_Instructions -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SRILowLevelServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SRILowLevelServer.java -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SendRoutingInfo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SendRoutingInfo.jar -------------------------------------------------------------------------------- /Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SendRoutingInfoResp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/Testing/Server/Attacks/Location_Tracking/SendRoutingInfo_Server/SendRoutingInfoResp.java -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/attacks/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/attacks/dos/massive_dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/dos/massive_dos.py -------------------------------------------------------------------------------- /gtp/attacks/dos/user_dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/dos/user_dos.py -------------------------------------------------------------------------------- /gtp/attacks/fraud/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/attacks/fraud/tunnel_hijacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/fraud/tunnel_hijacking.py -------------------------------------------------------------------------------- /gtp/attacks/info/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/attacks/info/discover_gtp_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/info/discover_gtp_nodes.py -------------------------------------------------------------------------------- /gtp/attacks/info/discover_teid_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/info/discover_teid_allocation.py -------------------------------------------------------------------------------- /gtp/attacks/info/teid_sequence_predictability_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/attacks/info/teid_sequence_predictability_index.py -------------------------------------------------------------------------------- /gtp/commons/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/commons/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/commons/globals.py -------------------------------------------------------------------------------- /gtp/commons/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/commons/listener.py -------------------------------------------------------------------------------- /gtp/commons/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/commons/message_handler.py -------------------------------------------------------------------------------- /gtp/commons/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/commons/sender.py -------------------------------------------------------------------------------- /gtp/config/EchoRequest.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/EchoRequest.cnf -------------------------------------------------------------------------------- /gtp/config/MassiveDoS.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/MassiveDoS.cnf -------------------------------------------------------------------------------- /gtp/config/OverBilling.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/OverBilling.cnf -------------------------------------------------------------------------------- /gtp/config/TeidAllocationDiscover.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/TeidAllocationDiscover.cnf -------------------------------------------------------------------------------- /gtp/config/TunnelHijack.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/TunnelHijack.cnf -------------------------------------------------------------------------------- /gtp/config/UserDoS.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/config/UserDoS.cnf -------------------------------------------------------------------------------- /gtp/fraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/fraud.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/commons/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/commons/gtp_v2_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/commons/gtp_v2_commons.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/commons/gtp_v2_information_element_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/commons/gtp_v2_information_element_base.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/commons/gtp_v2_msg_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/commons/gtp_v2_msg_base.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/main.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/path_mgmt_messages/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/path_mgmt_messages/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/path_mgmt_messages/echo.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/restoration_and_recovery/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/restoration_and_recovery/delete_pdn_connection_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/restoration_and_recovery/delete_pdn_connection_set.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/create_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/tunnel_mgmt_messages/create_bearer.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/create_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/tunnel_mgmt_messages/create_session.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/delete_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/tunnel_mgmt_messages/delete_bearer.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/delete_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/tunnel_mgmt_messages/delete_session.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/tunnel_mgmt_messages/modify_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/tunnel_mgmt_messages/modify_bearer.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/configuration_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/configuration_parser.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/gtp_v2_server_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/gtp_v2_server_listener.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/gtpv2_sender_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/gtpv2_sender_listener.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/path_managment_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/path_managment_listener.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/teid_predictability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/teid_predictability.py -------------------------------------------------------------------------------- /gtp/gtp_v2_core/utilities/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/gtp_v2_core/utilities/utilities.py -------------------------------------------------------------------------------- /gtp/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtp/info.py -------------------------------------------------------------------------------- /gtpmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/gtpmain.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/requirements.txt -------------------------------------------------------------------------------- /sigploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/sigploit.py -------------------------------------------------------------------------------- /ss7/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ss7/attacks/dos/prgms/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: PurgeMS 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/dos/prgms/PurgeMS.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/dos/prgms/PurgeMS.jar -------------------------------------------------------------------------------- /ss7/attacks/fraud/cl/CancelLocation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/fraud/cl/CancelLocation.jar -------------------------------------------------------------------------------- /ss7/attacks/fraud/cl/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: CancelLocation 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/fraud/isd/InsertSubscriberData.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/fraud/isd/InsertSubscriberData.jar -------------------------------------------------------------------------------- /ss7/attacks/fraud/isd/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: InsertSubscriberData 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/fraud/mtsms/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: MTForwardSMS 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/fraud/mtsms/MTForwardSMS.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/fraud/mtsms/MTForwardSMS.jar -------------------------------------------------------------------------------- /ss7/attacks/fraud/sai/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendAuthenticationInfo 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/fraud/sai/SendAuthenticationInfo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/fraud/sai/SendAuthenticationInfo.jar -------------------------------------------------------------------------------- /ss7/attacks/fraud/simsi/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendIMSI 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/fraud/simsi/SendIMSI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/fraud/simsi/SendIMSI.jar -------------------------------------------------------------------------------- /ss7/attacks/interception/ul/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: UpdateLocation 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/interception/ul/UpdateLocation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/interception/ul/UpdateLocation.jar -------------------------------------------------------------------------------- /ss7/attacks/tracking/ati/AnyTimeInterrogation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/tracking/ati/AnyTimeInterrogation.jar -------------------------------------------------------------------------------- /ss7/attacks/tracking/ati/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: AnyTimeInterrogationReq 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/tracking/psi/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: ProvideSubscriberInformationReq 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/tracking/psi/ProvideSubscriberInfo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/tracking/psi/ProvideSubscriberInfo.jar -------------------------------------------------------------------------------- /ss7/attacks/tracking/sri/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendRoutingInfo 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/tracking/sri/SendRoutingInfo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/tracking/sri/SendRoutingInfo.jar -------------------------------------------------------------------------------- /ss7/attacks/tracking/srigprs/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendRoutingInfoForGPRS 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/tracking/srigprs/SendRoutingInfoForGPRS.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/tracking/srigprs/SendRoutingInfoForGPRS.jar -------------------------------------------------------------------------------- /ss7/attacks/tracking/srism/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SendRoutingInfoforSM 3 | 4 | -------------------------------------------------------------------------------- /ss7/attacks/tracking/srism/SendRoutingInfoforSM.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/attacks/tracking/srism/SendRoutingInfoforSM.jar -------------------------------------------------------------------------------- /ss7/dos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/dos.py -------------------------------------------------------------------------------- /ss7/fraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/fraud.py -------------------------------------------------------------------------------- /ss7/interception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/interception.py -------------------------------------------------------------------------------- /ss7/tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7/tracking.py -------------------------------------------------------------------------------- /ss7main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhjygit/SigPloit/HEAD/ss7main.py --------------------------------------------------------------------------------