Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / UdpReplyToBehavior.cs / 1305376 / UdpReplyToBehavior.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.ServiceModel.Discovery { using System; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.ServiceModel.Dispatcher; // This behavior allows the UdpDiscoveryEndpoint to conform to the WS-Discovery specification // and provide mitigation for the DDOS. // // The Probe and Resolve request are sent multicast and are not secure. An attacker can launch // a third party distributed DOS attack by setting the address of the third party in the ReplyTo // header of the Probe and Resolve requests. To mitigate this threat this behavior drops the // message that have ReplyTo set to a value that is not annonymous by setting appropriate // message filter. // // As per the WS-Discovery specification the ReplyTo header is optional, if not specified it is // considered anonymous. The reply for Probe and Resolve requests whose ReplyTo header is set // to anonymous value, must be sent to the transport address of the remote endpoint. // This behavior obtains this transport address information from the message property and sets // it in the ReplyTo header before passing the message to the higher level. The higher level // discovery code simply uses the ReplyTo header to address the response. // class UdpReplyToBehavior : IEndpointBehavior, IDispatchMessageInspector, IClientMessageInspector { static EndpointAddress annonymousAddress; string scheme; public UdpReplyToBehavior(string scheme) { this.scheme = scheme; } static EndpointAddress AnnonymousAddress { get { if (annonymousAddress == null) { annonymousAddress = new EndpointAddress(EndpointAddress.AnonymousUri); } return annonymousAddress; } } void IEndpointBehavior.AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) { } void IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) { } void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) { if (endpointDispatcher == null) { throw FxTrace.Exception.ArgumentNull("endpointDispatcher"); } endpointDispatcher.AddressFilter = new UdpDiscoveryMessageFilter(endpointDispatcher.AddressFilter); endpointDispatcher.DispatchRuntime.MessageInspectors.Add(this); if (endpointDispatcher.DispatchRuntime.CallbackClientRuntime != null) { endpointDispatcher.DispatchRuntime.CallbackClientRuntime.MessageInspectors.Add(this); } } void IEndpointBehavior.Validate(ServiceEndpoint endpoint) { } public object AfterReceiveRequest(ref Message request, IClientChannel channel, InstanceContext instanceContext) { // obtain the remote transport address information and include it in the ReplyTo object messageProperty = null; UdpAddressingState addressingState = null; if (OperationContext.Current.IncomingMessageProperties.TryGetValue(RemoteEndpointMessageProperty.Name, out messageProperty)) { RemoteEndpointMessageProperty remoteEndpointProperty = messageProperty as RemoteEndpointMessageProperty; if (remoteEndpointProperty != null) { UriBuilder uriBuilder = new UriBuilder(); uriBuilder.Scheme = this.scheme; uriBuilder.Host = remoteEndpointProperty.Address; uriBuilder.Port = remoteEndpointProperty.Port; addressingState = new UdpAddressingState(); addressingState.RemoteEndpointAddress = uriBuilder.Uri; OperationContext.Current.IncomingMessageHeaders.ReplyTo = AnnonymousAddress; } } UdpMessageProperty udpMessageProperty; if (UdpMessageProperty.TryGet(OperationContext.Current.IncomingMessageProperties, out udpMessageProperty)) { if (addressingState == null) { addressingState = new UdpAddressingState(); } addressingState.UdpMessageProperty = udpMessageProperty; } if (addressingState != null) { DiscoveryMessageProperty discoveryMessageProperty = new DiscoveryMessageProperty(addressingState); OperationContext.Current.IncomingMessageProperties[DiscoveryMessageProperty.Name] = discoveryMessageProperty; } return null; } public void BeforeSendReply(ref Message reply, object correlationState) { } void IClientMessageInspector.AfterReceiveReply(ref Message reply, object correlationState) { } object IClientMessageInspector.BeforeSendRequest(ref Message request, IClientChannel channel) { object messageProperty; if (OperationContext.Current.OutgoingMessageProperties.TryGetValue( DiscoveryMessageProperty.Name, out messageProperty)) { DiscoveryMessageProperty discoveryMessageProperty = messageProperty as DiscoveryMessageProperty; if (discoveryMessageProperty != null) { UdpAddressingState state = discoveryMessageProperty.CorrelationState as UdpAddressingState; if (state != null) { if (state.RemoteEndpointAddress != null) { AnnonymousAddress.ApplyTo(request); request.Properties.Via = state.RemoteEndpointAddress; } if (state.UdpMessageProperty != null) { state.UdpMessageProperty.AddTo(request); } } } } return null; } class UdpAddressingState { Uri remoteEndpontAddress; UdpMessageProperty udpMessageProperty; public Uri RemoteEndpointAddress { get { return remoteEndpontAddress; } set { remoteEndpontAddress = value; } } public UdpMessageProperty UdpMessageProperty { get { return udpMessageProperty; } set { udpMessageProperty = value; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionProviderAttribute.cs
- BaseTypeViewSchema.cs
- RuntimeIdentifierPropertyAttribute.cs
- PropertyMetadata.cs
- BufferedWebEventProvider.cs
- KnownBoxes.cs
- DetailsViewRowCollection.cs
- StaticExtensionConverter.cs
- TextEndOfSegment.cs
- SmiConnection.cs
- LocalBuilder.cs
- TypeSchema.cs
- PackagePart.cs
- ColorConverter.cs
- FixedSchema.cs
- TemplateBamlRecordReader.cs
- MatrixConverter.cs
- HtmlEmptyTagControlBuilder.cs
- FontFamilyIdentifier.cs
- EventTrigger.cs
- dbenumerator.cs
- ScriptResourceInfo.cs
- Vector3D.cs
- MenuItem.cs
- basenumberconverter.cs
- ConfigurationManagerInternalFactory.cs
- ZipIOCentralDirectoryFileHeader.cs
- SqlStatistics.cs
- FontFamily.cs
- AppDomainGrammarProxy.cs
- ToolStripGripRenderEventArgs.cs
- WorkflowApplicationAbortedException.cs
- RequestDescription.cs
- BatchWriter.cs
- EncodingInfo.cs
- OleDbWrapper.cs
- QueryContinueDragEvent.cs
- RequestBringIntoViewEventArgs.cs
- RadioButtonAutomationPeer.cs
- FileDetails.cs
- ReplyChannel.cs
- FakeModelItemImpl.cs
- FileLogRecord.cs
- CustomAttributeBuilder.cs
- SQLString.cs
- ScriptModule.cs
- PanelStyle.cs
- HeaderCollection.cs
- WebBrowserContainer.cs
- CodeCatchClauseCollection.cs
- DbDataReader.cs
- IListConverters.cs
- XmlSchemaSimpleContentRestriction.cs
- UnsafeNetInfoNativeMethods.cs
- SqlProviderServices.cs
- LongPath.cs
- PeerCollaborationPermission.cs
- PageRanges.cs
- Animatable.cs
- XmlSchemaCollection.cs
- RunClient.cs
- DrawingBrush.cs
- OracleDataReader.cs
- FilteredXmlReader.cs
- SingleAnimationBase.cs
- SpotLight.cs
- KeyboardDevice.cs
- MessageSmuggler.cs
- ExceptionValidationRule.cs
- KeyboardEventArgs.cs
- UnknownWrapper.cs
- DataSvcMapFileSerializer.cs
- TransformedBitmap.cs
- SoapCodeExporter.cs
- MinMaxParagraphWidth.cs
- FixedSOMPageConstructor.cs
- XamlDesignerSerializationManager.cs
- TypographyProperties.cs
- DecoderReplacementFallback.cs
- CurrentTimeZone.cs
- compensatingcollection.cs
- InputLanguageProfileNotifySink.cs
- SqlClientPermission.cs
- MetaType.cs
- CompatibleComparer.cs
- PropertyChangedEventArgs.cs
- XmlAnyElementAttributes.cs
- FixedSOMTableRow.cs
- InstanceLockLostException.cs
- WebPartDisplayModeCollection.cs
- MonitoringDescriptionAttribute.cs
- SafeSecurityHandles.cs
- Identity.cs
- Geometry.cs
- FixedTextContainer.cs
- SelectionListDesigner.cs
- ConfigurationPropertyAttribute.cs
- HtmlString.cs
- InvalidFilterCriteriaException.cs
- WmlTextBoxAdapter.cs