国产高清精品免费区-男女一进一出抽搐免费视频-中日韩一二三级黄色永久视频-日韩精品人妻一区二区免费视频-日本久久视频在线观看-99热这里只有精品88热-亚洲韩国黄色最新短视频一区-日韩伦理在线观看免费全集-国产av一区二区三区天堂

syscall

syscall

 英

  • 網(wǎng)絡(luò)系統(tǒng)調(diào)用;系統(tǒng)調(diào)用提供器;測(cè)試一個(gè)系統(tǒng)調(diào)用

例句

Essentially any tool that could be used for detecting such a rootkit is susceptible to false results due to syscall hijacking.

基本上任何可能這樣rootkit檢測(cè)工具易于使用由于系統(tǒng)調(diào)用劫持錯(cuò)誤結(jié)果

Upon return from the system call, syscall_exit is eventually reached, and a call to resume_userspace transitions back to user-space.

系統(tǒng)調(diào)用返回最終執(zhí)行syscall_exit,調(diào)用resume_userspace返回用戶空間

As you can see, the syscall function includes as its first argument the index of the system call table to use.

正如見(jiàn)syscall函數(shù)使用系統(tǒng)調(diào)用使用索引作為第一個(gè)參數(shù)

Under UNIX, calling the kernel consists of an operation known as a syscall or trap.

UNIX內(nèi)核調(diào)用所謂syscall或者trap操作構(gòu)成

With the syscall function, you can call a system call by specifying its call index and a set of arguments.

使用syscall函數(shù)可以通過(guò)指定調(diào)用索引參數(shù)來(lái)調(diào)用系統(tǒng)調(diào)用

Keep in mind the original 7 bytes are saved and copied back into the original syscall so that it may be called within the evil syscall.

請(qǐng)記住原來(lái)7個(gè)字節(jié)保存復(fù)制原來(lái)系統(tǒng)調(diào)用以便可能邪惡系統(tǒng)調(diào)用回調(diào)

Listing 6 shows an application that uses each of your system calls as defined by the _syscall macros.

清單6顯示應(yīng)用程序使用_syscall定義所有系統(tǒng)調(diào)用

With the first method, you call your new functions as identified by their index through the syscall function.

使用第一方法可以通過(guò)syscall函數(shù)調(diào)用索引標(biāo)識(shí)函數(shù)

In the end, the syscall interface provides the means to transfer control between the user-space application and the kernel.

最后系統(tǒng)調(diào)用接口提供用戶空間應(yīng)用程序內(nèi)核之間轉(zhuǎn)移控制方法

A blocking syscall, like a read will only return once data is available.

阻塞系統(tǒng)調(diào)用讀取來(lái)說(shuō)直到數(shù)據(jù)準(zhǔn)備時(shí)候會(huì)返回

The syscall function is architecture specific but uses a mechanism to transfer control to the kernel.

syscall函數(shù)特定架構(gòu)使用一種機(jī)制控制權(quán)交給內(nèi)核

The request_key syscall searches a process keyring for a key.

request_key系統(tǒng)調(diào)用搜索一個(gè)進(jìn)程keyring尋找一個(gè)密鑰

Note also that the input (syscall number) is consumed (used) before the output (the return value of syscall) is produced.

請(qǐng)注意輸入syscall號(hào)產(chǎn)生輸出syscall返回之前消耗使用)。

With syscall probes, the input arguments and return values are available to the VUE script.

通過(guò)使用系統(tǒng)調(diào)用探測(cè)可以VUE腳本使用輸入參數(shù)返回

Now, here's how you use the _syscall macros to make your new system calls visible to the user-space.

現(xiàn)在我們來(lái)看一下如何使用_syscall來(lái)使系統(tǒng)調(diào)用對(duì)于用戶空間可見(jiàn)

Syscall hijack is one way that we talk about in our other paper and also the Syscall modification too.

系統(tǒng)調(diào)用劫持一種方法我們談?wù)?/c>我們其他文件修改過(guò)系統(tǒng)調(diào)用

Finally, the syscall keyctl provides a number of functions for managing keys.

最后系統(tǒng)調(diào)用keyctl提供許多用來(lái)管理密鑰函數(shù)

The add_key syscall is used to create keys of type type and length plen.

add_key系統(tǒng)調(diào)用用來(lái)創(chuàng)建類型type長(zhǎng)度plen密鑰

For example, the mnkod(2) syscall is implemented by creating a plain file, then recording the requested file type in the pseudo database.

例如mnkod(2)系統(tǒng)調(diào)用通過(guò)創(chuàng)建一個(gè)文本文件來(lái)實(shí)現(xiàn)然后pseudo數(shù)據(jù)庫(kù)記錄請(qǐng)求文件類型

Next, you have a syscall probe.

接下來(lái)一個(gè)syscall探針

Research on Syscall-based Intrusion Detection Technology for Linux System

基于系統(tǒng)調(diào)用Linux系統(tǒng)入侵檢測(cè)技術(shù)研究

Markov Chain Model of Syscall-based Intrusion Detection

基于系統(tǒng)調(diào)用入侵檢測(cè)馬氏模型

Make syscall that fails convert to common error code return common error code decide execution based on common error code

如果考慮平臺(tái)相關(guān)錯(cuò)誤轉(zhuǎn)換通用錯(cuò)誤,那么上面代碼可以修改如下

Listing 1: Sample syscall ProbeVue script

清單1:系統(tǒng)調(diào)用ProbeVue腳本示例