org.mobicents.protocols.ss7.map.api.primitives.IMSI Java Examples
The following examples show how to use
org.mobicents.protocols.ss7.map.api.primitives.IMSI.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SS7Honeypot.java From SigFW with GNU Affero General Public License v3.0 | 5 votes |
public void onSendRoutingInfoForSMRequest(SendRoutingInfoForSMRequest srfsmr) { logger.debug("[[[[[[[[[[ onSendRoutingInfoForSMRequest ]]]]]]]]]]"); try { MAPDialogSms curDialog = srfsmr.getMAPDialog(); long invokeId = curDialog.getLocalDialogId(); IMSI imsi = this.mapProvider.getMAPParameterFactory().createIMSI("123499900000001"); /*ArrayList<MAPPrivateExtension> al = new ArrayList<MAPPrivateExtension>(); al.add(this.mapProvider.getMAPParameterFactory().createMAPPrivateExtension(new long[] { 1, 2, 3, 4 }, new byte[] { 11, 12, 13, 14, 15 })); al.add(this.mapProvider.getMAPParameterFactory().createMAPPrivateExtension(new long[] { 1, 2, 3, 6 }, null)); al.add(this.mapProvider.getMAPParameterFactory().createMAPPrivateExtension(new long[] { 1, 2, 3, 5 }, new byte[] { 21, 22, 23, 24, 25, 26 })); MAPExtensionContainer cnt = this.mapProvider.getMAPParameterFactory().createMAPExtensionContainer(al, new byte[] { 31, 32, 33 }); */ ISDNAddressString networkNodeNumber = this.mapProvider.getMAPParameterFactory().createISDNAddressString(AddressNature.international_number, NumberingPlan.ISDN, "11111111111"); LocationInfoWithLMSI lwlms = this.mapProvider.getMAPParameterFactory().createLocationInfoWithLMSI(networkNodeNumber, null, null, false, null); // clamp InvokeID if (invokeId > 127) { invokeId = 127; } if (invokeId < -128) { invokeId = -128; } curDialog.addSendRoutingInfoForSMResponse(invokeId, imsi, lwlms, null /*cnt*/, Boolean.FALSE, null); } catch (MAPException e) { logger.error("Error while sending SendRoutingInfoForSMResponse ", e); } }
Example #2
Source File: SriSMResp.java From SigPloit with MIT License | 5 votes |
public void onDialogRequestEricsson(MAPDialog mapDialog, AddressString destReference, AddressString origReference, IMSI arg3, AddressString arg4) { if (logger.isDebugEnabled()) { logger.debug(String.format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s ", mapDialog.getLocalDialogId(), destReference, origReference)); } }
Example #3
Source File: UpdateLocationResp.java From SigPloit with MIT License | 5 votes |
public void onDialogRequestEricsson(MAPDialog mapDialog, AddressString destReference, AddressString origReference, IMSI arg3, AddressString arg4) { if (logger.isDebugEnabled()) { logger.debug(String.format("onDialogRequest for DialogId=%d DestinationReference=%s OriginReference=%s ", mapDialog.getLocalDialogId(), destReference, origReference)); } }
Example #4
Source File: GMLCCDRState.java From gmlc with GNU Affero General Public License v3.0 | 5 votes |
public void init(String id, boolean initiated, boolean generated, AddressString origReference, AddressString destReference, IMSI imsi, AddressString vlrAddress, ISDNAddressString isdnAddressString, SccpAddress localAddress, SccpAddress remoteAddress, Long localDialogId, Long remoteDialogId, DateTime dialogStartTime, DateTime dialogEndTime, Long dialogDuration, RecordStatus recordStatus, int ci, int lac, int mcc, int mnc, int aol, String atiVlrGt, String subscriberState) { // This should be enough to be unique this.id = UUID.randomUUID().toString(); this.initiated = true; this.generated = generated; this.origReference = origReference; this.destReference = destReference; this.imsi = imsi; this.vlrAddress = vlrAddress; this.isdnAddressString = isdnAddressString; this.localAddress = localAddress; this.remoteAddress = remoteAddress; this.localDialogId = localDialogId; this.remoteDialogId = remoteDialogId; this.dialogStartTime = null; this.dialogEndTime = null; this.dialogDuration = null; this.recordStatus = recordStatus; this.ci = ci; this.lac = lac; this.mcc = mcc; this.mnc = mnc; this.aol = aol; this.atiVlrGt = atiVlrGt; this.subscriberState = subscriberState; }
Example #5
Source File: SriSMResp.java From SigPloit with MIT License | 4 votes |
@Override public void onSendRoutingInfoForSMRequest(SendRoutingInfoForSMRequest sendRoutingInfoForSMRequest) { try { long invokeId = sendRoutingInfoForSMRequest.getInvokeId(); //Add the MSC number that is serving the user ISDNAddressString msc = this.mapProvider.getMAPParameterFactory().createISDNAddressString (AddressNature.international_number, NumberingPlan.ISDN,"201111111111"); //Add the IMSI of the subscriber that is queried IMSI imsi = this.mapProvider.getMAPParameterFactory().createIMSI("602031234567890"); LMSI lmsi = this.mapProvider.getMAPParameterFactory().createLMSI(new byte[]{(byte)0x65,(byte)0x10,(byte)0xf2,(byte)0x29}); LocationInfoWithLMSI Location = this.mapProvider.getMAPParameterFactory().createLocationInfoWithLMSI (msc, lmsi, null, false, null); GlobalTitle0100 GtHlr = this.sccpProvider.getParameterFactory().createGlobalTitle( "201179008244",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null, NatureOfAddress.INTERNATIONAL); GlobalTitle0100 GtSMSC = this.sccpProvider.getParameterFactory(). createGlobalTitle("441357924680",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null,NatureOfAddress.INTERNATIONAL); SccpAddress callingParty = this.sccpStack.getSccpProvider().getParameterFactory(). createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtHlr,SERVER_SPC,SSN_Server); SccpAddress calledParty = this.sccpStack.getSccpProvider().getParameterFactory() .createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtSMSC,CLIENT_SPC,SSN_Client); /*MAPDialogSms dialogSms = this.mapProvider.getMAPServiceSms().createNewDialog (MAPApplicationContext.getInstance(MAPApplicationContextName.shortMsgGatewayContext, MAPApplicationContextVersion.version3),callingParty,null,calledParty,null);*/ MAPDialogSms dialogSms = sendRoutingInfoForSMRequest.getMAPDialog(); dialogSms.setUserObject(invokeId); dialogSms.addSendRoutingInfoForSMResponse(invokeId,imsi,Location,null, false); dialogSms.send(); logger.info("IMSI and MSC GT Address Sent....."); } catch (MAPException e) { e.printStackTrace(); } }
Example #6
Source File: UpdateLocationResp.java From SigPloit with MIT License | 4 votes |
@Override public void onUpdateLocationRequest(UpdateLocationRequest updateLocationRequest) { try { long invokeIdU = updateLocationRequest.getInvokeId(); ISDNAddressString MscFake = updateLocationRequest.getMscNumber(); ISDNAddressString VlrFake = updateLocationRequest.getVlrNumber(); IMSI TargetImsi = updateLocationRequest.getImsi(); Category category = this.mapProvider.getMAPParameterFactory().createCategory(5); ArrayList<ExtBearerServiceCode> bearerServiceList = new ArrayList<ExtBearerServiceCode>(); ExtBearerServiceCode extBearerServiceCode = this.mapProvider.getMAPParameterFactory() .createExtBearerServiceCode(BearerServiceCodeValue.padAccessCA_9600bps); bearerServiceList.add(extBearerServiceCode); boolean roamingResttrictionDueToUnsupportedFeature = false; ISDNAddressString sgsnNumber = this.mapProvider.getMAPParameterFactory(). createISDNAddressString(AddressNature.international_number,NumberingPlan.ISDN,"201022222222"); SSCode ssCode = this.mapProvider.getMAPParameterFactory().createSSCode(SupplementaryCodeValue.allForwardingSS); //ArrayList<ExtSSInfo> provisionedSS = logger.info("New Fake MSC/VLR: "+ MscFake); logger.info("Victim IMSI: "+ TargetImsi); ISDNAddressString msisdn = this.mapProvider.getMAPParameterFactory().createISDNAddressString( AddressNature.international_number, NumberingPlan.ISDN, "2010789123456"); GlobalTitle0100 GtHlr = this.sccpProvider.getParameterFactory().createGlobalTitle( "201012345678",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null, NatureOfAddress.INTERNATIONAL); GlobalTitle0100 GtMsc = this.sccpProvider.getParameterFactory(). createGlobalTitle("96512345678",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null,NatureOfAddress.INTERNATIONAL); SccpAddress callingParty = this.sccpStack.getSccpProvider().getParameterFactory(). createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtHlr,SERVER_SPC,SSN_Server); SccpAddress calledParty = this.sccpStack.getSccpProvider().getParameterFactory() .createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtMsc,CLIENT_SPC,SSN_Client); MAPDialogMobility dialogMobility = this.mapProvider.getMAPServiceMobility().createNewDialog( MAPApplicationContext.getInstance(MAPApplicationContextName.subscriberDataMngtContext,MAPApplicationContextVersion.version3), callingParty,null,calledParty,null); dialogMobility.addInsertSubscriberDataRequest(TargetImsi,msisdn,category,SubscriberStatus.serviceGranted,null,null,null,null, false,null,null,null,null,null,null,null,false,null,null,false,null,15,null,null, null,null,null,null,false,null,null,false,sgsnNumber,null,null,false,false,null); dialogMobility.send(); logger.info("InsertSubscriberDataRequest Message Sent...."); } catch (MAPException e){ e.printStackTrace(); } }
Example #7
Source File: UpdateLocationResp.java From SigPloit with MIT License | 4 votes |
@Override public void onInsertSubscriberDataResponse(InsertSubscriberDataResponse insertSubscriberDataResponse) { try{ /*long invokeId = insertSubscriberDataResponse.getInvokeId(); ISDNAddressString HlrNumber = this.mapProvider.getMAPParameterFactory().createISDNAddressString( AddressNature.international_number,NumberingPlan.ISDN,"20109876543211"); MAPDialogMobility mapDialogMobility = insertSubscriberDataResponse.getMAPDialog(); mapDialogMobility.setUserObject(invokeId); mapDialogMobility.addUpdateLocationResponse(invokeId,HlrNumber,null,false,false); mapDialogMobility.send(); logger.info("UpdateLocationResponse Message Sent...Update Location Completed"); logger.info("Sending SMS...");*/ //SMS MT AddressString orig_smsc = this.mapProvider.getMAPParameterFactory().createAddressString(AddressNature.international_number, NumberingPlan.ISDN,"966123456789"); IMSI test_imsi = this.mapProvider.getMAPParameterFactory().createIMSI("602027891234567"); SM_RP_DA sm_rp_da = this.mapProvider.getMAPParameterFactory().createSM_RP_DA(test_imsi); SM_RP_OA sm_rp_oa = this.mapProvider.getMAPParameterFactory().createSM_RP_OA_ServiceCentreAddressOA(orig_smsc); AddressField oa = new AddressFieldImpl(TypeOfNumber.InternationalNumber, NumberingPlanIdentification.ISDNTelephoneNumberingPlan,"2010789123456"); AbsoluteTimeStampImpl timeStamp = new AbsoluteTimeStampImpl(16,4,3,15,51,18,2); ProtocolIdentifierImpl pi = new ProtocolIdentifierImpl(0); DataCodingSchemeImpl dcs = new DataCodingSchemeImpl(0); //default gsm 7 bit UserDataImpl ud = new UserDataImpl("Hello World!",dcs,null,null); SmsDeliverTpduImpl tpdu = new SmsDeliverTpduImpl(false,false,false,false,oa,pi,timeStamp,ud); SmsSignalInfoImpl sm_Rp_UI = new SmsSignalInfoImpl(tpdu, null); GlobalTitle0100 GtLocalMSC = this.sccpProvider.getParameterFactory().createGlobalTitle( "201012345678",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null, NatureOfAddress.INTERNATIONAL); GlobalTitle0100 GtAttackerMSC = this.sccpProvider.getParameterFactory(). createGlobalTitle("96512345678",0, org.mobicents.protocols.ss7.indicator.NumberingPlan.ISDN_TELEPHONY,null,NatureOfAddress.INTERNATIONAL); SccpAddress callingParty = this.sccpStack.getSccpProvider().getParameterFactory(). createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtLocalMSC,SERVER_SPC,SSN_MSC); SccpAddress calledParty = this.sccpStack.getSccpProvider().getParameterFactory() .createSccpAddress(RoutingIndicator.ROUTING_BASED_ON_GLOBAL_TITLE,GtAttackerMSC,CLIENT_SPC,SSN_MSC); MAPDialogSms mapDialogSms = this.mapProvider.getMAPServiceSms(). createNewDialog(MAPApplicationContext.getInstance(MAPApplicationContextName.shortMsgMTRelayContext, MAPApplicationContextVersion.version2),callingParty,null,calledParty,null); mapDialogSms.addForwardShortMessageRequest(sm_rp_da,sm_rp_oa,sm_Rp_UI,false); logger.info("Sending SMS...\n"); mapDialogSms.send(); logger.info("SMS Sent..."); } catch (MAPException e){ e.printStackTrace(); } }
Example #8
Source File: GMLCCDRState.java From gmlc with GNU Affero General Public License v3.0 | 4 votes |
/** * @return the imsi */ public IMSI getImsi() { return imsi; }
Example #9
Source File: GMLCCDRState.java From gmlc with GNU Affero General Public License v3.0 | 4 votes |
/** * @param imsi the IMSI to set */ public void setImsi(IMSI imsi) { this.imsi = imsi; }