GIAC GSSP-.NET GIAC Secure Software Programmer – C#.NET Online Training
GIAC GSSP-.NET Online Training
The questions for GSSP-.NET were last updated at Sep 15,2025.
- Exam Code: GSSP-.NET
- Exam Name: GIAC Secure Software Programmer - C#.NET
- Certification Provider: GIAC
- Latest update: Sep 15,2025
Allen works as a Software Developer for ABC Inc. The company uses Visual Studio.NET as its application development platform. He creates an application using .NET Framework. He wants to encrypt all his e-mails that he sends to anyone.
Which of the following will he use to accomplish the task?
- A . PPP
- B . FTP
- C . PPTP
- D . PGP
You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You have recently finished the development of an ASP.NET Web application using .NET Framework 3.5. The application must be deployed by using the http://www.ABC.com/ URL. The application has several Web forms.
You need to implement Really Simple Syndication (RSS) feeds functionality. The RSS feeds will be used by the http://www.ABC.com/Updates.rss URL. You must ensure that the application displays the RSS-formatted information when accessing the given URL.
What will you do to accomplish this? Each correct answer represents a part of the solution. Choose two.
- A . Create and register a custom HttpHandler class that releases the RSS feeds.
- B . Create a Web form named Updates that releases the RSS feeds.
- C . Create an ASMX Web service component named Updates.
- D . Add the HttpHandler class to the .rss extension.
- E . Create and register a custom HttpModule class.
You work as a Software Developer for ManSoft Inc. You use Microsoft Visual Studio to create a Web service named MyWebService. You create a SOAP message that is not secure in the Web service. You want to use the SendSecurityFilter class in the Web service to handle the transmission and securing of SOAP messages.
Which of the following code segments will you use to accomplish the task? Each correct answer represents a part of the solution. Choose all that apply.
- A . public class MySendSecurityFilter : SendSecurityFilter
{
public MySendSecurityFilter(string service, Boolean client)
{ }
public override void SecureMessage(SoapEnvelope envelope, Security security) {
// Implement validation here
}
} - B . public class MySendSecurityFilter : SendSecurityFilter
{
public MySendSecurityFilter(string service, Boolean client)
{
base(service,client);
}
public override void SecureMessage(SoapEnvelope envelope, Security security)
{
// Implement validation here
}
} - C . public class MySendSecurityFilter : SendSecurityFilter
{
public MySendSecurityFilter(string service, Boolean client) : base(service,client) { }
public override void SecureMessage(SoapEnvelope envelope, Security security) {
// Implement validation here
}
} - D . public class MySendSecurityFilter : SendSecurityFilter
{
public MySendSecurityFilter(string service, Boolean client) : base(service,client) { }
public void SecureMessage(SoapEnvelope envelope, Security security)
{
// Implement validation here
}
}
Which of the following is a reference type in Visual C#?
- A . primitive types
- B . strings
- C . enums
- D . structures
You work as a Software Developer for ABC Inc. The company has several branches worldwide. The company uses Visual Studio.NET 2005 as its application development platform. You have recently finished the development of an application using .NET Framework 2.0. The application can be used only for cryptography. Therefore, you have implemented the application on a computer.
What will you call the computer that implemented cryptography?
- A . Cryptographic toolkit
- B . Cryptosystem
- C . Cryptographer
- D . Cryptanalyst
You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You are creating a custom control library using .NET Framework 3.5. Developers will use this custom control on Web pages in multiple applications. Each and every ASP.NET application will be configured by using different state management approaches. You have to ensure consistent state management for all instances of the custom control.
Which of the following states will you use to accomplish this task?
- A . Session state
- B . Application state
- C . Control state
- D . View state
The <customErrors> element does not apply to errors that occur in __________.
- A . XML Web services
- B . Windows services
- C . Web services directory
- D . Web services
Which of the following is not a method of controlling traffic through a firewall?
- A . Application filtering
- B . Encryption-level filtering
- C . Stateful inspection
- D . Packet filtering
You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2005 as its application development platform. You are creating an application using .NET Framework 2.0. The application uses serialization to allow users to take an instance of an object and convert it into a format that can be easily transmittable over the network or even stored in a database. You want to provide the base functionality for the common language runtime serialization formatters.
Which of the following classes will you use to accomplish the task?
- A . SoapFormatter
- B . FormatterConverter
- C . Formatter
- D . BinaryFormatter
You work as a Software Developer for ABC Inc. The company uses Visual Studio .NET 2008 as its application development platform. You are creating an ASP.NET Web application using .NET Framework 3.5. The application will be used to share any type of photos on Internet. All the photos should be accessible in various sizes and formats. You need to add a download feature that can be easily maintained. You also need to make sure that only a single version of all photos is stored on a SQL server database.
What will you do?
- A . Create an HttpModule class to determine the request for the photo download. Process the photo according to the given format and size, and after that return the processed photo in the response.
- B . Create a user control that converts the photo to the required format and size.
- C . Create an HttpHandler class to determine the request for the photo download. Process the photo according to the given format and size, and after that return the processed photo in the response.
- D . Create an ActiveX control that converts the photo to the required format and size.