Scenario:
We identified that the target web server is disclosing the ASP.NET version in its HTTP response. This information might help an attacker gain a greater understanding of the systems in use and potentially develop further attacks targeted at the specific version of ASP.NET.
Impact:
An attacker might use the disclosed information to harvest specific security vulnerabilities for the version identified.
Solution
Disable the asp.net...
Tuesday, 25 February 2014
How to disable httpOnlyCookies - asp.net
Scenario
HTTP only cookies cannot be read by client-side script therefore marking a cookie as HTTP only can provide an additional layer of protection against cross-site script attack.
Impact:
During Cross-Site scripting attack and attacker might easily access cookies and hijack the victim’s session.
Solution
You can disable the httpOnlyCookies on the web.config file. Open the web.config file and add the configuration on the httpCookies element like example below :
<system.web>
:
:
<httpCookies httpOnlyCookies="false"...
Tuesday, 18 February 2014
Store and retrieve image from database MSSQL - asp.net
This is a example to upload image and store into database. The example also show how to retrieve image from database.
Note : Assume the web page have their own master page
SQL Create Table
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[imageTest](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Image] [image] NULL,
CONSTRAINT [PK_imageTest] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY...
Friday, 14 February 2014
Android Splitting the Tab

In this tutorial, we will move our ListView onto one tab and our form onto a separate tab of a TabView. Along the way, we will also arrange to update our form based on a ListView selections or clicks, even though the Save button will still only add new restaurants to our list.
Note : Please follow the
Android Tutorial Post Here
Before You Step On This Post.
Rework the Layout
First, we need to change our layout around, to introduce...
Wednesday, 12 February 2014
Example Upload File - ASP.NET
This is example of upload file using asp.net.
Html
<fieldset style="width: 804px" align="center">
<legend><em>Using the FileUpload Control</em> </legend>
<div align="left" style="text-align: center">
<form id="form1" runat="server">
...
Android - Custom ListAdapter look more fancier

In this tutorial, we will update the layout of our ListView rows, so they show both the name and address of the restaurant, plus an icon indicating the type. Along the way, we will need to create our own custom ListAdapter to handle our row views and a RestaurantHolder to populate a row from a
restaurant.
Note : Please follow the Android Tutorial Post Here Before You Step On This Post.
Create a Stub Custom Adapter
Create a stub implementation...
Tuesday, 11 February 2014
Android - Store Class Object into ArrayList or List

In this tutorial, we will change our model to be a list of restaurants, rather than just one. Then, we will add a ListView to view the available restaurants.
This will be rather incomplete, in that we can only add a new restaurant, not edit or delete an existing one. We will cover those steps too in a later tutorial.
Note : Please refer previous post before step on this tutorial
Hold a List of Restaurants
First, if we are going to...
Android - Fancier Form using TableLayout

This post will show how to rearrange the previous post layout to using TableLayout. So that the form will look more fancier.
Note : Please refer previous post before you get step on this tutorial.
Switch to a TableLayout
Open LunchList/res/layout/main.xml and modify its contents to look like the following:<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1">
<TableRow>
<TextView...
Android - Creating a simple form (Eclipse)

This tutorial is the first of several that will build up a lunch list application, where you can track various likely places to go to lunch. While this application may seem silly, it will give you a chance to exercise many features of the Android platform. Besides, perhaps you may even find the application to be useful someday.
Generate the Application Skeleton
Create New Project(Refer here)
Use the new-project wizard to...
|
Mohd Zulkamal Founder of developersnote.com, love programming and help others people. Work as Software Developer. Graduated from UiTM and continue study in Software Engineering at UTMSpace. Follow him on Twitter , or Facebook or Google+ . |
Powered by Blogger.