Without the basics, you can easily waste an entire day trying to figure it out. Save yourself the headache learn the fundamentals. They’ll pay off no matter which tech direction you go.
#Cybersecurity#ITFundamentals#TechCareers#Networking
Cybersecurity is an amazing tech path, my best advice for everyone build foundational IT knowledge.
When your machines suddenly can’t talk to each other or reach the internet, it’s often just a simple configuration issue.
Hello Cyber friends, the application for my next mentorship cohort will start in September. If you’re interested in joining my 2026/27 mentorship cohort, watch this video. You can also share with anyone who is passionate about learning Cybersecurity ✨
Strong password practices are not optional they are ethical obligations under the ISC2 Code of Ethics. Protecting credentials protects society, our organizations, and the trust placed in our profession @_DeejustDee@TemitopeSobulo@ireteeh@techspence@piuskutcher
Practical Guidance on Exposed Passwords:
If passwords are found in public view, the immediate priority is to contain the exposure by having them removed and changed right away. Formal reporting follows through approved ticketing systems for audit trails and tracking.
ISC2 Code of Ethics and the Risks of Leaving Passwords in Public View
Leaving passwords exposed in accessible places such as sticky notes on desks, shared documents, or unsecured digital locations creates serious security vulnerabilities that can compromise entire organizations
ISC2 Code of Ethics and the Risks of Leaving Passwords in Public View
Leaving passwords exposed in accessible places such as sticky notes on desks, shared documents, or unsecured digital locations creates serious security vulnerabilities that can compromise entire organizations
Strong password practices are not optional they are ethical obligations under the ISC2 Code of Ethics. Protecting credentials protects society, our organizations, and the trust placed in our profession @_DeejustDee@TemitopeSobulo@ireteeh@techspence@piuskutcher
ISC2 Code of Ethics and the Risks of Leaving Passwords in Public View
Leaving passwords exposed in accessible places such as sticky notes on desks, shared documents, or unsecured digital locations creates serious security vulnerabilities that can compromise entire organizations
Practical Guidance on Exposed Passwords:
If passwords are found in public view, the immediate priority is to contain the exposure by having them removed and changed right away. Formal reporting follows through approved ticketing systems for audit trails and tracking.
Resources for YARA Rules
i. hxxps[://]github[.]com/yara-rules/rules
ii. hxxps[://]github[.]com/virustotal/yara
iii.hxxps[://]github[.]com/virustotal/yara
iv. hxxps[://]github[.]com/neo23x0/signature-base
#YARA#MalwareAnalysis#CyberSecurity@TemitopeSobulo@_DeejustDee
$b64 = "cG93ZXJzaGVsbA==" // base64 powershell
$ip = "45.33.32.156" ascii
condition:
any of them
}
Main components: rule, meta, strings and condition
Useful Flags: r - Recursive scan of directories, s - Print the strings that matched
YARA / Yet Another Recursive Acronym is a rule based language used by security analysts to identify and classify malicious samples based on patterns. Every YARA command needs two arguments: i. The rule file (.yar) ii. The target (file, directory, or process ID)
YARA / Yet Another Recursive Acronym is a rule based language used by security analysts to identify and classify malicious samples based on patterns. Every YARA command needs two arguments: i. The rule file (.yar) ii. The target (file, directory, or process ID)
Resources for YARA Rules
i. hxxps[://]github[.]com/yara-rules/rules
ii. hxxps[://]github[.]com/virustotal/yara
iii.hxxps[://]github[.]com/virustotal/yara
iv. hxxps[://]github[.]com/neo23x0/signature-base
#YARA#MalwareAnalysis#CyberSecurity@TemitopeSobulo@_DeejustDee
YARA / Yet Another Recursive Acronym is a rule based language used by security analysts to identify and classify malicious samples based on patterns. Every YARA command needs two arguments: i. The rule file (.yar) ii. The target (file, directory, or process ID)
$b64 = "cG93ZXJzaGVsbA==" // base64 powershell
$ip = "45.33.32.156" ascii
condition:
any of them
}
Main components: rule, meta, strings and condition
Useful Flags: r - Recursive scan of directories, s - Print the strings that matched