IT Questions and Answers :)

Thursday, January 25, 2018

What is the non-linear function that made DES cryptography so strong?

What is the non-linear function that made DES cryptography so strong?

  • Trick question, DES is fully linear
  • Swapping 4 bytes (left and right) after every round
  • Expansion & Contraction algorithms
  • 16 rounds of S-Box lookups 
 
What is the non-linear function that made DES cryptography so strong?

EXPLANATION

The genius of Horst Feisel's cipher was in the use S-Boxes for a non-linear lookup function based on the bit values of the ciphertext within each round. Operating on only 1/2 the ciphertext per round, the 48 expanded bits are chopped into 6-bit inputs across the 8 S-Boxes, with each 6-bit input performing a row/table lookup to yield 4 bits of output.  Without this non-linear function, DES would have been linear, and thus very weak.
This design is even more impressive when you consider that the process ran the same forwards and backwards for encrypt/decrypt, and was optimized for hardware.  While met with great suspicion when introduced, the Data Encryption Standard proved worthy of the trust provided it, weathering every attack except Moore's Law and time, which ultimately led to its obsolescence due to brute force attacks.  40 years later, the field of cryptography, and the fabric of the Internet and digital commerce, owes much to the knowledge we gained regarding cryptanalysis and ciphers from this legacy

SOURCE

https://en.wikipedia.org/wiki/Data_Encryption_Standard#The_Feistel_.28F.29_function
Share:

Wednesday, January 24, 2018

Ubuntu releases are usually nicknamed after animals. Which of these was not a release nickname?

Ubuntu releases are usually nicknamed after animals. Which of these was not a release nickname?

  • Avid Aardvark
  • Hoary Hedgehog
  • Jaunty Jackalope
  • Warty Warthog 

 
Ubuntu releases are usually nicknamed after animals. Which of these was not a release nickname?

EXPLANATION

The only one of these ridiculous names that isn't a real thing is Avid Aardvark.

Share:

Tuesday, January 23, 2018

What version of Office are you using when the installation folder is Office14?

What version of Office are you using when the installation folder is Office14?

  • Office 2014
  • Office 2010
  • Office 2013
  • Office 2016 

 
What version of Office are you using when the installation folder is Office14?

EXPLANATION

Microsoft started office at version one and put the version number at the end of the folder. Beginning with Office 95, Microsoft started naming the versions after the years in which they were released, but they kept using the version number for the program folder.

SOURCE

http://www.ryadel.com/en/microsoft-office-default-installation-folders-versions/
Share:

What is the default port used by a POP3 server for communicating with a POP3 client?

What is the default port used by a POP3 server for communicating with a POP3 client?

  • 587
  • 110
  • 109
  • 25 

 
What is the default port used by a POP3 server for communicating with a POP3 client?

EXPLANATION

Port 110 is the default POP3 non-encrypted port.
Port 995 is the default POP3 port for encrypted (SSL) traffic.

SOURCE

http://quiz.techlanda.com/2017/12/what-is-default-port-used-by-pop3.html
Share:

Friday, January 19, 2018

When installing a new domain controller into an exisiting Windows Server 2012 R2 domain using Windows PowerShell, which cmdlet do you use?

When installing a new domain controller into an exisiting Windows Server 2012 R2 domain using Windows PowerShell, which cmdlet do you use?

  • Promote-ADSDomainController
  • Install-ADDomainController
  • Get-ADDSDomainController
  • Install-ADDSDomainController 
 
When installing a new domain controller into an exisiting Windows Server 2012 R2 domain using Windows PowerShell, which cmdlet do you use?

EXPLANATION

When installing a new domain controller into an existing AD domain, use the Install-ADDSDomainController cmdlet and the parameters that meet your needs.

SOURCE

https://technet.microsoft.com/en-us/library/hh974723%28v=wps.630%29.aspx
Share:

Popular Posts