网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

FormFile theFile=advertiseform.getFilepath();String up_path=servlet.getServletContext().getRealPath(“/”);If(theFile!=null){String newfilename=this.FileWrite(theFile,up_path);} 以上代码中存在()的安全漏洞

  • A、上传文件漏洞
  • B、不安全的直接对象引用
  • C、SQL注入
  • D、未验证的重定向和转发

参考答案

更多 “FormFile theFile=advertiseform.getFilepath();String up_path=servlet.getServletContext().getRealPath(“/”);If(theFile!=null){String newfilename=this.FileWrite(theFile,up_path);} 以上代码中存在()的安全漏洞A、上传文件漏洞B、不安全的直接对象引用C、SQL注入D、未验证的重定向和转发” 相关考题
考题 Auserhaschangedtheirpasswordusingthepasswdcommand,andnoticesthatthechangeisonlymadetothelocalnode.Whentheadministratorchangestheuser’spasswordfromthecommandlineusingthepasswdcommandthechangeismadecluster-wide.Whatisthemostlikelycauseofthisproblem?()A.TheuserhasaUIDlessthan200B.TheuserhasbeendefinedasanadministrativeuserC.Thefile/usr/es/sbin/cluster/clpasswdisnotexecutablebytheuserD.Theuserneedsexplicitauthorizationtochangetheirpasswordcluster-wide

考题 As the administrator of your company’s network, you have implemented encryption for extra security of data on your network. A user moves an encrypted file from an NTFS partition on her Windows 2000 Workstation to an NTFS folder on a remote Windows 2000 Server. What effect will this have on the encrypted file?()A、The encrypted file will automatically be decrypted.B、Encrypted files and folders cannot be moved or copied, decrypt it first then move or copy thefile or folder.C、The encrypted file will remain encrypted in the Windows 2000 folder.D、The encrypted file will inherit the encryption state of the remote NTFS folder.

考题 单选题Your network contains a server named Server1 that runs Windows Server 2008 R2. Server1 has the File Services role installed. You configure a file classification rule. You discover that scanned documents stored as JPG files are not being classified. You need to ensure that all file classification rules apply to scanned documents. What should you do?()A Enable the Windows TIFF IFilter feature.B Modify the properties of the file classification rule.C Modify the properties of the Windows Search Service.D Install the Office 2007 System Converter: Microsoft Filter Pack.

考题 单选题You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()A % if ( request.isUserInRole(SalesManager) ) { % %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % % } %B jsp:if test=’request.isUserInRole(SalesManager)’ %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % /jsp:ifC % if ( request.isUserInRole(SalesManager) ) { % . jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / . % } %D jsp:if test=’request.isUserInRole(SalesManager)’ jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / /jsp:if