Posts

Showing posts from 2022

Nmap Scan Your Home Network [Linux]

Image
       To those that are new in Security Information, here is one of most popular tool which you can't left out of your toolbox.       I made this script to introduce you  Acknowledgment  scan, which grap FLAG status  from target host in the first defaults ports (1-1024) which are some of most important ports.      The OSI Protocol was made to have from 0-65535 ports (tcp/udp), you can have the additional in yout amazing SCAN ports with same script just add "-p": eg: nmap --scripts=default -p 1-65535      The "scripts=default means the  nmap is going  to activate the options "-O" and "-A" for OS (Operation System), what ever it is! And  grap  banner fingerprint from deductions or most its acctual OS running at the target and activating Advanced Scan that also makes injection of scripts to probe the data from Firawall / IDS / IPS scope. # I've also brought graphical map of som...

Use SAMBA to mount sharedfolders [Linux]

Image
First thing first!       Here we are going to mount a Samba with password and setup envy; firstly type the following code at your terminal: apt install samba -y           #CONFIG Set up credentials with: smbpasswd  -a  $username     chown -R $username:$username  /home/    #take read-write   After  installed open the smb.conf (**important**) nano /etc/samba/smb.conf  getting into the file, go to the end of the line and set up the SHARED FOLDER.  [sharedname] path = $dirsharedfolder available = yes valid users = $namefolder-owner read only = no browsable = yes public = yes writable = yes #PLACE OF DOUBTS   Use ls -l    in your sharedfolder and check permitions .   TIP: use chown --help to parse all files from user and group owner . chown -R  user:group /dir/sharedfolder         # this will make all files from f...