Skip to main content

URL Input Field List

In the URL input field, configure the list of URLs to control, and set policies for the URLs configured in the conditional policy.


Configuring URL List

Add Individual URL

Step-by-step progress:

  1. Menu Access
  • Go to "Business System" → "URL Input Field" menu in the admin page.
  1. Start Adding Site
  • "URL List" tab at**[+Register URL]**Button Click
  1. Enter site information
  • name(Required): Enter a unique name to identify the site
  • Description(Optional): Additional description about the site
  • Connection Information(Required): The actual URL address to access
    • http://orhttps://Include in the complete URL format.
    • When using wildcards*example.comInput in the form of
    • Example:https://www.example.com, *naver.com
    • The slash (/) at the end of the URL will be automatically removed and processed.
  • group(Optional): Select from existing created groups to manage classification
  1. Save complete
  • After entering all information**[Save]**Button Click

Caution when entering:

  • The name and connection information cannot be duplicated.
  • The URL must be entered in the correct format.
  • protocol(http://, https://) or wildcard(*) must start with
  • The slash (/) at the end of the URL is automatically removed and processed the same way.

Security Level · Label Assignment

When using the Management Center "Security Classification Label," in the URL input field registration and modification screenSecurity LevelandlabelThe specified items are displayed. The upload and download control of files that move in and out of this work system operates based on the grade specified here.

Displayed only when using security classification labels, at this time**Security level and label are required selections.**is. Items will not be displayed when not in use.

Security Level(Required)

  • Select the security level of this business system. It is a value that distinguishes data sensitivity, and the upload and download control of files passing through this business system operates based on this level.
  • Selection Guide: "Please select a security level."
  • To not specify a grade, select "Grade Not Specified".

label(Required)

  • This is a subcategory of the grade. Even within the same grade, it can be further divided and managed by purpose, department, etc.
  • You must select a security level to activate. (If no level is selected, it will be deactivated with "Please select a security level first.")
  • Selection Guide: "Please select a label."
  • If there are no labels registered for the selected grade, it will display "There are no labels registered for the selected security grade."

The grade and label are managed in the Security365 Management Center under the "Security Classification Label" menu. If it is not in the list, please register it first.

List display

  • The security level assigned to each item in the URL input field list is displayed with a color badge. Items with no assigned level are marked with "-".

Bulk URL Registration

Bulk Registration Using CSV Files:

  1. Batch registration start
  • "URL List" tab at**[Batch Registration]**Button Click
  1. Template Download
  • **[Download CSV Template]**Button Click
  • Opening the downloaded CSV file in Excel
  1. Creating a CSV File
  • Name: Site Name (Required)
  • URL: Access address (required, includes http:// or https://, or starts with *)
  • Description: Description (Optional)
  • Enter site information one for each row.
  • Wildcard URLs can also be registered.(for example:*naver.com)
  1. File Upload
  • Save the completed CSV file
  • Batch Registration Screen**[Browse Files]**Click to select a file
  • or drag and drop the file into the upload area
  • **[Upload]**Button Click
  1. Check Results
  • The registration results will be displayed:
    • registration: Total number of processed URLs
    • normal: Number of URLs successfully registered
    • Error: Number of URLs that failed to register
  • If there is an error**[Edit]**Check and correct error details with the button

Common causes of errors:

  • Required fields not entered (Name, Access Information)
  • Duplicate name or access information
  • URL format error

Policy Inspection Method

Overview of URL Matching Policy

The URLs entered in the URL input field are matched with the user's actual access attempts, and allow/block policies are applied. You need to understand the system's matching method accurately to configure the policies to work as intended.

Basic Matching Rules

1. Automatic Wildcard Addition

  • All registration URLs are automatically appended by the system. *to add
  • User Input:https://naver.com→ System Save:https://naver.com*
  • User input:*naver.com→ System Save:*naver.com*

2. Protocol Separation Policy

  • http://와 https://는completely handled separately
  • Reason for distinction:
    • For security reasons, http and https are completely different protocols.
    • Some sites only support http or only support https
    • For internal systems (especially IP-based), the protocol is often fixed.
    • There are cases where different actions are taken for each protocol due to certificate issues.
  • Correct Registration Method: No need to register both protocols
    • General Site: Most automatically redirect to https when accessing via http, sohttps://or*recommended for registration
    • Internal System: Register exactly as an accessible protocol
    • Allow all protocols: Wildcard(*domain.com) Use

Matching Example:

Registered Policy: https://naver.com (System Save: https://naver.com*)

✅ Matching Access:
- https://naver.com
- https://naver.com/
- https://naver.com/news
- https://www.naver.com (www automatic processing)

❌ Non-Matching Access:
- http://naver.com (Different protocol)
- ftp://naver.com (Different protocol)

3. www Handling Policy

  • Automatically handle www the same way only in the protocol URL
  • In wildcard URLs, www is distinguished.

For protocol URLs:

Registration: https://naver.com → System Save: https://naver.com*

✅ Automatically Matching:
- https://naver.com
- https://naver.com/
- https://www.naver.com (www automatic processing)
- https://www.naver.com/ (www + slash all automatic processing)

For wildcard URLs:

Registration: *naver.com → System Save: *naver.com*

✅ Matched:
- https://naver.com
- https://naver.com/
- https://blog.naver.com
- https://news.naver.com

❌ Not Matched:
- https://www.naver.com (www requires separate registration)

Wildcard Matching Details

1. Wildcard Position

  • Available only at the front: *example.com
  • Unavailable for intermediate use: example*.com
  • The back is automatically added by the system.: No user input required

2. Wildcard Matching Behavior

Registration: *naver.com → System Save: *naver.com*

✅ Matching Connections:
- https://naver.com
- https://naver.com/
- https://news.naver.com
- https://news.naver.com/
- https://blog.naver.com
- https://shopping.naver.com

❌ Non-Matching Connections:
- https://naver.co.kr (Different Domain)
- https://navernews.com (Does not contain naver.com string)

3. Wildcard Precautions

Possible occurrence of unintended matching:

Registration: *shopping.com → System Save: *shopping.com* (Blocking Policy)

❌ Unintended Blocked Access:
- https://google.com/search?q=online-shopping.com
- https://blog.example.com/review-shopping.com-site

Configuration Methods by Actual Operating Scenarios

Scenario 1: Allow all access to a specific site

Requirements: Allow all subdomains and subpages of naver.com

Recommended settings:

Registration 1: https://*naver.com (Wildcard + Protocol)  
Registration 2: http://*naver.com (If HTTP is also supported)

Matching results:

Scenario 2: Allow only specific domains exactly

Requirements: www.example.com onlyAllow and block subdomains

Recommended settings:

Registration 1: https://www.example.com  
Registration 2: http://www.example.com (if HTTP is also supported)

Matching results:

Scenario 3: Bulk Blocking of Shopping Mall Sites

Requirements: Block all shopping-related sites

Recommended settings:

Registration 1: *shop.com (blocked)  
Registration 2: *shopping.com (blocked)
Registration 3: *mall.com (blocked)

Caution: It may be unintentionally blocked when searching for the keyword in the search engine.

1. How to register a protocol

Recommended registration methods by site characteristics:

✅ General portal/commercial sites (Naver, Google, shopping malls, etc.)
- Automatic redirect on the site: http → https
- Recommended: https://naver.com or *naver.com
- Not recommended: http://naver.com (actually accessed via https)

✅ Internal system/IP-based sites
- Fixed protocol: supports only http or only https
- Recommended: register exactly with the protocol that can be accessed
- Example: http://192.168.1.100, https://intranet.company.com

✅ If all protocols are allowed
- Recommended: *domain.com (using wildcard)
- Not recommended: http://domain.com + https://domain.com (duplicate registration)

2. Use of Wildcards with Caution

✅ Recommended: Use only when subdomain allowance is clear  
- *company.com (Official domains of the company)

❌ Caution: Use of wildcard with generic keywords
- *shop.com (Unintended matching may occur)

Troubleshooting Guide

Problem 1: Registered but cannot access

Confirmation items:

  1. Protocol Match (http vs https)
  2. Whether to include www (in the case of a wildcard)
  3. Accuracy of Wildcard Patterns

Solution:

  • Register exactly the same pattern as the actual URL you are accessing.

Problem 2: Should be blocked but is connected

Confirmation items:

  1. Whether the blocking policy is set correctly
  2. Does it overlap with other allowance policies?
  3. Isn't the wildcard pattern too broad?

Solution:

  • Reconfirming Block Settings in Conditional Policies
  • Remove Duplicate Allowance Policies
  • Change to a more specific pattern

Problem 3: Unintended sites are being blocked

Cause: The wildcard pattern is too broad

Solution:

  • Use more specific domain patterns
  • Register Individual URLs Instead of Wildcards
  • Sites that are allowed must have a separate allowance policy added.

Group Management

Group Creation

Create a group to manage URLs categorized by category.

  1. Start Adding Group
  • "URL List" tab at**[+Add]**Button Click
  • in the dropdown**[Add Group]**Selection
  1. Group Information Input
  • name(Required): A unique name to identify the group
  • Description(Optional): Description of the group's purpose or characteristics
  1. Group creation complete
  • **[Check]**Click the button to create a group

Group Edit

  1. Select the group to edit
  • Select the checkbox of the group you want to modify from the URL list.
  • activated at the top**[Edit]**Button Click
  1. Edit Group Information
  • Change name or description in group edit window
  • **[Check]**Save changes with the button

Delete Group

  1. Select the group to delete
  • Select the checkbox of the group you want to delete from the URL list.
  • activated at the top**[Delete]**Button Click
  1. Delete Confirmation
  • "Delete 1 selected item" confirmation message display
  • **[Check]**When clicked, the group and all URLs belonging to the group will be deleted together.

⚠️ Important: When deleting a group, all sites included in that group will also be deleted, so please decide carefully.


Modify and Delete URL

URL modification

  1. Select the URL to edit
  • Select the site you want to edit from the URL list.
  • **[Edit]**Button Click
  1. Edit Site Information
  • Site edit slide panel opened
  • Modify necessary items such as name, description, access information, group, etc.
  • **[Save]**Save changes with the button

Delete URL

  1. Select the URL to delete
  • Select the site you want to remove from the URL list.
  • **[Delete]**Button Click
  1. Delete Confirmation
  • "Delete 1 selected item" confirmation message display
  • **[Check]**Click to complete URL deletion

List Management Functionality

Search and Filtering

Search Function:

  • You can search by site name or URL in the top search bar.
  • Real-time search displays results immediately upon input

List display information:

  • name: Site Identifier Name
  • Connection Information: Actual URL address (displayed in system storage format)
  • Description: Additional information about the site
  • Modification Date: Last modified date

Bulk Operations

Multiple Choice:

  • Multiple items can be selected simultaneously with checkboxes.
  • Batch edit/delete is possible for selected items.

Export:

  • **[Download List]**Export the current URL list to a CSV file with a button
  • Utilization during backup or migration to another system

Problem Solving

Common Issues

URL registration failed:

  • Check URL format (whether it includes http:// or https://, or starts with *)
  • Name duplication check
  • Wildcard Position Check (Can Only Be Used at the Front)
  • Check for at least one dot (.)

In case of connection issues:

  • Check Protocol Match (Registration: https, Access: http)
  • Check for the presence of www (separate registration required for wildcards)
  • Reconfirm Allow/Block Settings in Conditional Policies

Group management issues:

  • Check included URLs before deleting the group
  • Preventing Duplicate Group Names
  • Establishing an appropriate group classification system