<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ayesha Abbas</title>
    <description>The latest articles on DEV Community by Ayesha Abbas (@ayesha_abbas).</description>
    <link>https://dev.to/ayesha_abbas</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4006791%2Fabc39188-1fe4-424b-b8d3-3d24581fb753.jpg</url>
      <title>DEV Community: Ayesha Abbas</title>
      <link>https://dev.to/ayesha_abbas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayesha_abbas"/>
    <language>en</language>
    <item>
      <title>5 Linux Commands Every Cybersecurity Student Must Know</title>
      <dc:creator>Ayesha Abbas</dc:creator>
      <pubDate>Sun, 28 Jun 2026 17:28:59 +0000</pubDate>
      <link>https://dev.to/ayesha_abbas/5-linux-commands-every-cybersecurity-student-must-know-n2c</link>
      <guid>https://dev.to/ayesha_abbas/5-linux-commands-every-cybersecurity-student-must-know-n2c</guid>
      <description>&lt;p&gt;I'm Ayesha Abbas, a CS student, specializing &lt;br&gt;
in cybersecurity and cloud security. I use Linux every &lt;br&gt;
single day for my projects and studies. Here are 5 commands &lt;br&gt;
that I consider absolutely essential for anyone getting &lt;br&gt;
started in cybersecurity.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;netstat | See All Network Connections&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;netstat shows you every active network connection on &lt;br&gt;
your system. As a cybersecurity student this is goldmine &lt;br&gt;
information.&lt;/p&gt;

&lt;p&gt;netstat -tulpn&lt;/p&gt;

&lt;p&gt;This shows all open ports and which process is using them.&lt;br&gt;
If something suspicious is listening on a port you didn't &lt;br&gt;
open, you have a problem.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;grep | Find Anything Inside Files&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;grep searches for patterns inside files. You will use &lt;br&gt;
this hundreds of times every week.&lt;/p&gt;

&lt;p&gt;grep -r "password" /var/log/&lt;/p&gt;

&lt;p&gt;This searches every log file for the word "password". &lt;br&gt;
Useful for log analysis, finding config values, and &lt;br&gt;
security auditing.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;chmod | Control File Permissions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;chmod controls who can read, write, or execute a file. &lt;br&gt;
Wrong permissions = security vulnerability.&lt;/p&gt;

&lt;p&gt;chmod 600 private_key.pem&lt;/p&gt;

&lt;p&gt;This makes your SSH key readable only by you. If your &lt;br&gt;
key has wrong permissions, SSH will refuse to use it.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;nmap | Scan Networks Like a Pro&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;nmap is the most famous network scanning tool in &lt;br&gt;
cybersecurity. It maps open ports and services on &lt;br&gt;
any target.&lt;/p&gt;

&lt;p&gt;nmap -sV 192.168.1.1&lt;/p&gt;

&lt;p&gt;This scans your router and shows every open port and &lt;br&gt;
what service is running on it. Essential for &lt;br&gt;
understanding your network.&lt;/p&gt;

&lt;p&gt;Note: Only scan networks you own or have permission &lt;br&gt;
to scan.&lt;/p&gt;




&lt;ol&gt;
&lt;li&gt;ss | The Modern netstat&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;ss is faster and more detailed than netstat. It shows &lt;br&gt;
socket statistics in real time.&lt;/p&gt;

&lt;p&gt;ss -tulpn&lt;/p&gt;

&lt;p&gt;Use this to quickly see what's running on your machine. &lt;br&gt;
I use this every morning when I boot up my Ubuntu system.&lt;/p&gt;




&lt;p&gt;Final Thoughts&lt;/p&gt;

&lt;p&gt;These 5 commands are just the beginning. Linux has &lt;br&gt;
hundreds of powerful tools for cybersecurity. but &lt;br&gt;
master these first and you will already be ahead of &lt;br&gt;
most beginners.&lt;/p&gt;

&lt;p&gt;I am currently studying networking and Linux full time &lt;br&gt;
as part of my preparation for international research &lt;br&gt;
programs. &lt;/p&gt;

&lt;p&gt;Find my projects on GitHub:&lt;br&gt;
&lt;a href="https://github.com/AyeshaAbbas-engg" rel="noopener noreferrer"&gt;https://github.com/AyeshaAbbas-engg&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Stay secure. Keep learning.&lt;br&gt;
— Ayesha Abbas &lt;/p&gt;

</description>
      <category>linux</category>
      <category>cybersecurity</category>
      <category>ubuntu</category>
      <category>networking</category>
    </item>
  </channel>
</rss>
