99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

CSC8204 代寫(xiě)、Secure Software程序

時(shí)間:2023-12-10  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Secure Software Development
Coursework 2023
Aims:
The aim of this assignment is to increase and assess understanding and resolution of risk analysis, SecureUML design, formal modelling and verification.
The coursework consists of 4 equally weighted questions.
Submission details:
Submission deadline: 15 Dec 2023, 15:30
Submit your solution to Ness by the deadline. Your solution should consist of a single .docx or .pdf document with answers to each of the questions below.
Assessment:
The coursework is marked out of 100, with 25 marks for each question . Support:
You will find the formative exercises in Dafny and SecureUML useful for answering the questions in this coursework. After completing these exercises, you can use the remaining practical classes to ask questions.
Questions can also be posted in the Canvas discussion board.
Scenario:
This coursework is derived from the Tokeneer ID Station, a research project undertaken in 2008 by Altran Praxis (formerly Praxis Critical Systems). The project was to demonstrate the development of secure systems in a rigorous manner, and the final report1 provides an overview of the project documentation, including requirements analysis, formal specification (in Z), SPARK Ada implementation and verification, and top-down system testing.
Tokeneer is described as a “biometrics prototype”. The Tokeneer ID Station or TIS, one part of the Tokeneer System, protects access to secure information held on a network of workstations, held in a physically secure space or “enclave”.
1 Available from AdaCore at http://www.adacore.com/uploads/downloads/Tokeneer_Report.pdf
  
 Figure 1 Tokeneer system overview
The Tokeneer system displayed in Figure 1 consists of the secure enclave plus other components that are physically either inside or outside the enclave:
• Enrolment Station issues a token to a user. The token contains up to four signed certificates: an ID Certificate generated by a Certificate Authority; a Privilege Certificate and a biometric Identification and Authentication (I&A) Certificate, both generated by an Attribute Authority; and an Authorisation Certificate which is generated by the TIS, as described below.
• Tokeneer ID Station (TIS) uses the biometric information in the I&A certificate, and scan of the user’s fingerprint, to verify the user. On successful identification, if the Privilege Certificate confirms the user has sufficient clearance, the TIS adds a signed Authorisation Certificate to the user’s token and releases the enclave door lock, allowing entrance to the secure space.
• Inside the secure space (enclave) are a number of Workstations. A workstation checks the Authorisation Certificate to confirm the user is currently authorised to use the workstation facilities.

Part A Applied Risk Analysis [25 Marks]
According to McGraw’s software security approach, the secure software development is founded on a comprehensive applied risk analysis taking into account business goals, business risks, and technical risks.
Aim:
Develop an applied risk analysis based on the documentation of the Tokeneer project (http://www.adacore.com/uploads/downloads/Tokeneer_Report.pdf).
Approach:
Develop the risk analysis based on McGraw’s methodology introduced in the recommended literature McGraw – Software Security and in the lecture on Principles of Software Security.
Evaluate:
1. Business goals of Praxis High Integrity Systems in undertaking the Tokeneer project. Rank the business goals according to the NIST business goal classification.
2. Three main business risks affecting Praxis High Integrity Systems, including: • Business risk indicator
• NIST business risk likelihood scaling
• NIST business risk impact scaling
• Overall NIST severity ranking.
• A one-sentence rationale, why you have chosen this risk over others.
3. Five main technical risks determinable from the Tokeneer report and software
deliverable.
• Analyze the software artifacts
• Evaluate the software security touchpoints
• Use the 10 best practice security principles by McGraw.
• Specify the risk likelihood and possible impact vis-à-vis of available controls.
• Write a one-sentence rationale, why you have chosen this risk over others.
4. Conduct a risk synthesis connecting business goals, business risks and technical risks.
5. Derive one mitigation approach for each technical risk. Justify your choice.
Deliverable:
To complete this part of the coursework, complete an applied risk management report that enumerates the risk register in the tabular form introduced by McGraw and in the lecture on Principles of Software Security. Examples for such tables are given in the lecture slides, slides 2**9.
In addition to the risk register, document the rationale for the risks and the chosen mitigation methods in a brief summary, no more than one side A4.
Ultimately, the coherence and consistency of your argument for your choices will be key in achieving high marks. The risks and mitigation methods must fit the indicated Tokeneer scenario.
Indicative marking guidance: business goals and risks [5 Marks], technical risks [10 Marks], risk synthesis and mitigation [5 Marks], rationale [5 Marks].
    
Part B SecureUML Design [25 Marks]
Model-driven security (MDS) embeds security controls into generated source code and enables formal verification. We investigate SecureUML as a an MDS approach that enables enforcement of confidentiality and integrity through Role-Based Access Control (RBAC).
Aim:
Develop a high-level UML model in the style of SecureUML which models a suitable security policy for the Tokeneer ID station.
 Figure 2 SecureUML Metamodel
Approach:
Create an UML Class model that takes the SecureUML metamodel shown in Figure 2 as foundation and models as a mock-up the defined security policy. Do this in IntelliJ IDEA Diagrams or another appropriate UML modelling software (e.g., Papyrus or Eclipse Modelling).
Design:
Design an UML diagram in the fashion of SecureUML to model the following authentication system: The system manages the certificate handling of the Tokeneer ID station, including (i) how superusers can grant and revoke certificates, (ii) how certificates are derived from one another, and (iii) how an enclave user can log in to and be logged out from workstations.
Create a UML design to capture the following security policy: Subjects = { Alice, Bob, Administrator }; Roles = { EnclaveUser, Superuser }; Actions = { Grant, Revoke, Open, Login, Logout }; Resources = { Workstation, TIS, IDCertificate, IACertificate, PrivilegeCertificate, AuthorizationCertificate } Any user can login to a workstation if the user has an AuthorizationCertificate. Certificates are derived/enforced by the TIS based on the rules highlighted above. A superuser can grant/revoke any certificate and logout any user.
Deliverable:
A UML model that establishes an appropriate RBAC policy according to the SecureUML methodology. It is sufficient to submit a UML class diagrams (incl. dialect design), but not required to design an UML profile. Submit a report displaying your class diagrams along with a rationale for your design, no more than one side A4.
Indicative marking guideline: System, RBAC and dialect UML design [18 Marks]; Rationale [7 Marks]. It is sufficient to capture SecureUML elements conceptually.

Part C Formal Modelling [25 marks]
The Dafny file tokeneer.dfy2 has the beginning of an abstract formal model of part of the tokeneer system in Dafny. The model is not intended to be executable. Your task is to extend the model by answering the questions below.
Aim:
Develop an extended model of the tokeneer certificates and tokens. You do not need to provide
data to test your model. The aim of the exercise is to expand and refine the model specification.
Approach:
Follow the guidelines given in the questions below to extend the model.
The model consists of some abstract datatype definitions, some functions, predicates and methods, and some traits and classes. A trait in dafny is similar to an abstract class or interface in java: dafny requires that a class can only extend a trait, it cannot extend another class. This means that we use traits to define superclasses. See for example the trait Certificate which is extended by the class IDCert.
The key difference between a trait and a class is that a trait does not have a constructor defined. A class must have a constructor: however, as can be seen in the model, the constructor can be unspecified in an abstract model.
Deliverable:
A revised Dafny model for the tokens and certificates part of the tokeneer system. Include the full content of your Dafny file (as text, not as a screenshot image) in your report. You can format it as follows (by copying and pasting the content of your .dfy file into your word document):
/*
Solution to CSC8204 Coursework Part C
*/
 // basic types
type optional<T> = ts: set<T> | |ts| <= 1 type TIME = nat
 Questions:
1) Clearance class. Find the definition of Clearance, which has a single field (cClass) represented by the enumerated type CLEARANCE_CLASS. A newly created Clearance object will initially have the value unmarked.
a) Add a postcondition (ensures) to the constructor to record this. [2 marks] 2 The model is available as tokeneer.dfy in the repository https://github.com/SteveR-Ncl/CSC8204-Dafny
  
A ghost function minClearance has been specified. It should return the minimum of two Clearance objects, ie Clearance(a,b) will return a if the object a has a lower clearance than b. “Lower” is implied by the ordering of the enumeration, ie unmarked < unclassified < restricted etc.
b) Complete the definition of ghost function minClearance to return the minimum clearance object as described above. Use c1.cClass to access the value of the cClass field in the object c1. Hint: you will need to use a reads clause as described in the lecture.
[4 marks]
2) Admin Privilege. A user can have one of 4 privileges, as shown by the enumerated datatype definition PRIVILEGE. Only the admin roles (guard, auditManager, securityOfficer) have any admin operations available to them, as follows:
• A guard can use the overrideLock operation
• An auditManager can use the archiveLog operation
• A securityOfficer can use the updateData and shutdownOp operations
a) Modify your model to add a new enumerated datatype called ADMINOP, with values representing the four operations above (overrideLock, etc) [2 marks]
b) Add a function with signature as follows:
function availableOps(p: PRIVILEGE): set<ADMINOP>
Provide a function body which returns the set of operations available to a user with privilege level p. [8 marks]
3) Token Predicates. A token class is defined in the model. It has fields for the tokenID and up to 4 certificates held on the token (ID Certificate, Privilege Certificate, I and A Certificate, and (optionally) Authorisation Certificate. Each certificate has its own ID; the Privilege, I and A and Authorisation Certificates also contain the ID of the token and the ID of the ID certificate. There are 3 predicate functions to define in the token class: ValidToken(), TokenWithValidAuth(), CurrentToken(TIME).
Complete the predicate functions using the following definitions:
• A Valid Token has Privilege and I and A certificates correctly cross-referencing the ID Certificate and TokenID. It need not have a valid Authorisation certificate.
• A Token with a Valid Authorisation must have an Authorisation certificate, and must have correct cross-reference to the token ID and ID certificate’s ID
• A Current Token is defined using input parameter now, representing the current time. A current token is a Valid Token where all the certificates are current, ie the current time is included in the validityPeriods for each of the id certificate, privilege certificate and I and A certificates.
Hint: set notation may be helpful here. Use a in B to express that a is a member of set B, and B * C to indicate intersection of sets B and C. [9 marks]

Part D [25 marks]
This question makes use of the Floyd-Hoare logic to analyse code samples and investigate whether they can be formally verified, using the approach described in the lectures on Program Verification.
Aim:
The question assesses skill and understanding in formal verification, weakest precondition semantics and Floyd-Hoare logic.
Deliverable:
Provide your answers to all the questions in Part D of you submission document.
Questions
For each of the two code samples shown, use the weakest precondition approach to derive any necessary precondition in order to prove that the code is partially correct with respect to the specification. Sample 2 uses information derived from the tokeneer scenario.
Be sure to show each step in the derivation and indicate which proof rules have been used.
1) Sums method [10 marks]
 method Sums(x: int, y: int) returns (m: int, n: int) ensures m > n
{
    var a: int;
    m := x;
    n := y;
    a := 2 * m + n;
    n := n - 1;
m := a; }
2) UpdateAlarms method [15 marks]
datatype ALARM = silent | alarming
method UpdateAlarms(doorAlarm: ALARM, auditAlarm: ALARM) returns (alarm: ALARM) ensures (alarm == alarming) <==>
 (doorAlarm == alarming) || (auditAlarm == alarming)
 {
if doorAlarm == alarming || auditAlarm == alarming
{ alarm := alarming; }
else
{ alarm := silent ;} }
 請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:CON3602 代做、代寫(xiě) java 語(yǔ)言編程
  • 下一篇:代做ECM2418、代寫(xiě) java,Python 程序設(shè)計(jì)
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士4號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士3號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士3號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士2號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士2號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士1號(hào)線(xiàn)
    合肥機(jī)場(chǎng)巴士1號(hào)線(xiàn)
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                日韩亚洲欧美成人一区| 日韩欧美www| 欧美精品一区二区久久久| 午夜欧美大尺度福利影院在线看| 91在线国产福利| 亚洲精品va在线观看| 欧美性xxxxx极品少妇| 欧美日韩国产不卡| 日本强好片久久久久久aaa| 在线播放中文一区| 九色综合国产一区二区三区| 欧美激情在线一区二区三区| 色综合一区二区| 另类小说视频一区二区| 久久亚洲私人国产精品va媚药| 国产米奇在线777精品观看| 国产精品私房写真福利视频| 色94色欧美sute亚洲13| 免费在线观看精品| 一区二区三区精密机械公司| 在线一区二区三区四区五区| 日韩电影在线观看网站| 国产欧美精品在线观看| 在线观看免费亚洲| 国产毛片精品视频| 丝袜诱惑亚洲看片| 国产精品美女一区二区在线观看| 欧美日韩在线电影| 91亚洲大成网污www| 久久99久久久久久久久久久| 色综合中文字幕国产| 偷拍与自拍一区| 中文字幕不卡三区| 日韩午夜在线观看视频| 91久久香蕉国产日韩欧美9色| 精品一区二区三区视频| 午夜视频在线观看一区二区 | 91精品国产综合久久久蜜臀图片| 成人h动漫精品一区二区| 国产资源精品在线观看| 久久草av在线| 麻豆一区二区在线| 久久草av在线| 国产最新精品精品你懂的| 免费高清成人在线| 麻豆国产一区二区| 九一久久久久久| 秋霞影院一区二区| 久久国产人妖系列| 黄色资源网久久资源365| 理论电影国产精品| 国产原创一区二区三区| 久久99最新地址| 精品一区二区三区视频| 国产精品伊人色| 国产精品夜夜嗨| 成人在线视频一区| 成人国产亚洲欧美成人综合网 | 欧美日韩美少妇| 欧美在线免费视屏| 欧美日韩国产一级二级| 欧美久久一二区| 欧美久久一二区| 欧美电影免费观看完整版| 久久伊人蜜桃av一区二区| 国产欧美一区二区三区在线看蜜臀 | 久久91精品久久久久久秒播| 九色综合狠狠综合久久| 国产一区二区久久| av不卡免费电影| 欧美在线免费播放| 7777精品久久久大香线蕉| 欧美美女一区二区| 在线观看视频一区| 欧美一区二区三区色| 欧美高清激情brazzers| 色琪琪一区二区三区亚洲区| 欧美日韩中文精品| 欧美日韩三级视频| 欧美日韩国产小视频在线观看| 日日骚欧美日韩| 国产伦精一区二区三区| 国产毛片精品视频| 国产成人免费高清| 成人免费电影视频| 成人av综合在线| 欧美日韩国产另类一区| 99re热视频精品| 国产成人精品综合在线观看 | 中文字幕日韩精品一区| 精品国产免费人成在线观看| 日韩欧美成人一区| 久久久99精品免费观看| 国产午夜亚洲精品羞羞网站| 欧美激情在线一区二区三区| 亚洲视频在线一区二区| 亚洲成人在线免费| 午夜精品福利一区二区三区av| 亚洲电影在线免费观看| 麻豆国产精品一区二区三区| 国产成人夜色高潮福利影视| www.色精品| 欧美另类z0zxhd电影| 精品国产一区二区三区久久久蜜月 | 成人av资源网站| 在线亚洲免费视频| 日韩亚洲欧美在线观看| 国产亚洲成年网址在线观看| 亚洲美女淫视频| 蜜臀国产一区二区三区在线播放 | 成人的网站免费观看| 91搞黄在线观看| 欧美sm美女调教| 中文字幕日韩av资源站| 日韩影院免费视频| 成人97人人超碰人人99| 成人午夜免费av| 国产视频不卡一区| 玉米视频成人免费看| 国产精品18久久久久久久久 | 欧美一区二区日韩一区二区| 欧美国产一区视频在线观看| 亚洲精品国产精品乱码不99| 久久电影网站中文字幕| 色94色欧美sute亚洲线路二 | 一区二区三区四区不卡在线| 日韩精品视频网| av亚洲产国偷v产偷v自拍| 正在播放一区二区| 亚洲精品成人悠悠色影视| 国产成人日日夜夜| 日韩欧美在线观看一区二区三区| 国产精品入口麻豆原神| 国内精品不卡在线| 另类小说色综合网站| 欧美影院精品一区| 中文字幕亚洲一区二区av在线| 中文字幕第一区第二区| 裸体在线国模精品偷拍| 欧美在线制服丝袜| 亚洲精品水蜜桃| 麻豆久久久久久久| 精品国产123| 免费在线观看一区| 日韩午夜电影在线观看| 偷拍自拍另类欧美| 欧美综合天天夜夜久久| 一区二区三区在线免费播放| 91色|porny| 亚洲欧美偷拍三级| 日本高清不卡视频| 欧美日韩一区高清| 日韩电影在线一区二区| 欧美一区二区三区婷婷月色| 日韩影院精彩在线| 日韩欧美在线观看一区二区三区| 国产日韩影视精品| 色婷婷综合久久久中文字幕| 国产精品美女久久久久久久久 | 99视频一区二区| 欧美国产一区二区| av一区二区久久| 中文字幕一区不卡| 亚洲国产精品一区二区久久 | 在线成人高清不卡| 另类调教123区| 欧美中文字幕久久| 亚洲欧美日韩国产手机在线| 91麻豆免费在线观看| 亚洲狠狠爱一区二区三区| 91精品在线观看入口| 久久国产欧美日韩精品| 中文字幕在线视频一区| 99久久久免费精品国产一区二区| 亚洲欧美日韩在线| av在线不卡电影| 国产一区二区不卡在线| 18涩涩午夜精品.www| 精品视频在线免费看| 久久99深爱久久99精品| 国产精品高潮呻吟久久| 欧美亚洲动漫精品| 激情文学综合插| 国产精品三级视频| 欧美日韩亚洲综合一区二区三区| 精品制服美女久久| 亚洲另类一区二区| 欧美一区二区三区精品| 国产999精品久久久久久绿帽| 亚洲日本乱码在线观看| 日韩视频123| 91官网在线免费观看| 国产成人免费9x9x人网站视频| 一区二区日韩电影| 国产日产欧美一区二区三区| 欧美人狂配大交3d怪物一区| 中文字幕国产一区| 日本精品一级二级| 日本高清不卡在线观看| 国产一区 二区|