Research Article

VNGuarder: An Internal Threat Detection Approach for Virtual Network in Cloud Computing Environment

Table 1

Trusted behavior generation algorithm.

INPUT : User action, Keywords, Network service component source code
OUTPUT : Normal trusted behavior
Func createNormalBehavior(action string, keywords []string, soure code file){
    begin_state: = action
    normal_node: = begin_state
   for action! = nil{
    if next_state = next(begin_state) {//read next level
   normal_node = append(node, next_state)
  }
 } return normal_node
}