Sequential (97) Architecture in-out
https://chihaukam.blogspot.com/2023/09/me-look-at-this-articles.html
.
.
while (a machine is running)
{
socket teller machine() //
{
Dynamic m = (how much money);
if (input == m){
teller machine output (m);
}
}
}
There're 2 status of a registers. One is the status of read-only. One is the status of (read and write). .
Me: Hackers change a status of (read and write) into a status (read-only) .
.
1) A teller machine check how much money we input first.
2) And then, the machine output an amout of money which we input.
.
1) Dynamic m = (How much money) is a dynamic memory.
2) Hacker change the Dynamic m into a Static m.
3) As a result, no matter how much money we request, the output is still 100 dollars.
.
Me: Ok.
John : Last but not the least. Take a look. https://chihaukam.blogspot.com/2024/08/have-look.html?m=1 . It explains to you the difference between Dynamic and static memory in details.
Comments
Post a Comment