Glossary

From SecurityTools
Revision as of 20:52, 13 October 2022 by RagManX (talk | contribs) (Added brief promiscuous mode definition.)
  • Blue Team - Security team members who emphasize defensive security practices such as digital forensics and incident response
  • Buffer Overflow - An attack on an application where more data is sent than the program is prepared to accept, resulting in unexpected application behavior. The concept was possibly first explained in great detail in Phrack issue 49 way back in 1996 by well-known hacker Aleph1 in his article "Smashing the Stack for Fun and Profit"
  • Cross-Site Scripting (XSS) - A web-based attack in which unsanitized inputs to the server results in unexpected behavior by the web client. For a greater discussion of Cross-Site Scripting, see Cybr.com's XSS 2021 Guide
  • Database -
  • Digital Forensics - The method of examining digital media for evidence of malfeasance
  • Fuzzing - The automated testing of security systems through submission of random, unexpected, or invalid data as inputs to a system designed to accept user data. For a more detailed explanation, please read this article from Patrice Godefroid
  • HIBP (Have I Been Pwned?) - A password security website run by Troy Hunt, it's most well known for tracking security leaks like the RockYou password leak from 2012 (see below) as well as offering a web interface to test visitors' passwords to see if they have been leaked online at some point
  • Incident Response - The response to attacks or malware by the security team
  • OSInt (Open-Source Intelligence) - The use of freely available resources to gather information about a target
  • Packet Capture - The gathering of network traffic for analysis by a network protocol analyzer
  • Penetration Testing (PenTesting) - The red team practice of simulating actions of an external attacker but in a more controlled manner. This concept is written up well in the Cisco product & service explanation, covering methods and types of pentesting
  • Promiscuous Mode - A networking configuration in which all traffic seen by a network device is available to the host system, rather than just traffic destined for the host system
  • Purple Team -
  • Red Team - Security team members who emphasize offensive security practices such as penetration testing
  • RockYou - A company which once developed MySpace widgets and other social networks, they are responsible for one of the largest password leaks ever released onto the Internet
  • Structured Query Language (SQL) - The most commonly used means of interacting with a database, SQL is the language used to access, process, or update information in a relational database
  • SQL Injection - A web attack which uses unsanitized user input to push SQL statements through a web server in order to corrupt a database or extract information from a database. A brief write-up of how this can be done is available from w3schools